2021-01-03 01:21:15 -06:00
|
|
|
package dev.plex.util;
|
2020-10-27 11:14:34 -07:00
|
|
|
|
2022-03-19 14:33:23 +11:00
|
|
|
import com.google.common.collect.ImmutableSet;
|
|
|
|
import com.google.common.reflect.ClassPath;
|
2021-01-03 01:21:15 -06:00
|
|
|
import dev.plex.Plex;
|
2022-01-27 15:38:44 -06:00
|
|
|
import dev.plex.PlexBase;
|
2021-01-03 01:21:15 -06:00
|
|
|
import dev.plex.config.Config;
|
|
|
|
import dev.plex.storage.StorageType;
|
2022-04-04 01:36:50 -07:00
|
|
|
import java.io.BufferedReader;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.InputStreamReader;
|
|
|
|
import java.net.HttpURLConnection;
|
|
|
|
import java.net.URL;
|
|
|
|
import java.sql.Connection;
|
|
|
|
import java.sql.SQLException;
|
|
|
|
import java.time.Instant;
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
import java.time.ZoneId;
|
2022-04-05 15:40:42 -05:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.Arrays;
|
|
|
|
import java.util.Collections;
|
|
|
|
import java.util.Date;
|
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.HashSet;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.Locale;
|
|
|
|
import java.util.Map;
|
|
|
|
import java.util.Random;
|
|
|
|
import java.util.Set;
|
|
|
|
import java.util.UUID;
|
2022-04-04 01:36:50 -07:00
|
|
|
import java.util.concurrent.ThreadLocalRandom;
|
|
|
|
import java.util.stream.Collectors;
|
2022-04-05 15:40:42 -05:00
|
|
|
import net.kyori.adventure.text.Component;
|
|
|
|
import net.kyori.adventure.text.minimessage.MiniMessage;
|
|
|
|
import net.kyori.adventure.text.serializer.legacy.LegacyComponentSerializer;
|
2022-04-06 18:43:49 -04:00
|
|
|
import net.kyori.adventure.text.serializer.plain.PlainTextComponentSerializer;
|
2022-04-05 15:40:42 -05:00
|
|
|
import org.apache.commons.lang.math.NumberUtils;
|
|
|
|
import org.bukkit.Bukkit;
|
|
|
|
import org.bukkit.ChatColor;
|
|
|
|
import org.bukkit.GameRule;
|
|
|
|
import org.bukkit.Location;
|
|
|
|
import org.bukkit.Material;
|
|
|
|
import org.bukkit.World;
|
|
|
|
import org.bukkit.command.Command;
|
|
|
|
import org.bukkit.command.PluginCommandYamlParser;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
import org.bukkit.plugin.Plugin;
|
|
|
|
import org.json.simple.JSONObject;
|
|
|
|
import org.json.simple.parser.JSONParser;
|
|
|
|
import org.json.simple.parser.ParseException;
|
2022-04-04 01:36:50 -07:00
|
|
|
|
2022-01-27 15:38:44 -06:00
|
|
|
public class PlexUtils extends PlexBase
|
2020-10-27 11:14:34 -07:00
|
|
|
{
|
2021-06-20 03:02:07 -05:00
|
|
|
private static final Random RANDOM;
|
2022-02-26 00:24:11 -06:00
|
|
|
private static final List<String> regxList = new ArrayList<>()
|
|
|
|
{{
|
|
|
|
add("y");
|
|
|
|
add("mo");
|
|
|
|
add("w");
|
|
|
|
add("d");
|
|
|
|
add("h");
|
|
|
|
add("m");
|
|
|
|
add("s");
|
|
|
|
}};
|
2022-02-26 00:26:42 -06:00
|
|
|
public static Map<String, ChatColor> CHAT_COLOR_NAMES;
|
|
|
|
public static List<ChatColor> CHAT_COLOR_POOL;
|
|
|
|
public static List<String> DEVELOPERS =
|
|
|
|
Arrays.asList("78408086-1991-4c33-a571-d8fa325465b2", // Telesphoreo
|
|
|
|
"f5cd54c4-3a24-4213-9a56-c06c49594dff" // Taahh
|
|
|
|
);
|
2020-11-05 21:50:16 -06:00
|
|
|
|
|
|
|
static
|
|
|
|
{
|
|
|
|
RANDOM = new Random();
|
|
|
|
CHAT_COLOR_NAMES = new HashMap<>();
|
|
|
|
CHAT_COLOR_POOL = Arrays.asList(ChatColor.DARK_RED, ChatColor.RED, ChatColor.GOLD, ChatColor.YELLOW, ChatColor.GREEN, ChatColor.DARK_GREEN, ChatColor.AQUA, ChatColor.DARK_AQUA, ChatColor.BLUE, ChatColor.DARK_BLUE, ChatColor.DARK_PURPLE, ChatColor.LIGHT_PURPLE);
|
|
|
|
for (final ChatColor chatColor : CHAT_COLOR_POOL)
|
|
|
|
{
|
|
|
|
CHAT_COLOR_NAMES.put(chatColor.name().toLowerCase().replace("_", ""), chatColor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static ChatColor randomChatColor()
|
|
|
|
{
|
|
|
|
return CHAT_COLOR_POOL.get(RANDOM.nextInt(CHAT_COLOR_POOL.size()));
|
|
|
|
}
|
|
|
|
|
2020-10-27 11:14:34 -07:00
|
|
|
public static void testConnections()
|
|
|
|
{
|
2022-04-04 01:36:50 -07:00
|
|
|
try (Connection con = Plex.get().getSqlConnection().getCon())
|
2020-10-27 11:14:34 -07:00
|
|
|
{
|
2021-01-03 01:21:15 -06:00
|
|
|
if (Plex.get().getStorageType() == StorageType.MARIADB)
|
2020-10-27 11:14:34 -07:00
|
|
|
{
|
|
|
|
PlexLog.log("Successfully enabled MySQL!");
|
2022-04-05 13:14:53 -05:00
|
|
|
}
|
|
|
|
else if (Plex.get().getStorageType() == StorageType.SQLITE)
|
2020-10-27 11:14:34 -07:00
|
|
|
{
|
|
|
|
PlexLog.log("Successfully enabled SQLite!");
|
|
|
|
}
|
2022-04-05 13:14:53 -05:00
|
|
|
}
|
|
|
|
catch (SQLException e)
|
2022-04-04 01:36:50 -07:00
|
|
|
{
|
|
|
|
if (Plex.get().getMongoConnection().getDatastore() != null)
|
2020-10-27 22:49:56 -05:00
|
|
|
{
|
2022-04-04 01:36:50 -07:00
|
|
|
PlexLog.log("Successfully enabled MongoDB!");
|
2020-10-27 22:49:56 -05:00
|
|
|
}
|
2022-02-26 00:24:11 -06:00
|
|
|
}
|
2020-10-27 11:14:34 -07:00
|
|
|
}
|
|
|
|
|
2020-10-28 13:47:00 -07:00
|
|
|
public static boolean isPluginCMD(String cmd, String pluginName)
|
|
|
|
{
|
|
|
|
Plugin plugin = Bukkit.getServer().getPluginManager().getPlugin(pluginName);
|
|
|
|
if (plugin == null)
|
|
|
|
{
|
|
|
|
PlexLog.error(pluginName + " can not be found on the server! Make sure it is spelt correctly!");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
List<Command> cmds = PluginCommandYamlParser.parse(plugin);
|
|
|
|
for (Command pluginCmd : cmds)
|
|
|
|
{
|
|
|
|
List<String> cmdAliases = pluginCmd.getAliases().size() > 0 ? pluginCmd.getAliases().stream().map(String::toLowerCase).collect(Collectors.toList()) : null;
|
|
|
|
if (pluginCmd.getName().equalsIgnoreCase(cmd) || (cmdAliases != null && cmdAliases.contains(cmd.toLowerCase())))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-11-05 21:50:16 -06:00
|
|
|
public static String colorize(final String string)
|
|
|
|
{
|
|
|
|
return ChatColor.translateAlternateColorCodes('&', string);
|
|
|
|
}
|
|
|
|
|
2022-02-24 23:09:55 -08:00
|
|
|
public static Component messageComponent(String entry, Object... objects)
|
|
|
|
{
|
2022-04-06 18:43:49 -04:00
|
|
|
return MiniMessage.miniMessage().deserialize(messageString(entry, objects));
|
2022-02-24 23:09:55 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
public static String messageString(String entry, Object... objects)
|
|
|
|
{
|
2022-02-25 01:54:11 -08:00
|
|
|
String f = plugin.messages.getString(entry);
|
2022-02-24 23:09:55 -08:00
|
|
|
if (f == null)
|
|
|
|
{
|
|
|
|
throw new NullPointerException();
|
|
|
|
}
|
2022-04-03 21:07:48 -07:00
|
|
|
/*for (Object object : objects)
|
2022-02-24 23:09:55 -08:00
|
|
|
{
|
|
|
|
f = f.replaceFirst("<v>", String.valueOf(object));
|
2022-04-03 21:07:48 -07:00
|
|
|
}*/
|
|
|
|
for (int i = 0; i < objects.length; i++)
|
|
|
|
{
|
2022-04-06 18:43:49 -04:00
|
|
|
f = f.replace("{" + i + "}", PlainTextComponentSerializer.plainText().serialize(MiniMessage.miniMessage().deserialize(String.valueOf(objects[i]))));
|
2022-02-24 23:09:55 -08:00
|
|
|
}
|
|
|
|
return f;
|
2020-11-01 19:06:08 -05:00
|
|
|
}
|
|
|
|
|
2022-02-26 00:24:11 -06:00
|
|
|
private static long a(String parse)
|
|
|
|
{
|
|
|
|
StringBuilder sb = new StringBuilder();
|
|
|
|
|
|
|
|
regxList.forEach(obj ->
|
|
|
|
{
|
|
|
|
if (parse.endsWith(obj))
|
|
|
|
{
|
|
|
|
sb.append(parse.split(obj)[0]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return Long.parseLong(sb.toString());
|
|
|
|
}
|
|
|
|
|
|
|
|
private static TimeUnit verify(String arg)
|
|
|
|
{
|
|
|
|
TimeUnit unit = null;
|
|
|
|
for (String c : regxList)
|
|
|
|
{
|
|
|
|
if (arg.endsWith(c))
|
|
|
|
{
|
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
case "y" -> unit = TimeUnit.YEAR;
|
|
|
|
case "mo" -> unit = TimeUnit.MONTH;
|
|
|
|
case "w" -> unit = TimeUnit.WEEK;
|
|
|
|
case "d" -> unit = TimeUnit.DAY;
|
|
|
|
case "h" -> unit = TimeUnit.HOUR;
|
|
|
|
case "m" -> unit = TimeUnit.MINUTE;
|
|
|
|
case "s" -> unit = TimeUnit.SECOND;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (unit != null) ? unit : TimeUnit.DAY;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static LocalDateTime parseDateOffset(String... time)
|
|
|
|
{
|
|
|
|
Instant instant = Instant.now();
|
|
|
|
for (String arg : time)
|
|
|
|
{
|
|
|
|
instant = instant.plusSeconds(verify(arg).get() * a(arg));
|
|
|
|
}
|
|
|
|
return LocalDateTime.ofInstant(instant, ZoneId.systemDefault().getRules().getOffset(instant));
|
|
|
|
}
|
|
|
|
|
2020-11-01 19:06:08 -05:00
|
|
|
public static ChatColor getChatColorFromConfig(Config config, ChatColor def, String path)
|
|
|
|
{
|
|
|
|
ChatColor color;
|
|
|
|
if (config.getString(path) == null)
|
2020-11-05 19:29:38 -06:00
|
|
|
{
|
2020-11-01 19:06:08 -05:00
|
|
|
color = def;
|
2022-04-05 13:14:53 -05:00
|
|
|
}
|
|
|
|
else if (ChatColor.getByChar(config.getString(path)) == null)
|
2020-11-05 19:29:38 -06:00
|
|
|
{
|
2020-11-01 19:06:08 -05:00
|
|
|
color = def;
|
2022-04-05 13:14:53 -05:00
|
|
|
}
|
|
|
|
else
|
2020-11-05 19:29:38 -06:00
|
|
|
{
|
2020-11-01 19:06:08 -05:00
|
|
|
color = ChatColor.getByChar(config.getString(path));
|
2020-11-05 19:29:38 -06:00
|
|
|
}
|
2020-11-01 19:06:08 -05:00
|
|
|
return color;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setBlocks(Location c1, Location c2, Material material)
|
|
|
|
{
|
|
|
|
if (!c1.getWorld().getName().equals(c1.getWorld().getName()))
|
2020-11-05 19:29:38 -06:00
|
|
|
{
|
2020-11-01 19:06:08 -05:00
|
|
|
return;
|
2020-11-05 19:29:38 -06:00
|
|
|
}
|
2022-01-29 19:53:22 -06:00
|
|
|
int sy = Math.min(c1.getBlockY(), c2.getBlockY()), ey = Math.max(c1.getBlockY(), c2.getBlockY()), sx = Math.min(c1.getBlockX(), c2.getBlockX()), ex = Math.max(c1.getBlockX(), c2.getBlockX()), sz = Math.min(c1.getBlockZ(), c2.getBlockZ()), ez = Math.max(c1.getBlockZ(), c2.getBlockZ());
|
2020-11-01 19:06:08 -05:00
|
|
|
World world = c1.getWorld();
|
|
|
|
for (int y = sy; y <= ey; y++)
|
|
|
|
{
|
|
|
|
for (int x = sx; x <= ex; x++)
|
|
|
|
{
|
|
|
|
for (int z = sz; z <= ez; z++)
|
|
|
|
{
|
|
|
|
world.getBlockAt(x, y, z).setType(material);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-11-02 15:50:51 -05:00
|
|
|
|
2022-03-20 20:05:50 -05:00
|
|
|
public static <T> void commitGlobalGameRules(World world)
|
|
|
|
{
|
|
|
|
for (String s : Plex.get().config.getStringList("global_gamerules"))
|
|
|
|
{
|
|
|
|
readGameRules(world, s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static <T> void commitSpecificGameRules(World world)
|
2022-02-25 01:54:11 -08:00
|
|
|
{
|
|
|
|
for (String s : Plex.get().config.getStringList("worlds." + world.getName().toLowerCase(Locale.ROOT) + ".gameRules"))
|
|
|
|
{
|
2022-03-20 20:05:50 -05:00
|
|
|
readGameRules(world, s);
|
2022-02-25 01:54:11 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-20 20:05:50 -05:00
|
|
|
private static <T> void readGameRules(World world, String s)
|
2022-02-25 01:54:11 -08:00
|
|
|
{
|
2022-03-20 20:05:50 -05:00
|
|
|
String gameRule = s.split(";")[0];
|
2022-04-05 13:14:53 -05:00
|
|
|
T value = (T)s.split(";")[1];
|
|
|
|
GameRule<T> rule = (GameRule<T>)GameRule.getByName(gameRule);
|
2022-03-20 20:05:50 -05:00
|
|
|
if (rule != null && check(value).getClass().equals(rule.getType()))
|
|
|
|
{
|
|
|
|
world.setGameRule(rule, value);
|
|
|
|
PlexLog.debug("Setting game rule " + gameRule + " for world " + world.getName() + " with value " + value);
|
2022-04-05 13:14:53 -05:00
|
|
|
}
|
|
|
|
else
|
2022-03-20 20:05:50 -05:00
|
|
|
{
|
|
|
|
PlexLog.error(String.format("Failed to set game rule %s for world %s with value %s!", gameRule, world.getName().toLowerCase(Locale.ROOT), value));
|
|
|
|
}
|
|
|
|
}
|
2022-02-25 01:54:11 -08:00
|
|
|
|
2022-03-20 20:05:50 -05:00
|
|
|
public static <T> Object check(T value)
|
|
|
|
{
|
2022-02-25 01:54:11 -08:00
|
|
|
if (value.toString().equalsIgnoreCase("true") || value.toString().equalsIgnoreCase("false"))
|
|
|
|
{
|
|
|
|
return Boolean.parseBoolean(value.toString());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (NumberUtils.isNumber(value.toString()))
|
|
|
|
{
|
|
|
|
return Integer.parseInt(value.toString());
|
|
|
|
}
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2020-11-02 19:19:26 -05:00
|
|
|
public static List<String> getPlayerNameList()
|
|
|
|
{
|
2022-01-29 19:53:22 -06:00
|
|
|
return Bukkit.getOnlinePlayers().stream().map(Player::getName).collect(Collectors.toList());
|
2020-11-02 19:19:26 -05:00
|
|
|
}
|
|
|
|
|
2020-11-02 15:50:51 -05:00
|
|
|
public static void broadcast(String s)
|
|
|
|
{
|
2022-01-27 01:00:50 -08:00
|
|
|
Bukkit.broadcast(LegacyComponentSerializer.legacyAmpersand().deserialize(s));
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void broadcast(Component component)
|
|
|
|
{
|
|
|
|
Bukkit.broadcast(component);
|
2020-11-02 15:50:51 -05:00
|
|
|
}
|
2020-11-05 08:40:48 -05:00
|
|
|
|
2022-02-24 21:56:28 -06:00
|
|
|
public static Object simpleGET(String url)
|
2020-11-05 08:40:48 -05:00
|
|
|
{
|
2022-02-24 21:56:28 -06:00
|
|
|
try
|
2020-11-05 19:29:38 -06:00
|
|
|
{
|
2022-02-24 21:56:28 -06:00
|
|
|
URL u = new URL(url);
|
2022-04-05 13:14:53 -05:00
|
|
|
HttpURLConnection connection = (HttpURLConnection)u.openConnection();
|
2022-02-24 21:56:28 -06:00
|
|
|
connection.setRequestMethod("GET");
|
|
|
|
BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
|
|
|
|
String line;
|
|
|
|
StringBuilder content = new StringBuilder();
|
|
|
|
while ((line = in.readLine()) != null)
|
|
|
|
{
|
|
|
|
content.append(line);
|
|
|
|
}
|
|
|
|
in.close();
|
|
|
|
connection.disconnect();
|
|
|
|
return new JSONParser().parse(content.toString());
|
2022-04-05 13:14:53 -05:00
|
|
|
}
|
|
|
|
catch (IOException | ParseException ex)
|
2022-02-24 21:56:28 -06:00
|
|
|
{
|
|
|
|
return null;
|
2020-11-05 19:29:38 -06:00
|
|
|
}
|
2020-11-05 08:40:48 -05:00
|
|
|
}
|
2020-11-05 13:17:14 -08:00
|
|
|
|
|
|
|
public static UUID getFromName(String name)
|
|
|
|
{
|
|
|
|
JSONObject profile;
|
2022-04-05 13:14:53 -05:00
|
|
|
profile = (JSONObject)simpleGET("https://api.ashcon.app/mojang/v2/user/" + name);
|
2022-02-24 21:56:28 -06:00
|
|
|
if (profile == null)
|
2020-11-05 19:29:38 -06:00
|
|
|
{
|
2022-02-24 21:56:28 -06:00
|
|
|
PlexLog.error("Profile from Ashcon API returned null!");
|
2020-11-05 13:17:14 -08:00
|
|
|
return null;
|
|
|
|
}
|
2022-04-05 13:14:53 -05:00
|
|
|
String uuidString = (String)profile.get("uuid");
|
2020-11-05 13:17:14 -08:00
|
|
|
return UUID.fromString(uuidString);
|
|
|
|
}
|
2020-11-05 20:39:27 -08:00
|
|
|
|
2022-03-19 14:33:23 +11:00
|
|
|
@SuppressWarnings("UnstableApiUsage")
|
|
|
|
public static Set<Class<?>> getClassesFrom(String packageName)
|
|
|
|
{
|
|
|
|
Set<Class<?>> classes = new HashSet<>();
|
|
|
|
try
|
|
|
|
{
|
|
|
|
ClassPath path = ClassPath.from(Plex.class.getClassLoader());
|
|
|
|
ImmutableSet<ClassPath.ClassInfo> infoSet = path.getTopLevelClasses(packageName);
|
|
|
|
infoSet.forEach(info ->
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
Class<?> clazz = Class.forName(info.getName());
|
|
|
|
classes.add(clazz);
|
2022-04-05 13:14:53 -05:00
|
|
|
}
|
|
|
|
catch (ClassNotFoundException ex)
|
2022-03-19 14:33:23 +11:00
|
|
|
{
|
|
|
|
PlexLog.error("Unable to find class " + info.getName() + " in " + packageName);
|
|
|
|
}
|
|
|
|
});
|
2022-04-05 13:14:53 -05:00
|
|
|
}
|
|
|
|
catch (IOException ex)
|
2022-03-19 14:33:23 +11:00
|
|
|
{
|
|
|
|
PlexLog.error("Something went wrong while fetching classes from " + packageName);
|
|
|
|
throw new RuntimeException(ex);
|
|
|
|
}
|
|
|
|
return Collections.unmodifiableSet(classes);
|
|
|
|
}
|
|
|
|
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
public static <T> Set<Class<? extends T>> getClassesBySubType(String packageName, Class<T> subType)
|
|
|
|
{
|
|
|
|
Set<Class<?>> loadedClasses = getClassesFrom(packageName);
|
|
|
|
Set<Class<? extends T>> classes = new HashSet<>();
|
|
|
|
loadedClasses.forEach(clazz ->
|
|
|
|
{
|
|
|
|
if (clazz.getSuperclass() == subType || Arrays.asList(clazz.getInterfaces()).contains(subType))
|
|
|
|
{
|
2022-04-05 13:14:53 -05:00
|
|
|
classes.add((Class<? extends T>)clazz);
|
2022-03-19 14:33:23 +11:00
|
|
|
}
|
|
|
|
});
|
|
|
|
return Collections.unmodifiableSet(classes);
|
|
|
|
}
|
|
|
|
|
2020-11-05 20:39:27 -08:00
|
|
|
public static int randomNum()
|
|
|
|
{
|
|
|
|
return ThreadLocalRandom.current().nextInt();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static int randomNum(int limit)
|
|
|
|
{
|
|
|
|
return ThreadLocalRandom.current().nextInt(limit);
|
|
|
|
}
|
2022-01-29 19:53:22 -06:00
|
|
|
|
2020-11-05 20:39:27 -08:00
|
|
|
public static int randomNum(int start, int limit)
|
|
|
|
{
|
|
|
|
return ThreadLocalRandom.current().nextInt(start, limit);
|
|
|
|
}
|
2020-11-09 18:47:03 -08:00
|
|
|
|
|
|
|
public static long getDateNow()
|
|
|
|
{
|
|
|
|
return new Date().getTime();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Date getDateFromLong(long epoch)
|
|
|
|
{
|
|
|
|
return new Date(epoch);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static long hoursToSeconds(long hours)
|
|
|
|
{
|
2022-01-30 14:56:08 -06:00
|
|
|
return hours * 3600;
|
2020-11-09 18:47:03 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
public static long minutesToSeconds(long minutes)
|
|
|
|
{
|
|
|
|
return minutes * 60;
|
|
|
|
}
|
2020-10-27 11:14:34 -07:00
|
|
|
}
|