// EMERGENT GAME TECHNOLOGIES PROPRIETARY INFORMATION // // This software is supplied under the terms of a license agreement or // nondisclosure agreement with Emergent Game Technologies and may not // be copied or disclosed except in accordance with the terms of that // agreement. // // Copyright (c) 1996-2007 Emergent Game Technologies. // All Rights Reserved. // // Emergent Game Technologies, Chapel Hill, North Carolina 27517 // http://www.emergent.net #ifndef NIENTITYCOMMANDMANAGER_H #define NIENTITYCOMMANDMANAGER_H #include #include #include "NiEntityCommandInterface.h" #include #include #include "NiBatchCommand.h" class NIENTITY_ENTRY NiEntityCommandManager : public NiRefObject { public: typedef NiTPointerList CommandList; // Error strings. static NiFixedString ERR_UNDO_FRAME_OPEN; static NiFixedString ERR_UNDO_FRAME_OPEN_DESCRIPTION; void ExecuteCommand(NiEntityCommandInterface* pkCommand, NiEntityErrorInterface* pkErrors, bool bAddToUndoStack); void UndoCommands(unsigned int uiNumToUndo, NiEntityErrorInterface* pkErrors); void RedoCommands(unsigned int uiNumToRedo, NiEntityErrorInterface* pkErrors); void BeginUndoFrame(const NiFixedString& kName); void EndUndoFrame(bool bAddToUndoStack); const CommandList& GetUndoStack() const; const CommandList& GetRedoStack() const; // *** begin Emergent internal use only *** static void _SDMInit(); static void _SDMShutdown(); // *** end Emergent internal use only *** private: NiBool IsUndoFrameOpen(); CommandList m_kUndoStack; CommandList m_kRedoStack; NiTPointerList m_kUndoFrameStack; }; NiSmartPointer(NiEntityCommandManager); #include "NiEntityCommandManager.inl" #endif // NIENTITYCOMMANDMANAGER_H