|
int | GetComponentTypeId () const override |
|
void | Init (const CParamNode ¶mNode) override |
|
void | Deinit () override |
|
void | Serialize (ISerializer &serialize) override |
|
void | Deserialize (const CParamNode ¶mNode, IDeserializer &deserialize) override |
|
void | AddPlayer (const std::wstring &id, player_id_t player, u8 difficulty, const std::wstring &behavior) override |
| Add a new AI player into the world, based on the AI script identified by id (corresponding to a subdirectory in simulation/ai/), to control player player . More...
|
|
void | SetRNGSeed (u32 seed) override |
|
void | TryLoadSharedComponent () override |
|
void | RunGamestateInit () override |
|
void | StartComputation () override |
| Call this at the end of a turn, to trigger AI computation which will be ready for the next turn. More...
|
|
void | PushCommands () override |
| Call this at the start of a turn, to push the computed AI commands into the command queue. More...
|
|
virtual void | AddPlayer (const std::wstring &id, player_id_t player, uint8_t difficulty, const std::wstring &)=0 |
| Add a new AI player into the world, based on the AI script identified by id (corresponding to a subdirectory in simulation/ai/), to control player player . More...
|
|
virtual void | SetRNGSeed (uint32_t seed)=0 |
|
virtual void | TryLoadSharedComponent ()=0 |
|
virtual void | RunGamestateInit ()=0 |
|
virtual void | StartComputation ()=0 |
| Call this at the end of a turn, to trigger AI computation which will be ready for the next turn. More...
|
|
virtual void | PushCommands ()=0 |
| Call this at the start of a turn, to push the computed AI commands into the command queue. More...
|
|
virtual | ~IComponent () |
|
virtual void | Init (const CParamNode ¶mNode)=0 |
|
virtual void | Deinit ()=0 |
|
virtual void | HandleMessage (const CMessage &msg, bool global) |
|
CEntityHandle | GetEntityHandle () const |
|
void | SetEntityHandle (CEntityHandle ent) |
|
entity_id_t | GetEntityId () const |
|
CEntityHandle | GetSystemEntity () const |
|
const CSimContext & | GetSimContext () const |
|
void | SetSimContext (const CSimContext &context) |
|
virtual void | Serialize (ISerializer &serialize)=0 |
|
virtual void | Deserialize (const CParamNode ¶mNode, IDeserializer &deserialize)=0 |
|
virtual bool | NewJSObject (const ScriptInterface &scriptInterface, JS::MutableHandleObject out) const |
| Returns false by default, indicating that a scripted wrapper of this IComponent is not supported. More...
|
|
virtual JS::Value | GetJSInstance () const |
|
virtual int | GetComponentTypeId () const =0 |
|
|
static void | ClassInit (CComponentManager &componentManager) |
|
static IComponent * | Allocate (const ScriptInterface &, JS::HandleValue) |
|
static void | Deallocate (IComponent *cmp) |
|
static std::string | GetSchema () |
|
static JS::Value | GetAIs (const ScriptInterface &scriptInterface) |
| Returns a vector of {"id":"value-for-AddPlayer", "name":"Human readable name"} objects, based on all the available AI scripts. More...
|
|
static std::string | GetSchema () |
|
static void | RegisterComponentType (CComponentManager &mgr, EInterfaceId iid, EComponentTypeId cid, AllocFunc alloc, DeallocFunc dealloc, const char *name, const std::string &schema) |
|
static void | RegisterComponentTypeScriptWrapper (CComponentManager &mgr, EInterfaceId iid, EComponentTypeId cid, AllocFunc alloc, DeallocFunc dealloc, const char *name, const std::string &schema) |
|
static u8 | GetSerializationVersion () |
|
Implementation of ICmpAIManager.