GameObj

From Legends of Aria Admin and Modding Wiki
Jump to: navigation, search

Game Object (GameObj) is a Dynamic object within the game that can occupy a position of the world, including a Container. Game Objects are the most common of all Objects and can have Variables and/or Modules attached to them.

A potion, a monster, a door, and a sword are all examples of GameObjs.

Basic Gameobject Data and Functions

Official Docs and GameObj engine API: [Game Object Functions]
This list is for overview only and it is reduced to the most basic engine functions.
There are many extensions to objects done by script, but these are not listed here.
For full function documentation please refer to the official documentation.
This list here is just to give you a birds eye perspective on gameobjects most basic data and the according getter/setter functions, not more.

Basic Data

  • Id:The unique Id of a GameObject, Ids are unique on a per cluster basis.
    • Getting the Id of a gameObject: mId = mObj.Id
    • Setter: Gameobject Ids cannot be set. They are created and assigned by the engine on object creation.
    • Referencing a gameobject from a known Id(=number): mGameObj = GameObj(mId)
  • Client Id: The type of gameobject, it defines the visual look, like Human Female Model, A Rock, a House, whatever.
    • Getter: mClientId = mObj:GetIconId() Returns the Client Id which also is the Id in the use of certain images, thats why "IconId".
    • Setter: mObj:SetAppearanceFromTemplate(mTemplateName) Sets the Client Id and appearance of the object to the Client Id set in the referenced template. Its a bit of an indirect way of setting it, instead of directly using the Client Id, but thats how it works right now (0.3.5)
  • Name: The name of a gameobject, visible in game.
    • Getter: mName = mObj:GetName()
    • Setter: mObj:SetName("Samogh the Blacksmith")
  • Hue: The hue of an object which mixes with the texture colors. You cannot force an object to be magenta, when its texture color is green.
    • Getter: mHue = mObj:GetHue()
    • Setter: mObj:SetHue("FF0000")

Mobiles only Data ("MobileComponent" in templates)

  • Base Movement Speed: (For mobiles) Guess what? This is how fast the mob can move. ;)
    • Getter: mSpeed = mObj:GetBaseMoveSpeed()
    • Setter: mObj:SetBaseMoveSpeed(3) Run, Forrest, run ....
  • Mobile Type: Needed for proper display of the object outline and cursor
    • Getter: mMobType = mObj:GetMobileType()
    • Setter: mObj:SetMobileType("Friendly") Make that bear a cuddly one (at least visually ...)

Geometry and Location Data

  • Location: Location of the object in the world
    • Getter: mLoc = mObj:GetLoc()
    • Setter: mObj:SetWorldPosition(Loc(0,0,0)) The example positions the object at the world origin.
    • Setter2: mObj:MoveToContainer(mBag, Loc(0,0,0)) Object gets put into container mBag at relative coordinates 0,0,0 inside the container.
    • You can use SetWorldPosition() to move an object out of a container into the world.
  • Rotation: Rotation of the object in its own local coordinate system
    • Getter: mRot = mObj:GetRotation() Returns a Loc object whith three angles in degrees which describe the object rotation around the axis x,y and z. The order of rotation is: z, y, x (The Unity standard of rotation)
    • Setter: mObj:SetRotation(Loc(45,30,60)) The example sets the rotation of the object to 60° around its Z axis, 45° around its X axis and 30° around its Y axis.
  • Scale: Scaling of the object in its own local coordinate system
    • Getter: mScale = mObj:GetScale() Returns a Loc object whith three scale factors which describe the object scaling in each axis x,y and z.
    • Setter: mObj:SetScale(Loc(2,4,2)) The example sets the scale of the object to 2x at its x and Z axis, and 4x at its X axis. So it is 2 times taller than wide and stretched up high (y-axis). This has been changed. Formerly (pre 0.3.5) Scale was only scalar, now its a vector.

Object Variables ("ObjVarComponent" in templates)

  • Object Variables: A gameobject can have Object Variables, additional data we can assign, query, change and delete from script.
    • Getter: mValue = mObj:GetObjVar("MyVariable")
    • Getter2: mBool = mObj:HasObjVar("MyVariable") Returns a boolean if the ObjVar exists on the object.
    • Getter3: mObjVarTable = mObj:GetAllObjVars() Returns a Dictionary with ObjVar names as keys and values as values
    • Setter: mObj:SetObjVar("MyVariable", SomeValue) Type of the ObjVar is the type of the value assigned.
    • Deletion: mObj:DelObjVar("MyVariable")
    • Caveat: SetObjVar is asynchronous, when used from another object and synchronous when used from script attached to the object itself. This means, setting an objvar on another object than the one the script is running on will not be executed immediately !!!

Shared Object Properties ("SharedStateEntry" entries in templates)

  • Shared Object Properties: A gameobject can have Shared Object Properties, additional data we can assign, query, change and delete from script and which is shared with the client. Generally this data is data the clients needs for certain tasks, like displaying the object properly. Which of this data can be used depends on the object type, given by its ClientId and is predefined in the engine.
    • Shared Object Properties can be Numbers, Strings, Booleans (Not sure about Integers and other non-Lua types here right now ~Y.)
    • Getter: mValue = mObj:GetSharedObjectProperty("NoInteract")This would return the Interaction flag for the object, a boolean in this case.
    • Getter2: mSharedPropTable = mObj:GetAllSharedObjectProperties() Returns a Dictionary with Shared Object Property names as keys and values as values
    • Setter: mObj:SetSharedObjectProperty("Weight", -1) Object cannot be lifted anymore and is "glued to the ground".
    • Deletion: ???
    • Caveat: SetSharedObjectProperty are also asynchronous, so when used from another object the same issue as described for ObjVars above is given.

Modules ("ScriptEngineComponent" in templates)

  • Module: Modules, Behaviors, Scripts .... A module is one compiled chunk of Lua code running on an object. This means a Module or Behavior can contain other scripts by various means, like the require() or load() functions.
    • Getter: mModule = GetCurrentModule()Returns the name of the current running module the function is called from
    • Getter2: mModuleList = mObj:GetAllModules()Returns an array with the names of all modules currently attached to the object.
    • Setter: mObj:AddModule("MyCoolBehaviorScript")Attaches a a module to the gameObj
    • Deletion: mObj:DelModule("MyCoolBehaviorScript")Removes a module from the object

Tips

  • Obj variables should only contain data you are intending to persist to disk, especially since reading from an ObjVar immediately after setting it will not always return the new value.
  • GameObj can communicate between each other using SendMessage just like Modules.