类 OperationContext

java.lang.Object
com.iohao.game.widget.light.room.operation.OperationContext
所有已实现的接口:
PlayerOperationContext

public class OperationContext extends Object implements PlayerOperationContext
玩家玩法操作上下文

 // 创建玩法操作上下文
 OperationContext operationContext = OperationContext.of(room, operationHandler)
     // 当前操作的玩家
     .setFlowContext(flowContext)
     // 开发者根据游戏业务定制的操作数据
     .setCommand(command);
 // 执行玩法操作
 operationContext.execute();
 
 
从以下版本开始:
21.8
作者:
渔民小镇
另请参阅:
日期:
2022-03-31
  • 方法详细资料

    • execute

      public void execute()
      执行玩家的玩法操作,包括验证与处理。
    • of

      public static OperationContext of(Room room, OperationHandler operationHandler)
      创建 OperationContext 对象
      参数:
      room - 房间
      operationHandler - 玩法操作上下文
      返回:
      OperationContext