|
|
| Engine (Context *context) |
| | Construct.
|
| |
|
| ~Engine () override |
| | Destruct. Free all subsystems.
|
| |
|
bool | Initialize (const VariantMap ¶meters) |
| | Initialize engine using parameters given and show the application window. Return true if successful.
|
| |
|
bool | InitializeResourceCache (const VariantMap ¶meters, bool removeOld=true) |
| | Reinitialize resource cache subsystem using parameters given. Implicitly called by Initialize. Return true if successful.
|
| |
|
void | RunFrame () |
| | Run one frame.
|
| |
|
Console * | CreateConsole () |
| | Create the console and return it. May return null if engine configuration does not allow creation (headless mode).
|
| |
|
DebugHud * | CreateDebugHud () |
| | Create the debug hud.
|
| |
| void | SetMinFps (int fps) |
| |
| void | SetMaxFps (int fps) |
| |
| void | SetMaxInactiveFps (int fps) |
| |
| void | SetTimeStepSmoothing (int frames) |
| |
| void | SetPauseMinimized (bool enable) |
| |
| void | SetAutoExit (bool enable) |
| |
|
void | SetNextTimeStep (float seconds) |
| | Override timestep of the next frame. Should be called in between RunFrame() calls.
|
| |
|
void | Exit () |
| | Close the graphics window and set the exit flag. No-op on iOS/tvOS, as an iOS/tvOS application can not legally exit.
|
| |
|
void | DumpProfiler () |
| | Dump profiling information to the log.
|
| |
|
void | DumpResources (bool dumpFileName=false) |
| | Dump information of all resources to the log.
|
| |
|
void | DumpMemory () |
| | Dump information of all memory allocations to the log. Supported in MSVC debug mode only.
|
| |
|
float | GetNextTimeStep () const |
| | Get timestep of the next frame. Updated by ApplyFrameLimit().
|
| |
| int | GetMinFps () const |
| |
| int | GetMaxFps () const |
| |
| int | GetMaxInactiveFps () const |
| |
| int | GetTimeStepSmoothing () const |
| |
| bool | GetPauseMinimized () const |
| |
| bool | GetAutoExit () const |
| |
| bool | IsInitialized () const |
| |
| bool | IsExiting () const |
| |
| bool | IsHeadless () const |
| |
|
void | Update () |
| | Send frame update events.
|
| |
|
void | Render () |
| | Render after frame update.
|
| |
|
void | ApplyFrameLimit () |
| | Get the timestep for the next frame and sleep for frame limiting if necessary.
|
| |
|
| Object (Context *context) |
| | Construct.
|
| |
|
| ~Object () override |
| | Destruct. Clean up self from event sender & receiver structures.
|
| |
| virtual StringHash | GetType () const =0 |
| |
| virtual const String & | GetTypeName () const =0 |
| |
|
virtual const TypeInfo * | GetTypeInfo () const =0 |
| | Return type info.
|
| |
|
virtual void | OnEvent (Object *sender, StringHash eventType, VariantMap &eventData) |
| | Handle event.
|
| |
|
bool | IsInstanceOf (StringHash type) const |
| | Check current instance is type of specified type.
|
| |
|
bool | IsInstanceOf (const TypeInfo *typeInfo) const |
| | Check current instance is type of specified type.
|
| |
|
template<typename T > |
| bool | IsInstanceOf () const |
| | Check current instance is type of specified class.
|
| |
|
template<typename T > |
| T * | Cast () |
| | Cast the object to specified most derived class.
|
| |
|
template<typename T > |
| const T * | Cast () const |
| | Cast the object to specified most derived class.
|
| |
|
void | SubscribeToEvent (StringHash eventType, EventHandler *handler) |
| | Subscribe to an event that can be sent by any sender.
|
| |
|
void | SubscribeToEvent (Object *sender, StringHash eventType, EventHandler *handler) |
| | Subscribe to a specific sender's event.
|
| |
|
void | SubscribeToEvent (StringHash eventType, const std::function< void(StringHash, VariantMap &)> &function, void *userData=nullptr) |
| | Subscribe to an event that can be sent by any sender.
|
| |
|
void | SubscribeToEvent (Object *sender, StringHash eventType, const std::function< void(StringHash, VariantMap &)> &function, void *userData=nullptr) |
| | Subscribe to a specific sender's event.
|
| |
|
void | UnsubscribeFromEvent (StringHash eventType) |
| | Unsubscribe from an event.
|
| |
|
void | UnsubscribeFromEvent (Object *sender, StringHash eventType) |
| | Unsubscribe from a specific sender's event.
|
| |
|
void | UnsubscribeFromEvents (Object *sender) |
| | Unsubscribe from a specific sender's events.
|
| |
|
void | UnsubscribeFromAllEvents () |
| | Unsubscribe from all events.
|
| |
|
void | UnsubscribeFromAllEventsExcept (const PODVector< StringHash > &exceptions, bool onlyUserData) |
| | Unsubscribe from all events except those listed, and optionally only those with userdata (script registered events).
|
| |
|
void | SendEvent (StringHash eventType) |
| | Send event to all subscribers.
|
| |
|
void | SendEvent (StringHash eventType, VariantMap &eventData) |
| | Send event with parameters to all subscribers.
|
| |
|
VariantMap & | GetEventDataMap () const |
| | Return a preallocated map for event data. Used for optimization to avoid constant re-allocation of event data maps.
|
| |
|
template<typename... Args> |
| void | SendEvent (StringHash eventType, Args... args) |
| | Send event with variadic parameter pairs to all subscribers. The parameter pairs is a list of paramID and paramValue separated by comma, one pair after another.
|
| |
|
Context * | GetContext () const |
| | Return execution context.
|
| |
| const Variant & | GetGlobalVar (StringHash key) const |
| |
| const VariantMap & | GetGlobalVars () const |
| |
| void | SetGlobalVar (StringHash key, const Variant &value) |
| |
|
Object * | GetSubsystem (StringHash type) const |
| | Return subsystem by type.
|
| |
|
Object * | GetEventSender () const |
| | Return active event sender. Null outside event handling.
|
| |
|
EventHandler * | GetEventHandler () const |
| | Return active event handler. Null outside event handling.
|
| |
|
bool | HasSubscribedToEvent (StringHash eventType) const |
| | Return whether has subscribed to an event without specific sender.
|
| |
|
bool | HasSubscribedToEvent (Object *sender, StringHash eventType) const |
| | Return whether has subscribed to a specific sender's event.
|
| |
|
bool | HasEventHandlers () const |
| | Return whether has subscribed to any event.
|
| |
|
template<class T > |
| T * | GetSubsystem () const |
| | Template version of returning a subsystem.
|
| |
| const String & | GetCategory () const |
| |
|
void | SetBlockEvents (bool block) |
| | Block object from sending and receiving events.
|
| |
|
bool | GetBlockEvents () const |
| | Return sending and receiving events blocking status.
|
| |
|
| RefCounted () |
| | Construct. Allocate the reference count structure and set an initial self weak reference.
|
| |
|
virtual | ~RefCounted () |
| | Destruct. Mark as expired and also delete the reference count structure if no outside weak references exist.
|
| |
|
| RefCounted (const RefCounted &rhs)=delete |
| | Prevent copy construction.
|
| |
|
RefCounted & | operator= (const RefCounted &rhs)=delete |
| | Prevent assignment.
|
| |
| void | AddRef () |
| |
| void | ReleaseRef () |
| |
| int | Refs () const |
| |
| int | WeakRefs () const |
| |
|
RefCount * | RefCountPtr () |
| | Return pointer to the reference count structure.
|
| |
Urho3D engine. Creates the other subsystems.