| Package | org.wak.action |
| Interface | public interface IActionController |
| Implementors | ActionControllerModern, ActionControllerSCI, ActionControllerScumm |
| Method | Defined by | ||
|---|---|---|---|
|
EndOfAction():void
Called from a PuzzleController when the consecuence of certain
action ended its execution.
| IActionController | ||
|
Initialize():void
Initialize method.
| IActionController | ||
|
OnActionSelected(event:GuiEvent):void
Event received when an action is selected on the gui using a button or
any other way.
| IActionController | ||
|
OnEnterScene(event:SceneEvent):void
Event received when the player enters into the scene
| IActionController | ||
|
OnExitScene(event:SceneEvent):void
Event received when the player exists the scene
| IActionController | ||
|
OnInventoryItemOut(event:GuiEvent):void
Event received when an inventory item is with mouse out.
| IActionController | ||
|
OnInventoryItemOver(event:GuiEvent):void
Event received when an inventory item is with mouse over.
| IActionController | ||
|
OnInventoryItemSelected(event:GuiEvent):void
Event received when an inventory item is selected on the gui .
| IActionController | ||
|
OnSceneItemClick(event:SceneEvent):void
Event received when the player clicks over a SceneItem.
| IActionController | ||
|
OnSceneItemMouseOut(event:SceneEvent):void
Event received when the player moves the mouse out of a SceneItem.
| IActionController | ||
|
OnSceneItemMouseOver(event:SceneEvent):void
Event received when the player moves the mouse over a SceneItem.
| IActionController | ||
|
OnSceneSpaceClick(event:SceneEvent):void
Event received when the player clicks over an empty space on the scene.
| IActionController | ||
| EndOfAction | () | method |
public function EndOfAction():voidCalled from a PuzzleController when the consecuence of certain action ended its execution.
| Initialize | () | method |
public function Initialize():voidInitialize method.
| OnActionSelected | () | method |
public function OnActionSelected(event:GuiEvent):voidEvent received when an action is selected on the gui using a button or any other way.
Parametersevent:GuiEvent — GuiEvent containing the event info.
|
| OnEnterScene | () | method |
public function OnEnterScene(event:SceneEvent):voidEvent received when the player enters into the scene
Parametersevent:SceneEvent — SceneEvent containing the event info.
|
| OnExitScene | () | method |
public function OnExitScene(event:SceneEvent):voidEvent received when the player exists the scene
Parametersevent:SceneEvent — SceneEvent containing the event info.
|
| OnInventoryItemOut | () | method |
public function OnInventoryItemOut(event:GuiEvent):voidEvent received when an inventory item is with mouse out.
Parametersevent:GuiEvent — GuiEvent containing the event info.
|
| OnInventoryItemOver | () | method |
public function OnInventoryItemOver(event:GuiEvent):voidEvent received when an inventory item is with mouse over.
Parametersevent:GuiEvent — GuiEvent containing the event info.
|
| OnInventoryItemSelected | () | method |
public function OnInventoryItemSelected(event:GuiEvent):voidEvent received when an inventory item is selected on the gui .
Parametersevent:GuiEvent — GuiEvent containing the event info.
|
| OnSceneItemClick | () | method |
public function OnSceneItemClick(event:SceneEvent):voidEvent received when the player clicks over a SceneItem.
Parametersevent:SceneEvent — SceneEvent containing the event info.
|
| OnSceneItemMouseOut | () | method |
public function OnSceneItemMouseOut(event:SceneEvent):voidEvent received when the player moves the mouse out of a SceneItem.
Parametersevent:SceneEvent — SceneEvent containing the event info.
|
| OnSceneItemMouseOver | () | method |
public function OnSceneItemMouseOver(event:SceneEvent):voidEvent received when the player moves the mouse over a SceneItem.
Parametersevent:SceneEvent — SceneEvent containing the event info.
|
| OnSceneSpaceClick | () | method |
public function OnSceneSpaceClick(event:SceneEvent):voidEvent received when the player clicks over an empty space on the scene.
Parametersevent:SceneEvent — SceneEvent containing the event info.
|