mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
while it still remains a good idea to port as many NULL compares and assignments over to nullPtr as feasable, we do still need to sort out how to better support scripted empty, false, and zero assigns for things like objectIDs. this means we'll need to both fully convert the backend of the parser to support that kind of thing, but also alter most if not all exisiting NULLs. up to and including things like SAFE_DELETE. while that's certainly feasable, given there's aproximatel 400 nullptr assigns/checks prior to this commit, and roughly 1800 of the prior, if it terminates in a script call and not an aip one direct, we'll be dialing that back until such time as fork fully fopcused on converting and resolving any lingering mismatches is completed.
204 lines
6.9 KiB
C++
204 lines
6.9 KiB
C++
//-----------------------------------------------------------------------------
|
|
// Copyright (c) 2012 GarageGames, LLC
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to
|
|
// deal in the Software without restriction, including without limitation the
|
|
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
// sell copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
// IN THE SOFTWARE.
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef _GUI_INSPECTOR_H_
|
|
#define _GUI_INSPECTOR_H_
|
|
|
|
#ifndef _GUISTACKCTRL_H_
|
|
#include "gui/containers/guiStackCtrl.h"
|
|
#endif
|
|
|
|
|
|
class GuiInspectorGroup;
|
|
class GuiInspectorField;
|
|
class GuiInspectorDatablockField;
|
|
|
|
|
|
/// A control that allows to edit the properties of one or more SimObjects.
|
|
class GuiInspector : public GuiStackControl
|
|
{
|
|
typedef GuiStackControl Parent;
|
|
|
|
public:
|
|
|
|
GuiInspector();
|
|
virtual ~GuiInspector();
|
|
|
|
DECLARE_CONOBJECT(GuiInspector);
|
|
DECLARE_CATEGORY( "Gui Editor" );
|
|
DECLARE_DESCRIPTION( "A control that allows to edit the properties of one or more SimObjects." );
|
|
|
|
// Console Object
|
|
static void initPersistFields();
|
|
|
|
// SimObject
|
|
void onRemove() override;
|
|
void onDeleteNotify( SimObject *object ) override;
|
|
|
|
// GuiControl
|
|
void parentResized( const RectI &oldParentRect, const RectI &newParentRect ) override;
|
|
bool resize( const Point2I &newPosition, const Point2I &newExtent ) override;
|
|
GuiControl* findHitControl( const Point2I &pt, S32 initialLayer ) override;
|
|
void getCursor( GuiCursor *&cursor, bool &showCursor, const GuiEvent &lastGuiEvent ) override;
|
|
void onMouseMove( const GuiEvent &event ) override;
|
|
void onMouseDown( const GuiEvent &event ) override;
|
|
void onMouseUp( const GuiEvent &event ) override;
|
|
void onMouseDragged( const GuiEvent &event ) override;
|
|
|
|
// GuiInspector
|
|
|
|
/// Return true if "object" is in the inspection set of this inspector.
|
|
bool isInspectingObject( SimObject* object );
|
|
|
|
/// Set the currently inspected object.
|
|
virtual void inspectObject( SimObject *object );
|
|
|
|
/// Add another object to the set of currently inspected objects.
|
|
virtual void addInspectObject( SimObject* object, bool autoSync = true );
|
|
|
|
/// Remove the given object from the set of inspected objects.
|
|
virtual void removeInspectObject( SimObject* object );
|
|
|
|
/// Remove all objects from the inspection set.
|
|
virtual void clearInspectObjects();
|
|
|
|
/// Get the currently inspected object
|
|
SimObject* getInspectObject(U32 index = 0)
|
|
{
|
|
if (!mTargets.empty())
|
|
return mTargets[index];
|
|
else
|
|
return NULL;
|
|
}
|
|
|
|
S32 getComponentGroupTargetId() { return mComponentGroupTargetId; }
|
|
void setComponentGroupTargetId(S32 compId) { mComponentGroupTargetId = compId; }
|
|
|
|
/// Return the number of objects being inspected by this GuiInspector.
|
|
U32 getNumInspectObjects() const { return mTargets.size(); }
|
|
|
|
/// Call inspectPreApply on all inspected objects.
|
|
void sendInspectPreApply();
|
|
|
|
/// Call inspectPostApply on all inspected objects.
|
|
void sendInspectPostApply();
|
|
|
|
/// Set the currently inspected object name
|
|
/// @note Only valid in single-object mode.
|
|
void setName( StringTableEntry newName );
|
|
|
|
void addInspectorGroup(GuiInspectorGroup* group)
|
|
{
|
|
mGroups.push_back(group);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Inserts a group into group list at a specific position
|
|
/// </summary>
|
|
/// <param name="insertIndex"></param>
|
|
/// <param name="group"></param>
|
|
void insertInspectorGroup(U32 insertIndex, GuiInspectorGroup* group)
|
|
{
|
|
mGroups.insert(insertIndex, group);
|
|
}
|
|
|
|
/// Deletes all GuiInspectorGroups
|
|
void clearGroups();
|
|
|
|
/// Returns true if the named group exists
|
|
/// Helper for inspectObject
|
|
GuiInspectorGroup* findExistentGroup( StringTableEntry groupName );
|
|
|
|
/// <summary>
|
|
/// Looks through the group list by name to find it's index
|
|
/// </summary>
|
|
/// <param name="groupName"></param>
|
|
/// <returns>Returns the index position of the group in the group list as S32. -1 if groupName not found.</returns>
|
|
S32 findExistentGroupIndex(StringTableEntry groupName);
|
|
|
|
/// Should there be a GuiInspectorField associated with this fieldName,
|
|
/// update it to reflect actual/current value of that field in the inspected object.
|
|
/// Added to support UndoActions
|
|
void updateFieldValue( StringTableEntry fieldName, const char* arrayIdx );
|
|
|
|
/// Divider position is interpreted as an offset
|
|
/// from the right edge of the field control.
|
|
/// Divider margin is an offset on both left and right
|
|
/// sides of the divider in which it can be selected
|
|
/// with the mouse.
|
|
void getDivider( S32 &pos, S32 &margin );
|
|
|
|
void updateDivider();
|
|
|
|
bool collideDivider( const Point2I &localPnt );
|
|
|
|
void setHighlightField( GuiInspectorField *field );
|
|
|
|
// If returns true that group will not be inspected.
|
|
bool isGroupFiltered( const char *groupName ) const;
|
|
|
|
// Returns true only if the group name follows a minus symbol in the filters.
|
|
bool isGroupExplicitlyFiltered( const char *groupName ) const;
|
|
|
|
void setObjectField( const char *fieldName, const char *data );
|
|
|
|
static GuiInspector* findByObject( SimObject *obj );
|
|
|
|
void refresh();
|
|
|
|
S32 createInspectorGroup(StringTableEntry groupName, S32 index);
|
|
|
|
void removeInspectorGroup(StringTableEntry groupName);
|
|
|
|
void setForcedArrayIndex(S32 arrayIndex);
|
|
|
|
StringTableEntry getSearchText() { return mSearchText; }
|
|
|
|
void setSearchText(StringTableEntry searchText);
|
|
Vector<GuiInspectorGroup*> getGroups() { return mGroups; };
|
|
DECLARE_CALLBACK(void, onPreInspectObject, (SimObject* object) );
|
|
DECLARE_CALLBACK(void, onPostInspectObject, (SimObject* object) );
|
|
protected:
|
|
|
|
typedef Vector< SimObjectPtr< SimObject > > TargetVector;
|
|
|
|
Vector<GuiInspectorGroup*> mGroups;
|
|
|
|
/// Objects being inspected by this GuiInspector.
|
|
TargetVector mTargets;
|
|
|
|
S32 mComponentGroupTargetId;
|
|
|
|
F32 mDividerPos;
|
|
S32 mDividerMargin;
|
|
bool mOverDivider;
|
|
bool mMovingDivider;
|
|
SimObjectPtr<GuiInspectorField> mHLField;
|
|
String mGroupFilters;
|
|
bool mShowCustomFields;
|
|
S32 mForcedArrayIndex;
|
|
|
|
StringTableEntry mSearchText;
|
|
};
|
|
|
|
#endif
|