Egret应用开发实践(04) 状态机系统
使用有限状态机实现游戏流程控制。
状态机
有限状态机(finite-state machine,缩写:FSM)又称有限状态自动机,简称状态机,是表示有限个状态以及在这些状态之间的转移和动作等行为的数学模型。它是一个有向图,由一组节点和一组相应的转移函数组成。
有限状态机的编程快速简单,易于调试,性能高,与人类思维相似从而便于梳理,灵活且容易修改。
定义状态机
设计一个简单的游戏流程
场景状态
sceneState.ts
export class SceneState { public static MENU_MEDIATOR: string = 'MENU_SCENE_MEDIATOR'; public static GAME_MAIN_MEDIATOR: string = 'GAME_MAIN_SCENE_MEDIATOR'; public static GAME_OVER_MEDIATOR: string = 'GAME_OVER_SCENE_MEDIATOR'; public static OPTION_MEDIATOR: string = 'OPTION_SCENE_MEDIATOR'; public static HELP_MEDIATOR: string = 'HELP_SCENE_MEDIATOR'; }
场景动作
sceneAction.ts
export class SceneAction { public static HOME_ACTION: string = 'HOME_ACTION'; public static GAME_MAIN_ACTION: string = 'GAME_MAIN_ACTION'; public static GAME_OVER_ACTION: string = 'GAME_OVER_ACTION'; public static OPTION_ACTION: string = 'OPTION_ACTION'; public static HELP_ACTION: string = 'HELP_ACTION'; }
状态机定义
sceneFsm.ts
import {SceneState} from './sceneState'; import {SceneAction} from './sceneAction'; export class SceneFsm { public createFsm() { var fsm = { // 开始状态 "@initial": SceneState.MENU_MEDIATOR, "state": [ { // Menu "@name": SceneState.MENU_MEDIATOR, //"@changed": SceneTransition , "transition": [ { "@action": SceneAction.GAME_MAIN_ACTION, "@target": SceneState.GAME_MAIN_MEDIATOR }, { "@action": SceneAction.OPTION_ACTION, "@target": SceneState.OPTION_MEDIATOR }, { "@action": SceneAction.HELP_ACTION, "@target": SceneState.HELP_MEDIATOR } ] }, { // Game "@name": SceneState.GAME_MAIN_MEDIATOR, //"@changed": SceneTransition , "transition": [ { "@action": SceneAction.GAME_OVER_ACTION, "@target": SceneState.GAME_OVER_MEDIATOR }, { "@action": SceneAction.HOME_ACTION, "@target": SceneState.MENU_MEDIATOR } ] }, { // GameOver "@name": SceneState.GAME_OVER_MEDIATOR, //"@changed": SceneTransition , "transition": [ { "@action": SceneAction.HOME_ACTION, "@target": SceneState.MENU_MEDIATOR } ] }, { // Option "@name": SceneState.OPTION_MEDIATOR, //"@changed": SceneTransition , "transition": [ { "@action": SceneAction.HOME_ACTION, "@target": SceneState.MENU_MEDIATOR } ] }, { // Help "@name": SceneState.HELP_MEDIATOR, //"@changed": SceneTransition , "transition": [ { "@action": SceneAction.HOME_ACTION, "@target": SceneState.MENU_MEDIATOR } ] } ] }; return fsm; } }
初始化状态机
PureMVC框架提供了FSM实现。
定义InjectFSMCommand
injectFSMCommand.ts
///<reference path="../../../../../typings/main.d.ts"/> import {SceneFsm} from '../../scheme/sceneFsm'; export class InjectFSMCommand extends puremvc.SimpleCommand { public static NAME: string = 'INJECT_FSM_COMMAND'; constructor() { super(); } public execute(notification: puremvc.INotification): void { var sceneFsm = new SceneFsm(); var fsm = sceneFsm.createFsm(); var injector = new puremvc.statemachine.FSMInjector(fsm); injector.initializeNotifier(this.multitonKey); injector.inject(); } }
DirectorMediator监听StateMachine Notification
directorMediator.ts
///<reference path="../../../../../typings/main.d.ts"/> export class DirectorMediator extends puremvc.Mediator { public static NAME: string = 'DIRECTOR_MEDIATOR'; private _activeSceneMediator: any; constructor() { super(DirectorMediator.NAME); } public listNotificationInterests(): string[] { return [ puremvc.statemachine.StateMachine.CHANGED ]; } public handleNotification(notification: puremvc.INotification): void { switch (notification.getName()) { case puremvc.statemachine.StateMachine.CHANGED: this.changeScene(notification.getBody().name); break; } } public onRegister(): void { this.viewComponent = new egret.Sprite(); this.viewComponent.width = this.facade.container.stage.stageWidth; this.viewComponent.height = this.facade.container.stage.stageHeight; if (this.facade.container) { this.facade.container.addChild(this.viewComponent); } } public onRemove(): void { } public changeScene(mediatorName): void { //alert('changeScene:' + mediatorName); if (this._activeSceneMediator) { this.getViewComponent().removeChildren(); this._activeSceneMediator.destroyScene(); } var sceneMediator = this.facade.retrieveMediator(mediatorName); if (sceneMediator) { this._activeSceneMediator = sceneMediator; sceneMediator.renderScene(this.viewComponent.width, this.viewComponent.height); this.viewComponent.addChild(sceneMediator.getViewComponent()); } } }
SceneMediator发送StateMachine Notification
menuSceneMediator.ts
///<reference path="../../../../../typings/main.d.ts"/> import {MenuScene} from '../scenes/menuScene'; export class MenuSceneMediator extends puremvc.Mediator { public static NAME: string = 'MENU_SCENE_MEDIATOR'; constructor() { super(MenuSceneMediator.NAME); } public listNotificationInterests(): string[] { return []; } public handleNotification(notification: puremvc.INotification): void { } public onRegister(): void { } public onRemove(): void { } public renderScene(width: number, height: number): void { var self = this; self.viewComponent = new MenuScene(width, height); self.viewComponent.onAction = function(action) { self.sendNotification(puremvc.statemachine.StateMachine.ACTION, null, action); } } public destroyScene() { this.viewComponent = null; } }
其他
参考
Guyoung Studio
Official Site: www.guyoung.net
Email: guyoung[at]aliyun.com
相关推荐
嵌入式资讯精选 2020-10-15
benjonc 2020-07-04
setse 2020-07-04
Chaunceywu 2020-06-27
tuniumobile 2020-06-26
llxxyy0 2020-06-21
tobecrazy 2020-06-16
llxxyy0 2020-06-05
benjonc 2020-05-30
luyaoda0 2020-05-26
benjonc 2020-05-05
luyaoda0 2020-02-17
llxxyy0 2020-01-07
Chaunceywu 2019-12-18
tuniumobile 2019-12-18
luyaoda0 2019-12-08
Neumann 2019-12-05
Neumann 2019-12-04