GetControls

From King Arthur's Gold Wiki
Revision as of 19:22, 22 August 2012 by Shadlington (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Returns a reference to the CControls object.

CControls@ getControls()

Example from Entities/Workshops/Scripts/WorkshopTasks.as:

if( cmd == WshpTasks::show_tasks)
{
  CBlob@ caller = getBlobByNetworkId( params.read_u16() );
 
  if (caller !is null)
  {
    int width = this.getProperties().get_u8("menu_width");
    int height = this.getProperties().get_u8("menu_height");
    string title = this.getProperties().get_string("menu_title");
 
    CGridMenu@ menu = CreateGridMenu( getControls().getMouseScreenPos(), this,                                      dimension2di(width, height), title);
    if (menu !is null)
    {
      AddWorkshopTasksButtons( this, caller, menu );
    }
  }
}