com.iohao.game.widget.light.room.operation.SimpleOperationFactory Maven / Gradle / Ivy
The newest version!
/*
* ioGame
* Copyright (C) 2021 - present 渔民小镇 ([email protected]、[email protected]) . All Rights Reserved.
* # iohao.com . 渔民小镇
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*/
package com.iohao.game.widget.light.room.operation;
import lombok.AccessLevel;
import lombok.experimental.FieldDefaults;
import org.jctools.maps.NonBlockingHashMap;
import java.util.Map;
import java.util.Optional;
/**
* 玩法操作工厂(享元)实现类(内置实现)
*
* @author 渔民小镇
* @date 2022-03-31
* @since 21.8
*/
@FieldDefaults(level = AccessLevel.PRIVATE)
final class SimpleOperationFactory implements OperationFactory {
/**
* 操作处理
*
* key : 操作码
* value : 操作码对应的业务逻辑处理类
*
*/
final Map operationMap = new NonBlockingHashMap<>();
/**
* 玩家可操作的操作处理
*
* key : 操作码
* value : 操作码对应的业务逻辑处理类
*
*/
final Map userOperationMap = new NonBlockingHashMap<>();
public OperationHandler getUserOperationHandler(int operation) {
return this.userOperationMap.get(operation);
}
public OperationHandler getOperationHandler(int operation) {
return this.operationMap.get(operation);
}
public void mapping(int operation, OperationHandler operationHandler) {
this.operationMap.put(operation, operationHandler);
}
public void mappingUser(int operation, OperationHandler operationHandler) {
this.operationMap.put(operation, operationHandler);
this.userOperationMap.put(operation, operationHandler);
}
public Optional optionalOperationHandler(int operation) {
return Optional.ofNullable(this.operationMap.get(operation));
}
SimpleOperationFactory() {
}
}