mirror of
https://github.com/carm-outsource/TimeReward.git
synced 2026-06-05 00:25:15 +08:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1078c7e03d | |||
| 9a85f84119 | |||
| dd80c5c9f7 | |||
| e1f4172a7f |
@@ -44,7 +44,7 @@
|
|||||||
|
|
||||||
```text
|
```text
|
||||||
# claim [奖励ID]
|
# claim [奖励ID]
|
||||||
@ 玩家指令
|
@ 玩家指令 (TimeReward.claim)
|
||||||
- 为自己手动领取对应奖励。
|
- 为自己手动领取对应奖励。
|
||||||
- 若不填写奖励ID,则自动领取全部可领取的奖励。
|
- 若不填写奖励ID,则自动领取全部可领取的奖励。
|
||||||
|
|
||||||
@@ -72,8 +72,9 @@
|
|||||||
变量如下:
|
变量如下:
|
||||||
|
|
||||||
```text
|
```text
|
||||||
# %TimeReward_time%
|
# %TimeReward_time_<时间类型>%
|
||||||
- 得到玩家总共的在线时长(秒)。
|
- 得到玩家的在线时长(秒)。
|
||||||
|
- 时间类型可选 TOTAL, DAILY, WEEKLY, MONTHLY 。
|
||||||
|
|
||||||
# %TimeReward_reward_<奖励ID>%
|
# %TimeReward_reward_<奖励ID>%
|
||||||
- 得到某个奖励配置的名称。
|
- 得到某个奖励配置的名称。
|
||||||
@@ -103,6 +104,8 @@
|
|||||||
|
|
||||||
若您觉得本插件做的不错,您可以捐赠支持我,感谢您成为开源项目的支持者!
|
若您觉得本插件做的不错,您可以捐赠支持我,感谢您成为开源项目的支持者!
|
||||||
|
|
||||||
|
万分感谢 [egg_拿]() 赞助本项目的开发与维护!
|
||||||
|
|
||||||
Many thanks to Jetbrains for kindly providing a license for me to work on this and other open-source projects.
|
Many thanks to Jetbrains for kindly providing a license for me to work on this and other open-source projects.
|
||||||
[](https://www.jetbrains.com/?from=https://github.com/CarmJos/UserPrefix)
|
[](https://www.jetbrains.com/?from=https://github.com/CarmJos/UserPrefix)
|
||||||
|
|
||||||
|
|||||||
@@ -11,14 +11,14 @@
|
|||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
|
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
|
||||||
|
|
||||||
<deps.easyplugin.version>1.5.5</deps.easyplugin.version>
|
<deps.easyplugin.version>1.5.8</deps.easyplugin.version>
|
||||||
<deps.easysql.version>0.4.7</deps.easysql.version>
|
<deps.easysql.version>0.4.7</deps.easysql.version>
|
||||||
<deps.mineconfig.version>2.5.1</deps.mineconfig.version>
|
<deps.mineconfig.version>2.8.2</deps.mineconfig.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<groupId>cc.carm.plugin</groupId>
|
<groupId>cc.carm.plugin</groupId>
|
||||||
<artifactId>timereward</artifactId>
|
<artifactId>timereward</artifactId>
|
||||||
<version>2.2.1</version>
|
<version>3.1.0</version>
|
||||||
|
|
||||||
<name>TimeReward</name>
|
<name>TimeReward</name>
|
||||||
<description>在线时长自动领奖插件,通过指令发放奖励,基于EasyPlugin实现。</description>
|
<description>在线时长自动领奖插件,通过指令发放奖励,基于EasyPlugin实现。</description>
|
||||||
@@ -93,6 +93,14 @@
|
|||||||
<optional>true</optional>
|
<optional>true</optional>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>cc.carm.lib</groupId>
|
||||||
|
<artifactId>easyplugin-user</artifactId>
|
||||||
|
<version>${deps.easyplugin.version}</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
<optional>true</optional>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>cc.carm.lib</groupId>
|
<groupId>cc.carm.lib</groupId>
|
||||||
<artifactId>easyplugin-command</artifactId>
|
<artifactId>easyplugin-command</artifactId>
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import cc.carm.lib.mineconfiguration.bukkit.MineConfiguration;
|
|||||||
import cc.carm.plugin.timereward.command.MainCommand;
|
import cc.carm.plugin.timereward.command.MainCommand;
|
||||||
import cc.carm.plugin.timereward.conf.PluginConfig;
|
import cc.carm.plugin.timereward.conf.PluginConfig;
|
||||||
import cc.carm.plugin.timereward.conf.PluginMessages;
|
import cc.carm.plugin.timereward.conf.PluginMessages;
|
||||||
|
import cc.carm.plugin.timereward.conf.RewardsConfig;
|
||||||
import cc.carm.plugin.timereward.hooker.PAPIExpansion;
|
import cc.carm.plugin.timereward.hooker.PAPIExpansion;
|
||||||
import cc.carm.plugin.timereward.listener.UserListener;
|
import cc.carm.plugin.timereward.listener.UserListener;
|
||||||
import cc.carm.plugin.timereward.manager.RewardManager;
|
import cc.carm.plugin.timereward.manager.RewardManager;
|
||||||
@@ -15,12 +16,14 @@ import cc.carm.plugin.timereward.manager.UserManager;
|
|||||||
import cc.carm.plugin.timereward.storage.database.MySQLStorage;
|
import cc.carm.plugin.timereward.storage.database.MySQLStorage;
|
||||||
import org.bstats.bukkit.Metrics;
|
import org.bstats.bukkit.Metrics;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.entity.Entity;
|
||||||
|
|
||||||
public class Main extends EasyPlugin {
|
public class Main extends EasyPlugin {
|
||||||
private static Main instance;
|
private static Main instance;
|
||||||
|
|
||||||
protected ConfigurationProvider<?> configProvider;
|
protected ConfigurationProvider<?> configProvider;
|
||||||
protected ConfigurationProvider<?> messageProvider;
|
protected ConfigurationProvider<?> messageProvider;
|
||||||
|
protected ConfigurationProvider<?> rewardProvider;
|
||||||
|
|
||||||
protected MySQLStorage storage;
|
protected MySQLStorage storage;
|
||||||
protected UserManager userManager;
|
protected UserManager userManager;
|
||||||
@@ -38,6 +41,9 @@ public class Main extends EasyPlugin {
|
|||||||
|
|
||||||
this.messageProvider = MineConfiguration.from(this, "messages.yml");
|
this.messageProvider = MineConfiguration.from(this, "messages.yml");
|
||||||
this.messageProvider.initialize(PluginMessages.class);
|
this.messageProvider.initialize(PluginMessages.class);
|
||||||
|
|
||||||
|
this.rewardProvider = MineConfiguration.from(this, "rewards.yml");
|
||||||
|
this.rewardProvider.initialize(RewardsConfig.class);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -53,10 +59,10 @@ public class Main extends EasyPlugin {
|
|||||||
}
|
}
|
||||||
|
|
||||||
log("加载用户管理器...");
|
log("加载用户管理器...");
|
||||||
this.userManager = new UserManager();
|
this.userManager = new UserManager(this);
|
||||||
if (Bukkit.getOnlinePlayers().size() > 0) {
|
if (!Bukkit.getOnlinePlayers().isEmpty()) {
|
||||||
log("加载现有用户数据...");
|
log("加载现有用户数据...");
|
||||||
this.userManager.loadAll();
|
this.userManager.loadOnline(Entity::getUniqueId);
|
||||||
}
|
}
|
||||||
|
|
||||||
log("加载奖励管理器...");
|
log("加载奖励管理器...");
|
||||||
@@ -139,4 +145,7 @@ public class Main extends EasyPlugin {
|
|||||||
return messageProvider;
|
return messageProvider;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public ConfigurationProvider<?> getRewardProvider() {
|
||||||
|
return rewardProvider;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -11,6 +11,9 @@ import java.util.List;
|
|||||||
|
|
||||||
public class TimeRewardAPI {
|
public class TimeRewardAPI {
|
||||||
|
|
||||||
|
private TimeRewardAPI() {
|
||||||
|
}
|
||||||
|
|
||||||
public static UserManager getUserManager() {
|
public static UserManager getUserManager() {
|
||||||
return Main.getInstance().userManager;
|
return Main.getInstance().userManager;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,12 +1,11 @@
|
|||||||
package cc.carm.plugin.timereward.command.sub;
|
package cc.carm.plugin.timereward.command.sub;
|
||||||
|
|
||||||
import cc.carm.lib.easyplugin.command.SubCommand;
|
import cc.carm.lib.easyplugin.command.SubCommand;
|
||||||
import cc.carm.plugin.timereward.Main;
|
|
||||||
import cc.carm.plugin.timereward.TimeRewardAPI;
|
import cc.carm.plugin.timereward.TimeRewardAPI;
|
||||||
import cc.carm.plugin.timereward.command.MainCommand;
|
import cc.carm.plugin.timereward.command.MainCommand;
|
||||||
import cc.carm.plugin.timereward.conf.PluginMessages;
|
import cc.carm.plugin.timereward.conf.PluginMessages;
|
||||||
|
import cc.carm.plugin.timereward.data.RewardContents;
|
||||||
import cc.carm.plugin.timereward.manager.RewardManager;
|
import cc.carm.plugin.timereward.manager.RewardManager;
|
||||||
import cc.carm.plugin.timereward.storage.RewardContents;
|
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.plugin.java.JavaPlugin;
|
import org.bukkit.plugin.java.JavaPlugin;
|
||||||
@@ -40,11 +39,8 @@ public class ClaimCommand extends SubCommand<MainCommand> {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
Main.getInstance().getScheduler().run(() -> unclaimedRewards.forEach(
|
// 为玩家发放奖励
|
||||||
// 在同步进程中为玩家发放奖励
|
manager.claimRewards(player, unclaimedRewards, false);
|
||||||
unclaimedReward -> manager.claimReward(player, unclaimedReward, false)
|
|
||||||
));
|
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
RewardContents reward = manager.getReward(rewardID);
|
RewardContents reward = manager.getReward(rewardID);
|
||||||
@@ -57,8 +53,16 @@ public class ClaimCommand extends SubCommand<MainCommand> {
|
|||||||
PluginMessages.NOT_CLAIMABLE.send(sender, reward.getDisplayName());
|
PluginMessages.NOT_CLAIMABLE.send(sender, reward.getDisplayName());
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
Main.getInstance().getScheduler().run(() -> manager.claimReward(player, reward, false));
|
|
||||||
|
// 为玩家发放奖励
|
||||||
|
manager.claimReward(player, reward, false);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean hasPermission(@NotNull CommandSender sender) {
|
||||||
|
return sender.hasPermission("TimeReward.claim");
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ import cc.carm.lib.easyplugin.command.SubCommand;
|
|||||||
import cc.carm.plugin.timereward.TimeRewardAPI;
|
import cc.carm.plugin.timereward.TimeRewardAPI;
|
||||||
import cc.carm.plugin.timereward.command.MainCommand;
|
import cc.carm.plugin.timereward.command.MainCommand;
|
||||||
import cc.carm.plugin.timereward.conf.PluginMessages;
|
import cc.carm.plugin.timereward.conf.PluginMessages;
|
||||||
import cc.carm.plugin.timereward.storage.RewardContents;
|
import cc.carm.plugin.timereward.data.RewardContents;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
import org.bukkit.plugin.java.JavaPlugin;
|
import org.bukkit.plugin.java.JavaPlugin;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
@@ -24,14 +24,15 @@ public class ListCommand extends SubCommand<MainCommand> {
|
|||||||
|
|
||||||
for (RewardContents reward : awards) {
|
for (RewardContents reward : awards) {
|
||||||
if (reward.getPermission() != null) {
|
if (reward.getPermission() != null) {
|
||||||
PluginMessages.LIST.OBJECT_PERM.send(sender,
|
PluginMessages.LIST.OBJECT_PERM.prepare(
|
||||||
reward.getRewardID(), reward.getDisplayName(),
|
reward.getRewardID(), reward.getDisplayName(), reward.getType().name(),
|
||||||
reward.getTime(), reward.getPermission()
|
reward.getTime(), reward.getPermission()
|
||||||
);
|
).to(sender);
|
||||||
} else {
|
} else {
|
||||||
PluginMessages.LIST.OBJECT.send(sender,
|
PluginMessages.LIST.OBJECT_PERM.prepare(
|
||||||
reward.getRewardID(), reward.getDisplayName(), reward.getTime()
|
reward.getRewardID(), reward.getDisplayName(),
|
||||||
);
|
reward.getType().name(), reward.getTime()
|
||||||
|
).to(sender);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
|
|||||||
@@ -24,8 +24,12 @@ public class ReloadCommand extends SubCommand<MainCommand> {
|
|||||||
try {
|
try {
|
||||||
Main.getInstance().getConfigProvider().reload();
|
Main.getInstance().getConfigProvider().reload();
|
||||||
Main.getInstance().getMessageProvider().reload();
|
Main.getInstance().getMessageProvider().reload();
|
||||||
|
Main.getInstance().getRewardProvider().reload();
|
||||||
|
|
||||||
PluginMessages.RELOAD.COMPLETE.send(sender, System.currentTimeMillis() - s1, TimeRewardAPI.getRewardManager().listRewards().size());
|
PluginMessages.RELOAD.COMPLETE.prepare(
|
||||||
|
System.currentTimeMillis() - s1,
|
||||||
|
TimeRewardAPI.getRewardManager().listRewards().size()
|
||||||
|
).to(sender);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
PluginMessages.RELOAD.ERROR.send(sender);
|
PluginMessages.RELOAD.ERROR.send(sender);
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import cc.carm.lib.easyplugin.command.SubCommand;
|
|||||||
import cc.carm.plugin.timereward.TimeRewardAPI;
|
import cc.carm.plugin.timereward.TimeRewardAPI;
|
||||||
import cc.carm.plugin.timereward.command.MainCommand;
|
import cc.carm.plugin.timereward.command.MainCommand;
|
||||||
import cc.carm.plugin.timereward.conf.PluginMessages;
|
import cc.carm.plugin.timereward.conf.PluginMessages;
|
||||||
import cc.carm.plugin.timereward.storage.RewardContents;
|
import cc.carm.plugin.timereward.data.RewardContents;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.plugin.java.JavaPlugin;
|
import org.bukkit.plugin.java.JavaPlugin;
|
||||||
|
|||||||
@@ -5,13 +5,15 @@ import cc.carm.lib.easyplugin.command.SubCommand;
|
|||||||
import cc.carm.plugin.timereward.TimeRewardAPI;
|
import cc.carm.plugin.timereward.TimeRewardAPI;
|
||||||
import cc.carm.plugin.timereward.command.MainCommand;
|
import cc.carm.plugin.timereward.command.MainCommand;
|
||||||
import cc.carm.plugin.timereward.conf.PluginMessages;
|
import cc.carm.plugin.timereward.conf.PluginMessages;
|
||||||
import cc.carm.plugin.timereward.storage.UserData;
|
import cc.carm.plugin.timereward.data.IntervalType;
|
||||||
|
import cc.carm.plugin.timereward.user.UserRewardData;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.plugin.java.JavaPlugin;
|
import org.bukkit.plugin.java.JavaPlugin;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
|
||||||
|
import java.time.format.DateTimeFormatter;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public class UserCommand extends SubCommand<MainCommand> {
|
public class UserCommand extends SubCommand<MainCommand> {
|
||||||
@@ -30,11 +32,21 @@ public class UserCommand extends SubCommand<MainCommand> {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
UserData user = TimeRewardAPI.getUserManager().getData(player);
|
UserRewardData user = TimeRewardAPI.getUserManager().get(player);
|
||||||
PluginMessages.USER_INFO.send(sender,
|
PluginMessages.USER_INFO.prepare(
|
||||||
player.getName(), user.getAllSeconds(),
|
player.getName(),
|
||||||
user.getClaimedRewards().size(), String.join("&8, &f", user.getClaimedRewards())
|
user.getOnlineDuration(IntervalType.DAILY).getSeconds(),
|
||||||
);
|
user.getOnlineDuration(IntervalType.WEEKLY).getSeconds(),
|
||||||
|
user.getOnlineDuration(IntervalType.MONTHLY).getSeconds(),
|
||||||
|
user.getOnlineDuration(IntervalType.TOTAL).getSeconds(),
|
||||||
|
user.getClaimedRewards().size()
|
||||||
|
).to(sender);
|
||||||
|
|
||||||
|
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
|
||||||
|
user.getClaimedRewards().forEach((id, time) -> {
|
||||||
|
PluginMessages.USER_RECEIVED.send(sender, id, time.format(formatter));
|
||||||
|
});
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,8 @@ import cc.carm.lib.configuration.core.ConfigurationRoot;
|
|||||||
import cc.carm.lib.configuration.core.annotation.HeaderComment;
|
import cc.carm.lib.configuration.core.annotation.HeaderComment;
|
||||||
import cc.carm.lib.configuration.core.value.ConfigValue;
|
import cc.carm.lib.configuration.core.value.ConfigValue;
|
||||||
import cc.carm.lib.configuration.core.value.type.ConfiguredValue;
|
import cc.carm.lib.configuration.core.value.type.ConfiguredValue;
|
||||||
import cc.carm.plugin.timereward.storage.RewardContents;
|
|
||||||
|
import java.time.DayOfWeek;
|
||||||
|
|
||||||
public class PluginConfig extends ConfigurationRoot {
|
public class PluginConfig extends ConfigurationRoot {
|
||||||
|
|
||||||
@@ -24,26 +25,12 @@ public class PluginConfig extends ConfigurationRoot {
|
|||||||
})
|
})
|
||||||
public static final ConfigValue<Boolean> CHECK_UPDATE = ConfiguredValue.of(Boolean.class, true);
|
public static final ConfigValue<Boolean> CHECK_UPDATE = ConfiguredValue.of(Boolean.class, true);
|
||||||
|
|
||||||
@HeaderComment({"奖励相关设定,包含以下设定:",
|
@HeaderComment("周起始日,用于判断周度奖励的结算日期。")
|
||||||
" [id] 配置键名即奖励ID,支持英文、数字与下划线。",
|
public static final ConfigValue<DayOfWeek> WEEK_FIRST_DAY = ConfiguredValue.builderOf(DayOfWeek.class)
|
||||||
" | 确定后请不要更改,因为该键值用于存储玩家是否领取的数据",
|
.from(Integer.class).serializeSource(i -> i).parseSource(i -> (Integer) i)
|
||||||
" | 如果更改,原先领取过该奖励的玩家将会自动再领取一次!",
|
.parseValue((v, d) -> DayOfWeek.of(v))
|
||||||
" [name] 奖励的显示名称,可以是任意字符串",
|
.serializeValue(DayOfWeek::getValue)
|
||||||
" | 可以在 commands 中使用 %(name) 来获取该奖励的名称",
|
.defaults(DayOfWeek.MONDAY).build();
|
||||||
" | 也可以使用变量 %TimeReward_reward_<奖励ID>% 来获取对应奖励的名称",
|
|
||||||
" [permission] 领取奖励时后台执行的指令",
|
|
||||||
" | 支持PlaceholderAPI变量,指令中可以使用 %(name) 来获取该奖励的名称。",
|
|
||||||
" [commands] 该奖励领取权限,可以不设置。",
|
|
||||||
" | 若为空则所有人都可以领取;若不为空,则需要拥有该权限的玩家才能领取。",
|
|
||||||
" [auto] 该奖励是否自动领取,可以不设置,默认为true。",
|
|
||||||
" | 若关闭自动领取,则需要玩家手动输入/tr claim 领取奖励。",
|
|
||||||
})
|
|
||||||
public static final ConfigValue<RewardContents.Group> REWARDS = ConfigValue.builder()
|
|
||||||
.asValue(RewardContents.Group.class).fromSection()
|
|
||||||
.parseValue((v, d) -> RewardContents.Group.parse(v))
|
|
||||||
.serializeValue(RewardContents.Group::serialize)
|
|
||||||
.defaults(RewardContents.Group.defaults())
|
|
||||||
.build();
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,6 @@ import cc.carm.lib.mineconfiguration.bukkit.value.ConfiguredMessageList;
|
|||||||
import de.themoep.minedown.MineDown;
|
import de.themoep.minedown.MineDown;
|
||||||
import me.clip.placeholderapi.PlaceholderAPI;
|
import me.clip.placeholderapi.PlaceholderAPI;
|
||||||
import net.md_5.bungee.api.chat.BaseComponent;
|
import net.md_5.bungee.api.chat.BaseComponent;
|
||||||
import net.md_5.bungee.api.chat.TextComponent;
|
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
import org.bukkit.command.ConsoleCommandSender;
|
import org.bukkit.command.ConsoleCommandSender;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
@@ -29,7 +28,7 @@ public class PluginMessages extends ConfigurationRoot {
|
|||||||
return ConfiguredMessageList.create(getParser())
|
return ConfiguredMessageList.create(getParser())
|
||||||
.whenSend((sender, message) -> {
|
.whenSend((sender, message) -> {
|
||||||
if (sender instanceof ConsoleCommandSender) {
|
if (sender instanceof ConsoleCommandSender) {
|
||||||
message.forEach(m -> sender.sendMessage(TextComponent.toLegacyText(m)));
|
message.forEach(m -> sender.sendMessage(BaseComponent.toLegacyText(m)));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Player player = (Player) sender;
|
Player player = (Player) sender;
|
||||||
@@ -91,15 +90,20 @@ public class PluginMessages extends ConfigurationRoot {
|
|||||||
).build();
|
).build();
|
||||||
|
|
||||||
public static final ConfiguredMessageList<BaseComponent[]> USER_INFO = list().defaults(
|
public static final ConfiguredMessageList<BaseComponent[]> USER_INFO = list().defaults(
|
||||||
"&f玩家 &6%(player) &f已在线&e%(time)&f秒,共领取了 &e%(amount)&f 次奖励。",
|
"&f玩家 &6%(player) &f的在线时间数据:",
|
||||||
"&7已领取的奖励列表如下:&r%(rewards) &7。"
|
"&f 本日在线 &e%(daily)&f秒,本周在线 &e%(weekly)&f秒,",
|
||||||
).params("player", "time", "amount", "rewards").build();
|
"&f 本月在线 &e%(monthly)&f秒,累积在线 &e%(total)&f秒。",
|
||||||
|
"&7已领取了 &f%(amount) &7种奖励,如下所示:"
|
||||||
|
).params("player", "daily", "weekly", "monthly", "total", "amount").build();
|
||||||
|
|
||||||
|
public static final ConfiguredMessageList<BaseComponent[]> USER_RECEIVED = list().defaults(
|
||||||
|
"&7- &e%(reward) &7于 &f%(time) &7领取"
|
||||||
|
).params("reward", "time").build();
|
||||||
|
|
||||||
public static final ConfiguredMessageList<BaseComponent[]> COMMAND_LIST = list().defaults(
|
public static final ConfiguredMessageList<BaseComponent[]> COMMAND_LIST = list().defaults(
|
||||||
"&f正在执行奖励 %(award) 的指令列表..."
|
"&f正在执行奖励 %(award) 的指令列表..."
|
||||||
).params("award").build();
|
).params("award").build();
|
||||||
|
|
||||||
|
|
||||||
public static class LIST extends ConfigurationRoot {
|
public static class LIST extends ConfigurationRoot {
|
||||||
|
|
||||||
public static final ConfiguredMessageList<BaseComponent[]> HEADER = list().defaults(
|
public static final ConfiguredMessageList<BaseComponent[]> HEADER = list().defaults(
|
||||||
@@ -109,15 +113,17 @@ public class PluginMessages extends ConfigurationRoot {
|
|||||||
public static final ConfiguredMessageList<BaseComponent[]> OBJECT = list().defaults(
|
public static final ConfiguredMessageList<BaseComponent[]> OBJECT = list().defaults(
|
||||||
"&8# &f%(id)",
|
"&8# &f%(id)",
|
||||||
"&8- &7奖励名称 &f%(name)",
|
"&8- &7奖励名称 &f%(name)",
|
||||||
|
"&8- &7奖励类型 &f%(type)",
|
||||||
"&8- &7领取时间 &f&e%(time)&f秒"
|
"&8- &7领取时间 &f&e%(time)&f秒"
|
||||||
).params("id", "name", "time").build();
|
).params("id", "name", "type", "time").build();
|
||||||
|
|
||||||
public static final ConfiguredMessageList<BaseComponent[]> OBJECT_PERM = list().defaults(
|
public static final ConfiguredMessageList<BaseComponent[]> OBJECT_PERM = list().defaults(
|
||||||
"&8# &f%(id)",
|
"&8# &f%(id)",
|
||||||
"&8- &7奖励名称 &f%(name)",
|
"&8- &7奖励名称 &f%(name)",
|
||||||
|
"&8- &7奖励类型 &f%(type)",
|
||||||
"&8- &7领取时间 &f&e%(time)&f秒",
|
"&8- &7领取时间 &f&e%(time)&f秒",
|
||||||
"&8- &7需要权限 &f%(permission)"
|
"&8- &7需要权限 &f%(permission)"
|
||||||
).params("id", "name", "time", "permission").build();
|
).params("id", "name", "type", "time", "permission").build();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,93 @@
|
|||||||
|
package cc.carm.plugin.timereward.conf;
|
||||||
|
|
||||||
|
import cc.carm.lib.configuration.core.ConfigurationRoot;
|
||||||
|
import cc.carm.lib.configuration.core.annotation.HeaderComment;
|
||||||
|
import cc.carm.lib.configuration.core.source.ConfigurationWrapper;
|
||||||
|
import cc.carm.lib.configuration.core.value.ConfigValue;
|
||||||
|
import cc.carm.plugin.timereward.data.RewardContents;
|
||||||
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
|
||||||
|
import java.util.LinkedHashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
@HeaderComment({"奖励相关设定,包含以下设定:",
|
||||||
|
" [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 领取奖励。",
|
||||||
|
})
|
||||||
|
public class RewardsConfig extends ConfigurationRoot {
|
||||||
|
|
||||||
|
public static final ConfigValue<RewardsConfig.RewardGroup> REWARDS = create();
|
||||||
|
|
||||||
|
public static Map<String, RewardContents> getContents() {
|
||||||
|
return REWARDS.getNotNull().getContents();
|
||||||
|
}
|
||||||
|
|
||||||
|
private static ConfigValue<RewardGroup> create() {
|
||||||
|
return ConfigValue.builder()
|
||||||
|
.asValue(RewardGroup.class).fromSection()
|
||||||
|
.parseValue((v, d) -> RewardGroup.parse(v))
|
||||||
|
.serializeValue(RewardGroup::serialize)
|
||||||
|
.defaults(RewardGroup.defaults())
|
||||||
|
.build();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static 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 ConfigurationWrapper<?> section) {
|
||||||
|
Map<String, RewardContents> rewards = new LinkedHashMap<>();
|
||||||
|
for (String rewardID : section.getKeys(false)) {
|
||||||
|
ConfigurationWrapper<?> rewardSection = section.getConfigurationSection(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);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,101 @@
|
|||||||
|
package cc.carm.plugin.timereward.data;
|
||||||
|
|
||||||
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
|
||||||
|
import java.time.Duration;
|
||||||
|
import java.time.LocalDateTime;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.function.BiFunction;
|
||||||
|
import java.util.function.Predicate;
|
||||||
|
|
||||||
|
public enum IntervalType {
|
||||||
|
|
||||||
|
TOTAL(
|
||||||
|
0, time -> false,
|
||||||
|
(timeRecord, join) -> Duration.between(join, LocalDateTime.now()).plus(timeRecord.getTotalTime())
|
||||||
|
),
|
||||||
|
|
||||||
|
DAILY(
|
||||||
|
1, time -> time.isBefore(TimeRecord.getTodayStart()),
|
||||||
|
(timeRecord, join) -> {
|
||||||
|
LocalDateTime now = LocalDateTime.now();
|
||||||
|
if (now.toLocalDate().isEqual(timeRecord.getDate())) {
|
||||||
|
// 和记录还在同一天
|
||||||
|
return Duration.between(join, now).plus(timeRecord.getDailyTime());
|
||||||
|
} else if (now.toLocalDate().isEqual(join.toLocalDate())) {
|
||||||
|
// 加入的时间和现在的时间在同一天
|
||||||
|
return Duration.between(join, now);
|
||||||
|
} else {
|
||||||
|
// 加入的时间和现在的时间不在同一天
|
||||||
|
return Duration.between(TimeRecord.getTodayStart(), now);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
),
|
||||||
|
WEEKLY(
|
||||||
|
2, time -> time.isBefore(TimeRecord.getThisWeekStart()),
|
||||||
|
(timeRecord, join) -> {
|
||||||
|
LocalDateTime now = LocalDateTime.now();
|
||||||
|
if (TimeRecord.isSameWeek(timeRecord.getDate(), now)) {
|
||||||
|
return Duration.between(join, now).plus(timeRecord.getWeeklyTime());
|
||||||
|
} else if (TimeRecord.isSameWeek(join, now)) {
|
||||||
|
return Duration.between(join, now);
|
||||||
|
} else {
|
||||||
|
return Duration.between(TimeRecord.getThisWeekStart(), now);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
),
|
||||||
|
|
||||||
|
MONTHLY(
|
||||||
|
3, time -> time.isBefore(TimeRecord.getThisMonthStart()),
|
||||||
|
(timeRecord, join) -> {
|
||||||
|
LocalDateTime now = LocalDateTime.now();
|
||||||
|
if (TimeRecord.isSameMonth(timeRecord.getDate(), now.toLocalDate())) {
|
||||||
|
return Duration.between(join, now).plus(timeRecord.getMonthlyTime());
|
||||||
|
} else if (TimeRecord.isSameMonth(join.toLocalDate(), now.toLocalDate())) {
|
||||||
|
return Duration.between(join, now);
|
||||||
|
} else {
|
||||||
|
return Duration.between(TimeRecord.getThisMonthStart(), now);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
private final int id;
|
||||||
|
private final @NotNull Predicate<LocalDateTime> periodChangePredicate;
|
||||||
|
private final @NotNull BiFunction<TimeRecord, LocalDateTime, Duration> calculator;
|
||||||
|
|
||||||
|
IntervalType(int id,
|
||||||
|
@NotNull Predicate<LocalDateTime> periodChangePredicate,
|
||||||
|
@NotNull BiFunction<TimeRecord, LocalDateTime, Duration> calculator) {
|
||||||
|
this.id = id;
|
||||||
|
this.periodChangePredicate = periodChangePredicate;
|
||||||
|
this.calculator = calculator;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getID() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public @NotNull BiFunction<TimeRecord, LocalDateTime, Duration> getCalculator() {
|
||||||
|
return calculator;
|
||||||
|
}
|
||||||
|
|
||||||
|
public @NotNull Predicate<LocalDateTime> getPreiodChangePredicate() {
|
||||||
|
return periodChangePredicate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Duration calculate(@NotNull TimeRecord timeRecord, @NotNull LocalDateTime joinTime) {
|
||||||
|
return calculator.apply(timeRecord, joinTime);
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isPeriodChanged(@NotNull LocalDateTime claimedDate) {
|
||||||
|
return periodChangePredicate.test(claimedDate);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static IntervalType parse(String input) {
|
||||||
|
if (input == null) return null;
|
||||||
|
else return Arrays.stream(values())
|
||||||
|
.filter(t -> t.name().equalsIgnoreCase(input) || Integer.toString(t.id).equals(input))
|
||||||
|
.findFirst().orElse(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
+28
-53
@@ -1,4 +1,4 @@
|
|||||||
package cc.carm.plugin.timereward.storage;
|
package cc.carm.plugin.timereward.data;
|
||||||
|
|
||||||
import cc.carm.lib.configuration.core.source.ConfigurationWrapper;
|
import cc.carm.lib.configuration.core.source.ConfigurationWrapper;
|
||||||
import cc.carm.lib.easyplugin.utils.ColorParser;
|
import cc.carm.lib.easyplugin.utils.ColorParser;
|
||||||
@@ -13,29 +13,41 @@ public class RewardContents {
|
|||||||
|
|
||||||
public final @NotNull String id;
|
public final @NotNull String id;
|
||||||
|
|
||||||
|
public final @NotNull IntervalType type;
|
||||||
private final long time;
|
private final long time;
|
||||||
|
private final boolean loop;
|
||||||
|
|
||||||
private final @Nullable String name;
|
private final @Nullable String name;
|
||||||
private final @Nullable String permission;
|
private final @Nullable String permission;
|
||||||
private final @NotNull List<String> commands;
|
private final @NotNull List<String> commands;
|
||||||
|
|
||||||
private final boolean auto;
|
private final boolean auto;
|
||||||
|
|
||||||
|
public RewardContents(@NotNull String id, @NotNull IntervalType type, long time, boolean loop,
|
||||||
public RewardContents(@NotNull String id, long time,
|
|
||||||
@Nullable String name, @Nullable String permission,
|
@Nullable String name, @Nullable String permission,
|
||||||
@NotNull List<String> commands, boolean auto) {
|
@NotNull List<String> commands, boolean auto) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
|
this.type = type;
|
||||||
this.time = time;
|
this.time = time;
|
||||||
|
this.loop = loop;
|
||||||
this.name = name;
|
this.name = name;
|
||||||
this.permission = permission;
|
this.permission = permission;
|
||||||
this.commands = commands;
|
this.commands = commands;
|
||||||
this.auto = auto;
|
this.auto = auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getRewardID() {
|
public @NotNull String getRewardID() {
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public @NotNull IntervalType getType() {
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isLoop() {
|
||||||
|
return loop;
|
||||||
|
}
|
||||||
|
|
||||||
public long getTime() {
|
public long getTime() {
|
||||||
return time;
|
return time;
|
||||||
}
|
}
|
||||||
@@ -64,13 +76,11 @@ public class RewardContents {
|
|||||||
return permission == null || player.hasPermission(permission);
|
return permission == null || player.hasPermission(permission);
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isTimeEnough(long requireSeconds) {
|
|
||||||
return requireSeconds >= getTime();
|
|
||||||
}
|
|
||||||
|
|
||||||
public Map<String, Object> serialize() {
|
public Map<String, Object> serialize() {
|
||||||
Map<String, Object> map = new LinkedHashMap<>();
|
Map<String, Object> map = new LinkedHashMap<>();
|
||||||
map.put("time", getTime());
|
map.put("time", getTime());
|
||||||
|
map.put("type", getType().getID());
|
||||||
|
map.put("loop", isLoop());
|
||||||
if (getName() != null) map.put("name", getName());
|
if (getName() != null) map.put("name", getName());
|
||||||
if (getPermission() != null) map.put("permission", getPermission());
|
if (getPermission() != null) map.put("permission", getPermission());
|
||||||
map.put("commands", getCommands());
|
map.put("commands", getCommands());
|
||||||
@@ -85,18 +95,22 @@ public class RewardContents {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
IntervalType intervalType = IntervalType.parse(Objects.toString(section.get("type")));
|
||||||
|
if (intervalType == null) {
|
||||||
|
Main.severe("奖励 " + id + " 的类型配置错误,请检查配置文件。");
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
return new RewardContents(
|
return new RewardContents(
|
||||||
id, time,
|
id, intervalType, time, section.getBoolean("loop", false),
|
||||||
section.getString("name"),
|
section.getString("name"), section.getString("permission"),
|
||||||
section.getString("permission"),
|
section.getStringList("commands"), section.getBoolean("auto", false)
|
||||||
section.getStringList("commands"),
|
|
||||||
section.getBoolean("auto", false)
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static RewardContents defaults(String id) {
|
public static RewardContents defaults(String id) {
|
||||||
return new RewardContents(
|
return new RewardContents(
|
||||||
id, 7200,
|
id, IntervalType.TOTAL, 7200, false,
|
||||||
"&f[初级奖励] &e总在线时长 2小时", "TimeReward.vip",
|
"&f[初级奖励] &e总在线时长 2小时", "TimeReward.vip",
|
||||||
Collections.singletonList("say &f恭喜 &b%player_name% &f领取了奖励 &r%(name) &f!"),
|
Collections.singletonList("say &f恭喜 &b%player_name% &f领取了奖励 &r%(name) &f!"),
|
||||||
true
|
true
|
||||||
@@ -116,44 +130,5 @@ public class RewardContents {
|
|||||||
return Objects.hash(id);
|
return Objects.hash(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static final class Group {
|
|
||||||
final @NotNull Map<String, RewardContents> contents;
|
|
||||||
|
|
||||||
public Group(@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 Group parse(@NotNull ConfigurationWrapper<?> section) {
|
|
||||||
Map<String, RewardContents> rewards = new LinkedHashMap<>();
|
|
||||||
for (String rewardID : section.getKeys(false)) {
|
|
||||||
ConfigurationWrapper<?> rewardSection = section.getConfigurationSection(rewardID);
|
|
||||||
if (rewardSection == null) continue;
|
|
||||||
|
|
||||||
RewardContents c = RewardContents.parse(rewardID, rewardSection);
|
|
||||||
if (c == null) continue;
|
|
||||||
rewards.put(rewardID, c);
|
|
||||||
}
|
|
||||||
return new Group(rewards);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Group defaults() {
|
|
||||||
Map<String, RewardContents> rewards = new LinkedHashMap<>();
|
|
||||||
rewards.put("example", RewardContents.defaults("example"));
|
|
||||||
return new Group(rewards);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,113 @@
|
|||||||
|
package cc.carm.plugin.timereward.data;
|
||||||
|
|
||||||
|
import cc.carm.plugin.timereward.conf.PluginConfig;
|
||||||
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
|
||||||
|
import java.time.Duration;
|
||||||
|
import java.time.LocalDate;
|
||||||
|
import java.time.LocalDateTime;
|
||||||
|
import java.time.temporal.Temporal;
|
||||||
|
import java.time.temporal.TemporalField;
|
||||||
|
import java.time.temporal.WeekFields;
|
||||||
|
|
||||||
|
public class TimeRecord {
|
||||||
|
|
||||||
|
public static TimeRecord empty() {
|
||||||
|
return new TimeRecord(LocalDate.now(), 0, 0, 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
protected final @NotNull LocalDate date;
|
||||||
|
|
||||||
|
protected final @NotNull Duration daily;
|
||||||
|
protected final @NotNull Duration weekly;
|
||||||
|
protected final @NotNull Duration monthly;
|
||||||
|
|
||||||
|
protected final @NotNull Duration total;
|
||||||
|
|
||||||
|
public TimeRecord(@NotNull LocalDate date, long daily, long weekly, long monthly, long total) {
|
||||||
|
this(date,
|
||||||
|
Duration.ofSeconds(daily), Duration.ofSeconds(weekly),
|
||||||
|
Duration.ofSeconds(monthly), Duration.ofSeconds(total)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
public TimeRecord(@NotNull LocalDate date,
|
||||||
|
@NotNull Duration daily, @NotNull Duration weekly,
|
||||||
|
@NotNull Duration monthly, @NotNull Duration total) {
|
||||||
|
this.date = date;
|
||||||
|
this.daily = daily;
|
||||||
|
this.weekly = weekly;
|
||||||
|
this.monthly = monthly;
|
||||||
|
this.total = total;
|
||||||
|
}
|
||||||
|
|
||||||
|
public @NotNull LocalDate getDate() {
|
||||||
|
return date;
|
||||||
|
}
|
||||||
|
|
||||||
|
public @NotNull Duration getDailyTime() {
|
||||||
|
return daily;
|
||||||
|
}
|
||||||
|
|
||||||
|
public @NotNull Duration getWeeklyTime() {
|
||||||
|
return weekly;
|
||||||
|
}
|
||||||
|
|
||||||
|
public @NotNull Duration getMonthlyTime() {
|
||||||
|
return monthly;
|
||||||
|
}
|
||||||
|
|
||||||
|
public @NotNull Duration getTotalTime() {
|
||||||
|
return total;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isDayUpdated() {
|
||||||
|
return !LocalDate.now().equals(getDate());
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isWeekUpdated() {
|
||||||
|
if (!isDayUpdated()) return false; // Same day always same week
|
||||||
|
return !isSameWeek(LocalDate.now(), getDate());
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isMonthUpdated() {
|
||||||
|
if (!isDayUpdated()) return false; // Same day always same month
|
||||||
|
|
||||||
|
// Predicate current month is after the month of the date
|
||||||
|
return LocalDate.now().getMonth().compareTo(getDate().getMonth()) > 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean isSameWeek(Temporal a, Temporal b) {
|
||||||
|
TemporalField woy = WeekFields.of(PluginConfig.WEEK_FIRST_DAY.getNotNull(), 4).weekOfWeekBasedYear();
|
||||||
|
return a.get(woy) == b.get(woy);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean isSameMonth(LocalDate a, LocalDate b) {
|
||||||
|
return a.getMonth().equals(b.getMonth());
|
||||||
|
}
|
||||||
|
|
||||||
|
public static LocalDateTime getTodayStart() {
|
||||||
|
return LocalDate.now().atTime(0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static LocalDateTime getThisWeekStart() {
|
||||||
|
TemporalField woy = WeekFields.of(PluginConfig.WEEK_FIRST_DAY.getNotNull(), 4).weekOfWeekBasedYear();
|
||||||
|
return LocalDate.now().with(woy, 1).atTime(0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static LocalDateTime getThisMonthStart() {
|
||||||
|
return LocalDate.now().withDayOfMonth(1).atTime(0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "TimeRecord{" +
|
||||||
|
"date=" + date +
|
||||||
|
", daily=" + daily +
|
||||||
|
", weekly=" + weekly +
|
||||||
|
", monthly=" + monthly +
|
||||||
|
", total=" + total +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -3,8 +3,9 @@ package cc.carm.plugin.timereward.hooker;
|
|||||||
import cc.carm.lib.easyplugin.papi.EasyPlaceholder;
|
import cc.carm.lib.easyplugin.papi.EasyPlaceholder;
|
||||||
import cc.carm.lib.easyplugin.papi.handler.PlaceholderHandler;
|
import cc.carm.lib.easyplugin.papi.handler.PlaceholderHandler;
|
||||||
import cc.carm.plugin.timereward.TimeRewardAPI;
|
import cc.carm.plugin.timereward.TimeRewardAPI;
|
||||||
import cc.carm.plugin.timereward.storage.RewardContents;
|
import cc.carm.plugin.timereward.data.IntervalType;
|
||||||
import cc.carm.plugin.timereward.storage.UserData;
|
import cc.carm.plugin.timereward.data.RewardContents;
|
||||||
|
import cc.carm.plugin.timereward.user.UserRewardData;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.plugin.java.JavaPlugin;
|
import org.bukkit.plugin.java.JavaPlugin;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
@@ -18,7 +19,14 @@ public class PAPIExpansion extends EasyPlaceholder {
|
|||||||
public PAPIExpansion(@NotNull JavaPlugin plugin, @NotNull String rootIdentifier) {
|
public PAPIExpansion(@NotNull JavaPlugin plugin, @NotNull String rootIdentifier) {
|
||||||
super(plugin, rootIdentifier);
|
super(plugin, rootIdentifier);
|
||||||
|
|
||||||
handle("time", userHandler(UserData::getAllSeconds));
|
handle("time", userHandler((user, args) -> {
|
||||||
|
if (args.length < 1) return "请填写时间类型";
|
||||||
|
IntervalType type = IntervalType.parse(args[0]);
|
||||||
|
|
||||||
|
if (type == null) return "时间类型不存在";
|
||||||
|
|
||||||
|
return user.getOnlineDuration(type).getSeconds();
|
||||||
|
}), Collections.singletonList("<时间类型>"));
|
||||||
|
|
||||||
handle("reward",
|
handle("reward",
|
||||||
rewardHandler(RewardContents::getDisplayName),
|
rewardHandler(RewardContents::getDisplayName),
|
||||||
@@ -27,7 +35,11 @@ public class PAPIExpansion extends EasyPlaceholder {
|
|||||||
|
|
||||||
handle("claimed", userHandler((user, args) -> {
|
handle("claimed", userHandler((user, args) -> {
|
||||||
if (args.length < 1) return "请填写奖励ID";
|
if (args.length < 1) return "请填写奖励ID";
|
||||||
else return user.isClaimed(args[0]);
|
|
||||||
|
RewardContents reward = TimeRewardAPI.getRewardManager().getReward(args[0]);
|
||||||
|
if (reward == null) return "奖励不存在";
|
||||||
|
|
||||||
|
return user.isClaimed(reward);
|
||||||
}), Collections.singletonList("<奖励ID>"));
|
}), Collections.singletonList("<奖励ID>"));
|
||||||
|
|
||||||
handle("claimable", (offlinePlayer, args) -> {
|
handle("claimable", (offlinePlayer, args) -> {
|
||||||
@@ -43,14 +55,14 @@ public class PAPIExpansion extends EasyPlaceholder {
|
|||||||
handle("version", (player, args) -> getVersion());
|
handle("version", (player, args) -> getVersion());
|
||||||
}
|
}
|
||||||
|
|
||||||
protected <R> PlaceholderHandler userHandler(Function<UserData, R> userFunction) {
|
protected <R> PlaceholderHandler userHandler(Function<UserRewardData, R> userFunction) {
|
||||||
return userHandler((user, args) -> userFunction.apply(user));
|
return userHandler((user, args) -> userFunction.apply(user));
|
||||||
}
|
}
|
||||||
|
|
||||||
protected <R> PlaceholderHandler userHandler(BiFunction<UserData, String[], R> userFunction) {
|
protected <R> PlaceholderHandler userHandler(BiFunction<UserRewardData, String[], R> userFunction) {
|
||||||
return (player, args) -> {
|
return (player, args) -> {
|
||||||
if (player == null || !player.isOnline()) return "加载中...";
|
if (player == null || !player.isOnline()) return "加载中...";
|
||||||
return userFunction.apply(TimeRewardAPI.getUserManager().getData((Player) player), args);
|
return userFunction.apply(TimeRewardAPI.getUserManager().get((Player) player), args);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
package cc.carm.plugin.timereward.listener;
|
package cc.carm.plugin.timereward.listener;
|
||||||
|
|
||||||
import cc.carm.plugin.timereward.Main;
|
|
||||||
import cc.carm.plugin.timereward.TimeRewardAPI;
|
import cc.carm.plugin.timereward.TimeRewardAPI;
|
||||||
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.event.EventHandler;
|
import org.bukkit.event.EventHandler;
|
||||||
import org.bukkit.event.Listener;
|
import org.bukkit.event.Listener;
|
||||||
import org.bukkit.event.player.PlayerJoinEvent;
|
import org.bukkit.event.player.PlayerJoinEvent;
|
||||||
@@ -11,12 +12,17 @@ public class UserListener implements Listener {
|
|||||||
|
|
||||||
@EventHandler
|
@EventHandler
|
||||||
public void onJoin(PlayerJoinEvent event) {
|
public void onJoin(PlayerJoinEvent event) {
|
||||||
Main.getInstance().getScheduler().runAsync(() -> TimeRewardAPI.getUserManager().loadData(event.getPlayer().getUniqueId()));
|
TimeRewardAPI.getUserManager().load(event.getPlayer().getUniqueId(), true).thenAccept(data -> {
|
||||||
|
Player player = Bukkit.getPlayer(data.getUserUUID());
|
||||||
|
if (player == null || !player.isOnline()) {
|
||||||
|
TimeRewardAPI.getUserManager().unload(data.getUserUUID());
|
||||||
|
} // 不在线自动卸载
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@EventHandler
|
@EventHandler
|
||||||
public void onQuit(PlayerQuitEvent event) {
|
public void onQuit(PlayerQuitEvent event) {
|
||||||
Main.getInstance().getScheduler().runAsync(() -> TimeRewardAPI.getUserManager().unloadData(event.getPlayer().getUniqueId()));
|
TimeRewardAPI.getUserManager().unload(event.getPlayer().getUniqueId());
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,9 +3,10 @@ package cc.carm.plugin.timereward.manager;
|
|||||||
import cc.carm.lib.easyplugin.utils.MessageUtils;
|
import cc.carm.lib.easyplugin.utils.MessageUtils;
|
||||||
import cc.carm.plugin.timereward.Main;
|
import cc.carm.plugin.timereward.Main;
|
||||||
import cc.carm.plugin.timereward.TimeRewardAPI;
|
import cc.carm.plugin.timereward.TimeRewardAPI;
|
||||||
import cc.carm.plugin.timereward.conf.PluginConfig;
|
import cc.carm.plugin.timereward.conf.RewardsConfig;
|
||||||
import cc.carm.plugin.timereward.storage.RewardContents;
|
import cc.carm.plugin.timereward.data.IntervalType;
|
||||||
import cc.carm.plugin.timereward.storage.UserData;
|
import cc.carm.plugin.timereward.data.RewardContents;
|
||||||
|
import cc.carm.plugin.timereward.user.UserRewardData;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.scheduler.BukkitRunnable;
|
import org.bukkit.scheduler.BukkitRunnable;
|
||||||
@@ -13,9 +14,10 @@ import org.jetbrains.annotations.NotNull;
|
|||||||
import org.jetbrains.annotations.Nullable;
|
import org.jetbrains.annotations.Nullable;
|
||||||
import org.jetbrains.annotations.Unmodifiable;
|
import org.jetbrains.annotations.Unmodifiable;
|
||||||
|
|
||||||
import java.util.Collections;
|
import java.time.Duration;
|
||||||
import java.util.List;
|
import java.time.LocalDateTime;
|
||||||
import java.util.Map;
|
import java.util.*;
|
||||||
|
import java.util.concurrent.CompletableFuture;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
public class RewardManager {
|
public class RewardManager {
|
||||||
@@ -34,10 +36,8 @@ public class RewardManager {
|
|||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
if (rewards.isEmpty()) continue;
|
if (rewards.isEmpty()) continue;
|
||||||
|
|
||||||
main.getScheduler().run(() -> rewards.forEach(r -> {
|
//为玩家发放奖励
|
||||||
// 在同步进程中为玩家发放奖励
|
claimRewards(player, rewards, true); // 二次检查避免重复发奖
|
||||||
claimReward(player, r, true); // 二次检查避免重复发奖
|
|
||||||
}));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -50,7 +50,7 @@ public class RewardManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
protected Map<String, RewardContents> getRewards() {
|
protected Map<String, RewardContents> getRewards() {
|
||||||
return PluginConfig.REWARDS.getNotNull().getContents();
|
return RewardsConfig.getContents();
|
||||||
}
|
}
|
||||||
|
|
||||||
public @Nullable RewardContents getReward(String rewardID) {
|
public @Nullable RewardContents getReward(String rewardID) {
|
||||||
@@ -58,7 +58,7 @@ public class RewardManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public Map<String, RewardContents> listRewards() {
|
public Map<String, RewardContents> listRewards() {
|
||||||
return Collections.unmodifiableMap(PluginConfig.REWARDS.getNotNull().getContents());
|
return Collections.unmodifiableMap(RewardsConfig.getContents());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Unmodifiable
|
@Unmodifiable
|
||||||
@@ -69,18 +69,62 @@ public class RewardManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public boolean isClaimable(Player player, RewardContents reward) {
|
public boolean isClaimable(Player player, RewardContents reward) {
|
||||||
UserData user = TimeRewardAPI.getUserManager().getData(player);
|
if (!reward.checkPermission(player)) return false; // 满足权限
|
||||||
return !user.isClaimed(reward.getRewardID()) // 未曾领取
|
|
||||||
&& reward.isTimeEnough(user.getAllSeconds()) // 时间足够
|
UserRewardData user = TimeRewardAPI.getUserManager().get(player);
|
||||||
&& reward.checkPermission(player); // 满足权限
|
IntervalType intervalType = reward.getType();
|
||||||
|
LocalDateTime lastClaimed = user.getClaimedDate(reward);
|
||||||
|
|
||||||
|
if (reward.isLoop()) { // 循环奖励
|
||||||
|
if (lastClaimed == null || intervalType.isPeriodChanged(lastClaimed)) {
|
||||||
|
// 无上次领取记录或上次领取的时间不在一个周期内,则直接判断时间是否足够一次循环领取的时间
|
||||||
|
return user.getOnlineDuration(intervalType).getSeconds() > reward.getTime();
|
||||||
|
} else {
|
||||||
|
// 有上次领取记录,且在同一周期内,则直接判断相隔时间是否满足一个周期
|
||||||
|
return Duration.between(lastClaimed, LocalDateTime.now()).getSeconds() > reward.getTime();
|
||||||
|
}
|
||||||
|
} else { // 非循环奖励
|
||||||
|
if (lastClaimed == null || intervalType.isPeriodChanged(lastClaimed)) { // 无上次领取记录,则直接判断时间是否足够领取的时间
|
||||||
|
return user.getOnlineDuration(intervalType).getSeconds() > reward.getTime();
|
||||||
|
} else return false; // 有同一周期内的领取记录,则玩家不得重复领取了
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean claimReward(Player player, RewardContents reward, boolean check) {
|
public CompletableFuture<Boolean> claimReward(Player player, RewardContents reward, boolean check) {
|
||||||
if (check && !isClaimable(player, reward)) return false;
|
return claimRewards(player, Collections.singletonList(reward), check);
|
||||||
|
}
|
||||||
|
|
||||||
TimeRewardAPI.getUserManager().getData(player).addClaimedReward(reward.getRewardID());
|
public CompletableFuture<Boolean> claimRewards(Player player, Collection<RewardContents> rewards, boolean check) {
|
||||||
executeCommand(player, reward);
|
Set<RewardContents> contents = rewards.stream()
|
||||||
return true;
|
.filter(r -> !check || isClaimable(player, r))
|
||||||
|
.collect(Collectors.toSet());
|
||||||
|
|
||||||
|
Map<String, LocalDateTime> map = new LinkedHashMap<>();
|
||||||
|
contents.forEach(reward -> map.put(reward.getRewardID(), LocalDateTime.now()));
|
||||||
|
|
||||||
|
return Main.getInstance().supplyAsync(() -> {
|
||||||
|
try {
|
||||||
|
|
||||||
|
UserRewardData user = TimeRewardAPI.getUserManager().get(player);
|
||||||
|
Main.getStorage().addClaimedData(player.getUniqueId(), map);
|
||||||
|
contents.forEach(user::updateClaimed);
|
||||||
|
|
||||||
|
return true;
|
||||||
|
} catch (Exception ex) {
|
||||||
|
Main.severe("为玩家 " + player.getName() + " 领取奖励时发生错误。");
|
||||||
|
ex.printStackTrace();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}).thenCompose(result -> {
|
||||||
|
if (result) {
|
||||||
|
return Main.getInstance().supplySync(() -> {
|
||||||
|
rewards.forEach(reward -> executeCommand(player, reward));
|
||||||
|
return true;
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
return CompletableFuture.completedFuture(false);
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public void executeCommand(Player player, RewardContents reward) {
|
public void executeCommand(Player player, RewardContents reward) {
|
||||||
@@ -91,8 +135,4 @@ public class RewardManager {
|
|||||||
TimeRewardAPI.executeCommands(player, finalCommands); // 执行命令
|
TimeRewardAPI.executeCommands(player, finalCommands); // 执行命令
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean claimReward(Player player, RewardContents reward) {
|
|
||||||
return claimReward(player, reward, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -1,132 +1,62 @@
|
|||||||
package cc.carm.plugin.timereward.manager;
|
package cc.carm.plugin.timereward.manager;
|
||||||
|
|
||||||
|
import cc.carm.lib.easyplugin.EasyPlugin;
|
||||||
|
import cc.carm.lib.easyplugin.user.UserDataManager;
|
||||||
import cc.carm.plugin.timereward.Main;
|
import cc.carm.plugin.timereward.Main;
|
||||||
import cc.carm.plugin.timereward.util.DataTaskRunner;
|
import cc.carm.plugin.timereward.data.IntervalType;
|
||||||
import cc.carm.plugin.timereward.storage.UserData;
|
import cc.carm.plugin.timereward.data.TimeRecord;
|
||||||
import cc.carm.plugin.timereward.storage.database.MySQLStorage;
|
import cc.carm.plugin.timereward.storage.database.MySQLStorage;
|
||||||
import com.google.common.collect.ImmutableMap;
|
import cc.carm.plugin.timereward.user.LockedRewardData;
|
||||||
import org.bukkit.Bukkit;
|
import cc.carm.plugin.timereward.user.UserRewardData;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
import org.jetbrains.annotations.Nullable;
|
import org.jetbrains.annotations.Nullable;
|
||||||
import org.jetbrains.annotations.Unmodifiable;
|
|
||||||
|
|
||||||
import java.util.HashMap;
|
import java.time.Duration;
|
||||||
import java.util.Map;
|
import java.time.LocalDate;
|
||||||
|
import java.util.LinkedHashMap;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
public class UserManager {
|
public class UserManager extends UserDataManager<UUID, UserRewardData> {
|
||||||
|
|
||||||
private final HashMap<UUID, UserData> userDataMap;
|
public UserManager(@NotNull EasyPlugin plugin) {
|
||||||
|
super(plugin);
|
||||||
public UserManager() {
|
|
||||||
this.userDataMap = new HashMap<>();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@NotNull
|
public @NotNull UserRewardData get(Player player) {
|
||||||
public UserData readData(UUID userUUID) {
|
return get(player.getUniqueId());
|
||||||
try {
|
|
||||||
long start = System.currentTimeMillis();
|
|
||||||
MySQLStorage storage = Main.getStorage();
|
|
||||||
|
|
||||||
UserData data = storage.loadData(userUUID);
|
|
||||||
|
|
||||||
if (data == null) {
|
|
||||||
Main.debugging("当前还不存在玩家 " + userUUID + " 的数据,视作新档。");
|
|
||||||
return new UserData(userUUID);
|
|
||||||
}
|
|
||||||
|
|
||||||
Main.debugging("读取 " + userUUID + " 的用户数据完成, 耗时 " + (System.currentTimeMillis() - start) + "ms。");
|
|
||||||
|
|
||||||
return data;
|
|
||||||
} catch (Exception e) {
|
|
||||||
Main.severe("无法正常读取玩家数据,玩家操作将不会被保存,请检查数据配置!");
|
|
||||||
Main.severe("Could not loadData user's data, please check the data conf!");
|
|
||||||
e.printStackTrace();
|
|
||||||
return new UserData(userUUID);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void saveData(UserData data) {
|
@Override
|
||||||
try {
|
protected @Nullable UserRewardData loadData(@NotNull UUID key) throws Exception {
|
||||||
long start = System.currentTimeMillis();
|
return Main.getStorage().loadData(key);
|
||||||
MySQLStorage storage = Main.getStorage();
|
|
||||||
|
|
||||||
Main.debugging("正在保存 " + data.getUserUUID() + " 的用户数据...");
|
|
||||||
storage.saveClaimedData(data.getUserUUID(), data.getClaimedRewards());
|
|
||||||
storage.savePlayTime(data.getUserUUID(), data.getAllSeconds());
|
|
||||||
Main.debugging("保存 " + data.getUserUUID() + " 的用户数据完成,耗时 " + (System.currentTimeMillis() - start) + "ms。");
|
|
||||||
|
|
||||||
} catch (Exception e) {
|
|
||||||
Main.severe("无法正常保存玩家数据,请检查数据配置!");
|
|
||||||
Main.severe("Could not saveData user's data, please check the data conf!");
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void loadData(UUID userUUID) {
|
@Override
|
||||||
getUserDataMap().put(userUUID, readData(userUUID));
|
public void saveData(@NotNull UserRewardData data) throws Exception {
|
||||||
|
if (data instanceof LockedRewardData) return; // 不保存
|
||||||
|
|
||||||
|
MySQLStorage storage = Main.getStorage();
|
||||||
|
|
||||||
|
// 只需要保存游玩时间数据,领取数据已经实时保存了
|
||||||
|
LocalDate date = LocalDate.now();
|
||||||
|
Duration daily = data.getOnlineDuration(IntervalType.DAILY);
|
||||||
|
Duration weekly = data.getOnlineDuration(IntervalType.WEEKLY);
|
||||||
|
Duration monthly = data.getOnlineDuration(IntervalType.MONTHLY);
|
||||||
|
Duration total = data.getOnlineDuration(IntervalType.TOTAL);
|
||||||
|
TimeRecord newRecord = new TimeRecord(date, daily, weekly, monthly, total);
|
||||||
|
|
||||||
|
storage.savePlayTime(data.getUserUUID(), newRecord);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void unloadData(UUID userUUID) {
|
@Override
|
||||||
unloadData(userUUID, true);
|
public @NotNull UserRewardData emptyUser(@NotNull UUID key) {
|
||||||
|
return new UserRewardData(key, TimeRecord.empty(), new LinkedHashMap<>());
|
||||||
}
|
}
|
||||||
|
|
||||||
public void unloadData(UUID userUUID, boolean save) {
|
@Override
|
||||||
UserData data = getData(userUUID);
|
public @NotNull UserRewardData errorUser(@NotNull UUID key) {
|
||||||
if (data == null) return;
|
return new LockedRewardData(key); // 避免影响数据存储
|
||||||
if (save) saveData(data);
|
|
||||||
getUserDataMap().remove(userUUID);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void loadAll() {
|
|
||||||
for (Player player : Bukkit.getOnlinePlayers()) {
|
|
||||||
if (getUserDataMap().containsKey(player.getUniqueId())) continue;
|
|
||||||
loadData(player.getUniqueId());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void saveAll() {
|
|
||||||
getUserDataMap().values().forEach(this::saveData);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void unloadAll(boolean save) {
|
|
||||||
if (save) saveAll();
|
|
||||||
getUserDataMap().clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Nullable
|
|
||||||
public UserData getData(UUID userUUID) {
|
|
||||||
return getUserDataMap().get(userUUID);
|
|
||||||
}
|
|
||||||
|
|
||||||
@NotNull
|
|
||||||
public UserData getData(Player player) {
|
|
||||||
return getUserDataMap().get(player.getUniqueId());
|
|
||||||
}
|
|
||||||
|
|
||||||
public void editData(@NotNull DataTaskRunner task) {
|
|
||||||
try {
|
|
||||||
task.run(Main.getStorage());
|
|
||||||
} catch (Exception exception) {
|
|
||||||
Main.severe("无法正常更改玩家数据,请检查数据配置!");
|
|
||||||
Main.severe("Could not edit user's data, please check the data conf!");
|
|
||||||
exception.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void editDataAsync(@NotNull DataTaskRunner task) {
|
|
||||||
Main.getInstance().getScheduler().runAsync(() -> editData(task));
|
|
||||||
}
|
|
||||||
|
|
||||||
@NotNull
|
|
||||||
@Unmodifiable
|
|
||||||
public Map<UUID, UserData> listUserData() {
|
|
||||||
return ImmutableMap.copyOf(getUserDataMap());
|
|
||||||
}
|
|
||||||
|
|
||||||
protected @NotNull HashMap<UUID, UserData> getUserDataMap() {
|
|
||||||
return userDataMap;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,86 +0,0 @@
|
|||||||
package cc.carm.plugin.timereward.storage;
|
|
||||||
|
|
||||||
import org.jetbrains.annotations.NotNull;
|
|
||||||
|
|
||||||
import java.util.LinkedHashSet;
|
|
||||||
import java.util.Set;
|
|
||||||
import java.util.UUID;
|
|
||||||
import java.util.concurrent.TimeUnit;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 用户奖励数据,用于存储用户的奖励的领取情况。
|
|
||||||
*/
|
|
||||||
public class UserData {
|
|
||||||
|
|
||||||
protected final @NotNull UUID userUUID;
|
|
||||||
private final Set<@NotNull String> claimedRewards; // 记录已领取的奖励ID
|
|
||||||
private final long storedSeconds; // 记录已经游玩的时间
|
|
||||||
private final long joinMillis; // 记录本次加入的时间
|
|
||||||
|
|
||||||
public UserData(@NotNull UUID userUUID) {
|
|
||||||
this(userUUID, 0, new LinkedHashSet<>());
|
|
||||||
}
|
|
||||||
|
|
||||||
public UserData(@NotNull UUID userUUID, long storedSeconds,
|
|
||||||
Set<@NotNull String> claimedRewards) {
|
|
||||||
this(userUUID, storedSeconds, claimedRewards, System.currentTimeMillis());
|
|
||||||
}
|
|
||||||
|
|
||||||
public UserData(@NotNull UUID userUUID, long storedSeconds,
|
|
||||||
Set<@NotNull String> claimedRewards, long joinMillis) {
|
|
||||||
this.userUUID = userUUID;
|
|
||||||
this.storedSeconds = storedSeconds;
|
|
||||||
this.claimedRewards = claimedRewards;
|
|
||||||
this.joinMillis = joinMillis;
|
|
||||||
}
|
|
||||||
|
|
||||||
public @NotNull UUID getUserUUID() {
|
|
||||||
return userUUID;
|
|
||||||
}
|
|
||||||
|
|
||||||
public long getStoredSeconds() {
|
|
||||||
return storedSeconds;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 得到本次加入游戏的时间
|
|
||||||
*
|
|
||||||
* @return 本次加入游戏时间
|
|
||||||
*/
|
|
||||||
public long getJoinMillis() {
|
|
||||||
return joinMillis;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取玩家本次加入服务器的时间 ,即为 当前时间-加入时间。
|
|
||||||
*
|
|
||||||
* @return 玩家本次加入服务器的时间
|
|
||||||
*/
|
|
||||||
public long getCurrentSeconds() {
|
|
||||||
return TimeUnit.MILLISECONDS.toSeconds(System.currentTimeMillis() - getJoinMillis());
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取 玩家在数据库中已经游玩的时间 + (当前时间-加入时间)
|
|
||||||
*
|
|
||||||
* @return 之前游玩的世界与本次游玩时间之和
|
|
||||||
*/
|
|
||||||
public long getAllSeconds() {
|
|
||||||
return getStoredSeconds() + getCurrentSeconds();
|
|
||||||
}
|
|
||||||
|
|
||||||
public Set<String> getClaimedRewards() {
|
|
||||||
return claimedRewards;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isClaimed(@NotNull String rewardId) {
|
|
||||||
return this.claimedRewards.contains(rewardId);
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean addClaimedReward(@NotNull String rewardId) {
|
|
||||||
if (isClaimed(rewardId)) return false; // 已经领取过了
|
|
||||||
this.claimedRewards.add(rewardId);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -4,6 +4,7 @@ import cc.carm.lib.configuration.core.value.ConfigValue;
|
|||||||
import cc.carm.lib.easysql.api.SQLManager;
|
import cc.carm.lib.easysql.api.SQLManager;
|
||||||
import cc.carm.lib.easysql.api.SQLTable;
|
import cc.carm.lib.easysql.api.SQLTable;
|
||||||
import cc.carm.lib.easysql.api.builder.TableCreateBuilder;
|
import cc.carm.lib.easysql.api.builder.TableCreateBuilder;
|
||||||
|
import cc.carm.lib.easysql.api.enums.IndexType;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
import org.jetbrains.annotations.Nullable;
|
import org.jetbrains.annotations.Nullable;
|
||||||
|
|
||||||
@@ -15,32 +16,33 @@ public enum DatabaseTables implements SQLTable {
|
|||||||
/**
|
/**
|
||||||
* 用于记录用户在线时间的表
|
* 用于记录用户在线时间的表
|
||||||
*/
|
*/
|
||||||
USER_TIMES(DatabaseConfig.TABLES.USER_TIMES, (table) -> {
|
USER_TIMES(DatabaseConfig.TABLES.USER_TIMES, table -> {
|
||||||
table.addColumn("uuid", "CHAR(36) NOT NULL PRIMARY KEY"); // 用户的UUID
|
table.addColumn("uuid", "CHAR(36) NOT NULL PRIMARY KEY"); // 用户的UUID
|
||||||
|
table.addColumn("date", "DATE NOT NULL"); // 日期
|
||||||
|
|
||||||
table.addColumn("time", "INT UNSIGNED NOT NULL DEFAULT 0"); // 用户在线时间(秒)
|
table.addColumn("daily_time", "MEDIUMINT UNSIGNED NOT NULL DEFAULT 0"); // 用户日在线时间(秒)
|
||||||
|
table.addColumn("weekly_time", "MEDIUMINT UNSIGNED NOT NULL DEFAULT 0"); // 用户周在线时间(秒)
|
||||||
|
table.addColumn("monthly_time", "INT UNSIGNED NOT NULL DEFAULT 0"); // 用户月在线时间(秒)
|
||||||
|
table.addColumn("total_time", "INT UNSIGNED NOT NULL DEFAULT 0"); // 用户总在线时间(秒)
|
||||||
|
|
||||||
table.addColumn("update",
|
table.addColumn("update",
|
||||||
"DATETIME NOT NULL " +
|
"DATETIME NOT NULL " +
|
||||||
"DEFAULT CURRENT_TIMESTAMP " +
|
"DEFAULT CURRENT_TIMESTAMP " +
|
||||||
"ON UPDATE CURRENT_TIMESTAMP"
|
"ON UPDATE CURRENT_TIMESTAMP"
|
||||||
);
|
);
|
||||||
|
|
||||||
}),
|
}),
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 用于记录用户奖励领取情况的表
|
* 用于记录用户奖励领取情况的表
|
||||||
*/
|
*/
|
||||||
USER_CLAIMED(DatabaseConfig.TABLES.USER_CLAIMED, (table) -> {
|
USER_CLAIMED(DatabaseConfig.TABLES.USER_CLAIMED, (table) -> {
|
||||||
table.addAutoIncrementColumn("id", false, true); // 排序键
|
table.addColumn("uuid", "CHAR(36) NOT NULL"); // 用户的UUID 主键
|
||||||
table.addColumn("uuid", "CHAR(36) NOT NULL PRIMARY KEY"); // 用户的UUID 主键
|
table.addColumn("reward", "VARCHAR(64) NOT NULL"); // 已领取的奖励ID
|
||||||
|
|
||||||
table.addColumn("value", "MEDIUMTEXT"); // 已领取的奖励ID
|
table.addColumn("time", "DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP"); // 领取时间
|
||||||
|
|
||||||
table.addColumn("update",
|
table.setIndex(IndexType.PRIMARY_KEY, "pk_timereward_user", "uuid", "reward");
|
||||||
"DATETIME NOT NULL " +
|
|
||||||
"DEFAULT CURRENT_TIMESTAMP " +
|
|
||||||
"ON UPDATE CURRENT_TIMESTAMP"
|
|
||||||
);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
private final Consumer<TableCreateBuilder> builder;
|
private final Consumer<TableCreateBuilder> builder;
|
||||||
|
|||||||
@@ -3,18 +3,19 @@ package cc.carm.plugin.timereward.storage.database;
|
|||||||
import cc.carm.lib.easysql.EasySQL;
|
import cc.carm.lib.easysql.EasySQL;
|
||||||
import cc.carm.lib.easysql.api.SQLManager;
|
import cc.carm.lib.easysql.api.SQLManager;
|
||||||
import cc.carm.plugin.timereward.Main;
|
import cc.carm.plugin.timereward.Main;
|
||||||
import cc.carm.plugin.timereward.storage.UserData;
|
import cc.carm.plugin.timereward.data.TimeRecord;
|
||||||
|
import cc.carm.plugin.timereward.user.UserRewardData;
|
||||||
import com.google.gson.Gson;
|
import com.google.gson.Gson;
|
||||||
import com.google.gson.JsonElement;
|
|
||||||
import com.google.gson.JsonParser;
|
import com.google.gson.JsonParser;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
import org.jetbrains.annotations.Nullable;
|
import org.jetbrains.annotations.Nullable;
|
||||||
|
|
||||||
import java.sql.ResultSet;
|
import java.sql.ResultSet;
|
||||||
import java.sql.SQLException;
|
import java.sql.SQLException;
|
||||||
import java.util.LinkedHashSet;
|
import java.time.LocalDate;
|
||||||
import java.util.Set;
|
import java.time.LocalDateTime;
|
||||||
import java.util.UUID;
|
import java.util.*;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
public class MySQLStorage {
|
public class MySQLStorage {
|
||||||
protected static final Gson GSON = new Gson();
|
protected static final Gson GSON = new Gson();
|
||||||
@@ -56,62 +57,84 @@ public class MySQLStorage {
|
|||||||
return sqlManager;
|
return sqlManager;
|
||||||
}
|
}
|
||||||
|
|
||||||
public @Nullable UserData loadData(@NotNull UUID uuid) throws Exception {
|
public @Nullable UserRewardData loadData(@NotNull UUID uuid) throws Exception {
|
||||||
Long playTime = loadPlayTime(uuid);
|
TimeRecord recordDate = loadTimeRecord(uuid);
|
||||||
Set<String> claimedData = loadClaimedData(uuid);
|
Map<String, LocalDateTime> claimedData = loadClaimedData(uuid);
|
||||||
return new UserData(uuid, playTime, claimedData);
|
return new UserRewardData(uuid, recordDate, claimedData);
|
||||||
}
|
}
|
||||||
|
|
||||||
public long loadPlayTime(@NotNull UUID uuid) throws Exception {
|
public TimeRecord loadTimeRecord(@NotNull UUID uuid) throws Exception {
|
||||||
return DatabaseTables.USER_TIMES.createQuery()
|
return DatabaseTables.USER_TIMES.createQuery()
|
||||||
.selectColumns("uuid", "time")
|
|
||||||
.addCondition("uuid", uuid).setLimit(1).build()
|
.addCondition("uuid", uuid).setLimit(1).build()
|
||||||
.executeFunction((query) -> {
|
.executeFunction(query -> {
|
||||||
ResultSet resultSet = query.getResultSet();
|
ResultSet rs = query.getResultSet();
|
||||||
if (resultSet == null || !resultSet.next()) return 0L;
|
if (rs == null || !rs.next()) return TimeRecord.empty();
|
||||||
return resultSet.getLong("time");
|
|
||||||
}, 0L);
|
LocalDate date = rs.getDate("date").toLocalDate();
|
||||||
|
long daily = rs.getLong("daily_time");
|
||||||
|
long weekly = rs.getLong("weekly_time");
|
||||||
|
long monthly = rs.getLong("monthly_time");
|
||||||
|
long total = rs.getLong("total_time");
|
||||||
|
|
||||||
|
return new TimeRecord(date, daily, weekly, monthly, total);
|
||||||
|
}, TimeRecord.empty());
|
||||||
}
|
}
|
||||||
|
|
||||||
@NotNull
|
@NotNull
|
||||||
public Set<String> loadClaimedData(@NotNull UUID uuid) throws Exception {
|
public Map<String, LocalDateTime> loadClaimedData(@NotNull UUID uuid) throws Exception {
|
||||||
return DatabaseTables.USER_CLAIMED.createQuery()
|
return DatabaseTables.USER_CLAIMED.createQuery()
|
||||||
.selectColumns("uuid", "value")
|
.addCondition("uuid", uuid).build()
|
||||||
.addCondition("uuid", uuid).setLimit(1).build()
|
.executeFunction(query -> {
|
||||||
.executeFunction((query) -> {
|
ResultSet rs = query.getResultSet();
|
||||||
ResultSet resultSet = query.getResultSet();
|
Map<String, LocalDateTime> map = new LinkedHashMap<>();
|
||||||
if (!resultSet.next()) return new LinkedHashSet<>();
|
|
||||||
String json = resultSet.getString("value");
|
while (rs.next()) {
|
||||||
if (json == null) return new LinkedHashSet<>();
|
String rewardID = rs.getString("reward");
|
||||||
JsonElement element = PARSER.parse(json);
|
LocalDateTime time = rs.getTimestamp("time").toLocalDateTime();
|
||||||
if (!element.isJsonArray()) return new LinkedHashSet<>();
|
map.put(rewardID, time);
|
||||||
Set<String> ids = new LinkedHashSet<>();
|
|
||||||
for (JsonElement e : element.getAsJsonArray()) {
|
|
||||||
ids.add(e.getAsString());
|
|
||||||
}
|
}
|
||||||
return ids;
|
|
||||||
}, new LinkedHashSet<>());
|
return map;
|
||||||
|
}, new LinkedHashMap<>());
|
||||||
}
|
}
|
||||||
|
|
||||||
public void saveClaimedData(@NotNull UUID uuid, @Nullable Set<String> claimedRewards) throws Exception {
|
public void addClaimedData(@NotNull UUID uuid, String reward) throws Exception {
|
||||||
if (claimedRewards != null) {
|
HashMap<String, LocalDateTime> time = new HashMap<>();
|
||||||
DatabaseTables.USER_CLAIMED.createReplace()
|
time.put(reward, LocalDateTime.now());
|
||||||
.setColumnNames("uuid", "value")
|
addClaimedData(uuid, time);
|
||||||
.setParams(uuid.toString(), GSON.toJson(claimedRewards))
|
}
|
||||||
.execute();
|
|
||||||
|
public void addClaimedData(@NotNull UUID uuid, @NotNull Map<String, LocalDateTime> data) throws Exception {
|
||||||
|
if (!data.isEmpty()) {
|
||||||
|
List<Object[]> values = data.entrySet().stream()
|
||||||
|
.map(entry -> new Object[]{uuid.toString(), entry.getKey(), entry.getValue()})
|
||||||
|
.collect(Collectors.toList());
|
||||||
|
DatabaseTables.USER_CLAIMED.createReplaceBatch()
|
||||||
|
.setColumnNames("uuid", "reward", "time")
|
||||||
|
.setAllParams(values).execute();
|
||||||
} else {
|
} else {
|
||||||
DatabaseTables.USER_CLAIMED.createDelete()
|
DatabaseTables.USER_CLAIMED.createDelete()
|
||||||
.addCondition("uuid", uuid).setLimit(1)
|
.addCondition("uuid", uuid).setLimit(1)
|
||||||
.build()
|
.build().execute();
|
||||||
.execute();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void savePlayTime(@NotNull UUID uuid, long time) throws Exception {
|
public void savePlayTime(@NotNull UUID uuid, @Nullable TimeRecord newRecord) throws Exception {
|
||||||
DatabaseTables.USER_TIMES.createReplace()
|
if (newRecord != null) {
|
||||||
.setColumnNames("uuid", "time")
|
DatabaseTables.USER_TIMES.createReplace()
|
||||||
.setParams(uuid.toString(), time)
|
.setColumnNames("uuid", "date", "daily_time", "weekly_time", "monthly_time", "total_time")
|
||||||
.execute();
|
.setParams(
|
||||||
|
uuid.toString(), newRecord.getDate(),
|
||||||
|
newRecord.getDailyTime().getSeconds(),
|
||||||
|
newRecord.getWeeklyTime().getSeconds(),
|
||||||
|
newRecord.getMonthlyTime().getSeconds(),
|
||||||
|
newRecord.getTotalTime().getSeconds()
|
||||||
|
).execute();
|
||||||
|
} else {
|
||||||
|
DatabaseTables.USER_TIMES.createDelete()
|
||||||
|
.addCondition("uuid", uuid).setLimit(1)
|
||||||
|
.build().execute();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,36 @@
|
|||||||
|
package cc.carm.plugin.timereward.user;
|
||||||
|
|
||||||
|
import cc.carm.plugin.timereward.data.IntervalType;
|
||||||
|
import cc.carm.plugin.timereward.data.RewardContents;
|
||||||
|
import cc.carm.plugin.timereward.data.TimeRecord;
|
||||||
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
|
||||||
|
import java.time.Duration;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
public class LockedRewardData extends UserRewardData {
|
||||||
|
public LockedRewardData(@NotNull UUID userUUID) {
|
||||||
|
super(userUUID, TimeRecord.empty(), Collections.emptyMap());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Duration getOnlineDuration(@NotNull IntervalType type) {
|
||||||
|
return Duration.ZERO;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isClaimed(@NotNull RewardContents reward) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isTimeEnough(RewardContents reward) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void updateClaimed(@NotNull RewardContents reward) {
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,84 @@
|
|||||||
|
package cc.carm.plugin.timereward.user;
|
||||||
|
|
||||||
|
import cc.carm.lib.easyplugin.user.UserData;
|
||||||
|
import cc.carm.plugin.timereward.data.IntervalType;
|
||||||
|
import cc.carm.plugin.timereward.data.RewardContents;
|
||||||
|
import cc.carm.plugin.timereward.data.TimeRecord;
|
||||||
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
import org.jetbrains.annotations.Nullable;
|
||||||
|
|
||||||
|
import java.time.Duration;
|
||||||
|
import java.time.LocalDateTime;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户奖励数据,用于存储用户的奖励的领取情况。
|
||||||
|
*/
|
||||||
|
public class UserRewardData extends UserData<UUID> {
|
||||||
|
|
||||||
|
private final @NotNull Map<String, LocalDateTime> claimedRewards; // 记录已领取的奖励ID
|
||||||
|
|
||||||
|
private final @NotNull TimeRecord recordTime;
|
||||||
|
private final @NotNull LocalDateTime joinTime;
|
||||||
|
|
||||||
|
public UserRewardData(@NotNull UUID userUUID, @NotNull TimeRecord timeRecord, @NotNull Map<String, LocalDateTime> claimedRewards) {
|
||||||
|
this(userUUID, claimedRewards, timeRecord, LocalDateTime.now());
|
||||||
|
}
|
||||||
|
|
||||||
|
public UserRewardData(@NotNull UUID userUUID, @NotNull Map<String, LocalDateTime> claimedRewards,
|
||||||
|
@NotNull TimeRecord recordTime, @NotNull LocalDateTime joinTime) {
|
||||||
|
super(userUUID);
|
||||||
|
this.claimedRewards = claimedRewards;
|
||||||
|
this.recordTime = recordTime;
|
||||||
|
this.joinTime = joinTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public @NotNull UUID getUserUUID() {
|
||||||
|
return getKey();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return 数据库中的时间记录
|
||||||
|
*/
|
||||||
|
public @NotNull TimeRecord getTimeRecord() {
|
||||||
|
return recordTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 得到本次加入游戏的时间
|
||||||
|
*
|
||||||
|
* @return 本次加入游戏时间
|
||||||
|
*/
|
||||||
|
public @NotNull LocalDateTime getJoinTime() {
|
||||||
|
return joinTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return 玩家的在线时间周期,需指定周期类型{@link IntervalType}
|
||||||
|
*/
|
||||||
|
public Duration getOnlineDuration(@NotNull IntervalType type) {
|
||||||
|
return type.calculate(getTimeRecord(), getJoinTime());
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isTimeEnough(RewardContents reward) {
|
||||||
|
return getOnlineDuration(reward.getType()).getSeconds() >= reward.getTime();
|
||||||
|
}
|
||||||
|
|
||||||
|
public @NotNull Map<String, LocalDateTime> getClaimedRewards() {
|
||||||
|
return claimedRewards;
|
||||||
|
}
|
||||||
|
|
||||||
|
public @Nullable LocalDateTime getClaimedDate(@NotNull RewardContents reward) {
|
||||||
|
return claimedRewards.get(reward.getRewardID());
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isClaimed(@NotNull RewardContents reward) {
|
||||||
|
return claimedRewards.containsKey(reward.getRewardID());
|
||||||
|
}
|
||||||
|
|
||||||
|
public void updateClaimed(@NotNull RewardContents reward) {
|
||||||
|
this.claimedRewards.put(reward.getRewardID(), LocalDateTime.now());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -16,6 +16,9 @@ permissions:
|
|||||||
"TimeReward.admin":
|
"TimeReward.admin":
|
||||||
description: "在线自动领奖的管理员权限。"
|
description: "在线自动领奖的管理员权限。"
|
||||||
default: op
|
default: op
|
||||||
|
"TimeReward.claim":
|
||||||
|
description: "使用领奖指令的权限,若关闭则玩家不得直接通过指令领取奖励。"
|
||||||
|
default: true
|
||||||
|
|
||||||
commands:
|
commands:
|
||||||
"TimeReward":
|
"TimeReward":
|
||||||
|
|||||||
@@ -0,0 +1,57 @@
|
|||||||
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
import java.time.DayOfWeek;
|
||||||
|
import java.time.LocalDate;
|
||||||
|
import java.time.temporal.TemporalField;
|
||||||
|
import java.time.temporal.WeekFields;
|
||||||
|
|
||||||
|
public class TimeTest {
|
||||||
|
|
||||||
|
LocalDate date = LocalDate.of(2023, 8, 30);
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void test() {
|
||||||
|
|
||||||
|
LocalDate date1 = LocalDate.of(2023, 9, 2);
|
||||||
|
LocalDate date2 = LocalDate.of(2023, 8, 28);
|
||||||
|
LocalDate date3 = LocalDate.of(2023, 8, 27);
|
||||||
|
|
||||||
|
System.out.println(isDayUpdated(date1));
|
||||||
|
System.out.println(isWeekUpdated(date1));
|
||||||
|
System.out.println(isMonthUpdated(date1));
|
||||||
|
|
||||||
|
System.out.println(isDayUpdated(date2));
|
||||||
|
System.out.println(isWeekUpdated(date2));
|
||||||
|
System.out.println(isMonthUpdated(date2));
|
||||||
|
|
||||||
|
System.out.println(isDayUpdated(date3));
|
||||||
|
System.out.println(isWeekUpdated(date3));
|
||||||
|
System.out.println(isMonthUpdated(date3));
|
||||||
|
|
||||||
|
System.out.println(isDayUpdated(date));
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public @NotNull LocalDate getDate() {
|
||||||
|
return date;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isDayUpdated(LocalDate d) {
|
||||||
|
return !d.equals(getDate());
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isWeekUpdated(LocalDate d) {
|
||||||
|
if (!isDayUpdated(d)) return false; // Same day always same week
|
||||||
|
|
||||||
|
TemporalField woy = WeekFields.of(DayOfWeek.MONDAY, 4).weekOfWeekBasedYear();
|
||||||
|
return getDate().get(woy) != d.get(woy);
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isMonthUpdated(LocalDate d) {
|
||||||
|
if (!isDayUpdated(d)) return false; // Same day always same month
|
||||||
|
|
||||||
|
// Predicate current month is after the month of the date
|
||||||
|
return d.getMonth().compareTo(getDate().getMonth()) > 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user