类 OperationContext
java.lang.Object
com.iohao.game.widget.light.room.operation.OperationContext
- 所有已实现的接口:
PlayerOperationContext
玩家玩法操作上下文
// 创建玩法操作上下文
OperationContext operationContext = OperationContext.of(room, operationHandler)
// 当前操作的玩家
.setFlowContext(flowContext)
// 开发者根据游戏业务定制的操作数据
.setCommand(command);
// 执行玩法操作
operationContext.execute();
- 从以下版本开始:
- 21.8
- 作者:
- 渔民小镇
- 另请参阅:
- 日期:
- 2022-03-31
-
方法概要
修饰符和类型方法说明void
execute()
执行玩家的玩法操作,包括验证与处理。static OperationContext
of
(Room room, OperationHandler operationHandler) 创建 OperationContext 对象从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
从接口继承的方法 com.iohao.game.widget.light.room.operation.PlayerOperationContext
getCommand, getFlowContext, getPlayer, getRoom, getRoomId, getUserId
-
方法详细资料
-
execute
public void execute()执行玩家的玩法操作,包括验证与处理。 -
of
创建 OperationContext 对象- 参数:
room
- 房间operationHandler
- 玩法操作上下文- 返回:
- OperationContext
-