mirror of
https://github.com/carm-outsource/TimeReward.git
synced 2026-06-04 15:28:16 +08:00
92 lines
4.1 KiB
Java
92 lines
4.1 KiB
Java
package cc.carm.plugin.timereward.conf;
|
|
|
|
import cc.carm.lib.configuration.Configuration;
|
|
import cc.carm.lib.configuration.annotation.ConfigPath;
|
|
import cc.carm.lib.configuration.annotation.HeaderComments;
|
|
import cc.carm.lib.configuration.source.section.ConfigureSection;
|
|
import cc.carm.lib.configuration.value.standard.ConfiguredValue;
|
|
import cc.carm.plugin.timereward.data.RewardContents;
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
import java.util.LinkedHashMap;
|
|
import java.util.Map;
|
|
|
|
@HeaderComments({"奖励相关设定,包含以下设定:",
|
|
" [id] 配置键名即奖励ID,支持英文、数字与下划线。",
|
|
" | 确定后请不要更改,因为该键值用于存储玩家是否领取的数据",
|
|
" | 如果更改,原先领取过该奖励的玩家将会自动再领取一次!",
|
|
" [type] 奖励的类型序号",
|
|
" | “0”代表总计时间奖励,“1”代表每日在线奖励,",
|
|
" | “2”代表每周在线奖励,“3”代表每月在线奖励。",
|
|
" [time] 奖励发放要求的时间(秒)",
|
|
" [loop] 奖励是否按循环时间发放",
|
|
" | 可以填入 true 或 false",
|
|
" | 若启用,则在规定的周期内,每满足指定时间一次则发放一次奖励",
|
|
" | 如 类型为 “每周在线奖励” 时间为 “12小时” ",
|
|
" | 则 代表 代表在这周内每12小时发放一次奖励,下一周时间重新开始算",
|
|
" [name] 奖励的显示名称,可以是任意字符串",
|
|
" | 可以在 commands 中使用 %(name) 来获取该奖励的名称",
|
|
" | 也可以使用变量 %TimeReward_reward_<奖励ID>% 来获取对应奖励的名称",
|
|
" [permission] 领取奖励时后台执行的指令",
|
|
" | 支持PlaceholderAPI变量,指令中可以使用 %(name) 来获取该奖励的名称。",
|
|
" [commands] 该奖励领取权限,可以不设置。",
|
|
" | 若为空则所有人都可以领取;若不为空,则需要拥有该权限的玩家才能领取。",
|
|
" [auto] 该奖励是否自动领取,可以不设置,默认为true。",
|
|
" | 若关闭自动领取,则需要玩家手动输入/tr claim 领取奖励。",
|
|
})
|
|
@ConfigPath(root = true)
|
|
public interface RewardsConfig extends Configuration {
|
|
|
|
ConfiguredValue<RewardGroup> REWARDS = ConfiguredValue.builderOf(RewardGroup.class)
|
|
.fromSection()
|
|
.parse((v, d) -> RewardGroup.parse(d))
|
|
.serialize(RewardGroup::serialize)
|
|
.defaults(RewardGroup.defaults())
|
|
.build();
|
|
|
|
static Map<String, RewardContents> getContents() {
|
|
return REWARDS.getNotNull().getContents();
|
|
}
|
|
|
|
final class RewardGroup {
|
|
final @NotNull Map<String, RewardContents> contents;
|
|
|
|
public RewardGroup(@NotNull Map<String, RewardContents> contents) {
|
|
this.contents = contents;
|
|
}
|
|
|
|
public @NotNull Map<String, RewardContents> getContents() {
|
|
return contents;
|
|
}
|
|
|
|
public Map<String, Object> serialize() {
|
|
Map<String, Object> map = new LinkedHashMap<>();
|
|
for (Map.Entry<String, RewardContents> entry : contents.entrySet()) {
|
|
map.put(entry.getKey(), entry.getValue().serialize());
|
|
}
|
|
return map;
|
|
}
|
|
|
|
public static RewardGroup parse(@NotNull ConfigureSection section) {
|
|
Map<String, RewardContents> rewards = new LinkedHashMap<>();
|
|
for (String rewardID : section.getKeys(false)) {
|
|
ConfigureSection rewardSection = section.getSection(rewardID);
|
|
if (rewardSection == null) continue;
|
|
|
|
RewardContents c = RewardContents.parse(rewardID, rewardSection);
|
|
if (c == null) continue;
|
|
rewards.put(rewardID, c);
|
|
}
|
|
return new RewardGroup(rewards);
|
|
}
|
|
|
|
public static RewardGroup defaults() {
|
|
Map<String, RewardContents> rewards = new LinkedHashMap<>();
|
|
rewards.put("example", RewardContents.defaults("example"));
|
|
return new RewardGroup(rewards);
|
|
}
|
|
|
|
}
|
|
|
|
}
|