From a6f18fd57ea6e216d4e90445ada8d4d5c56f8a51 Mon Sep 17 00:00:00 2001 From: kuba6000 Date: Wed, 10 Aug 2022 15:57:40 +0200 Subject: Rename --- src/main/java/KubaTech/ClientProxy.java | 57 ++++++++++++++++++++ src/main/java/KubaTech/CommonProxy.java | 45 ++++++++++++++++ src/main/java/KubaTech/Config.java | 35 ++++++++++++ src/main/java/KubaTech/KubaTech.java | 91 ++++++++++++++++++++++++++++++++ src/main/java/KubaTech/Tags.java | 30 +++++++++++ src/main/java/kubaworks/ClientProxy.java | 57 -------------------- src/main/java/kubaworks/CommonProxy.java | 45 ---------------- src/main/java/kubaworks/Config.java | 35 ------------ src/main/java/kubaworks/MyMod.java | 91 -------------------------------- src/main/java/kubaworks/Tags.java | 30 ----------- src/main/resources/mcmod.info | 2 +- 11 files changed, 259 insertions(+), 259 deletions(-) create mode 100644 src/main/java/KubaTech/ClientProxy.java create mode 100644 src/main/java/KubaTech/CommonProxy.java create mode 100644 src/main/java/KubaTech/Config.java create mode 100644 src/main/java/KubaTech/KubaTech.java create mode 100644 src/main/java/KubaTech/Tags.java delete mode 100644 src/main/java/kubaworks/ClientProxy.java delete mode 100644 src/main/java/kubaworks/CommonProxy.java delete mode 100644 src/main/java/kubaworks/Config.java delete mode 100644 src/main/java/kubaworks/MyMod.java delete mode 100644 src/main/java/kubaworks/Tags.java (limited to 'src') diff --git a/src/main/java/KubaTech/ClientProxy.java b/src/main/java/KubaTech/ClientProxy.java new file mode 100644 index 0000000000..c38b754a62 --- /dev/null +++ b/src/main/java/KubaTech/ClientProxy.java @@ -0,0 +1,57 @@ +/* + * KubaTech - Gregtech Addon + * Copyright (C) 2022 kuba6000 + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +package KubaTech; + +import cpw.mods.fml.common.event.*; + +public class ClientProxy extends CommonProxy { + + public void preInit(FMLPreInitializationEvent event) { + super.preInit(event); + } + + public void init(FMLInitializationEvent event) { + super.init(event); + } + + public void postInit(FMLPostInitializationEvent event) { + super.postInit(event); + } + + public void serverAboutToStart(FMLServerAboutToStartEvent event) { + super.serverAboutToStart(event); + } + + public void serverStarting(FMLServerStartingEvent event) { + super.serverStarting(event); + } + + public void serverStarted(FMLServerStartedEvent event) { + super.serverStarted(event); + } + + public void serverStopping(FMLServerStoppingEvent event) { + super.serverStopping(event); + } + + public void serverStopped(FMLServerStoppedEvent event) { + super.serverStopped(event); + } +} diff --git a/src/main/java/KubaTech/CommonProxy.java b/src/main/java/KubaTech/CommonProxy.java new file mode 100644 index 0000000000..b510299c89 --- /dev/null +++ b/src/main/java/KubaTech/CommonProxy.java @@ -0,0 +1,45 @@ +/* + * KubaTech - Gregtech Addon + * Copyright (C) 2022 kuba6000 + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +package KubaTech; + +import cpw.mods.fml.common.event.*; + +public class CommonProxy { + + public void preInit(FMLPreInitializationEvent event) { + Config.syncronizeConfiguration(event.getSuggestedConfigurationFile()); + + KubaTech.info("I am " + Tags.MODNAME + " at version " + Tags.VERSION); + } + + public void init(FMLInitializationEvent event) {} + + public void postInit(FMLPostInitializationEvent event) {} + + public void serverAboutToStart(FMLServerAboutToStartEvent event) {} + + public void serverStarting(FMLServerStartingEvent event) {} + + public void serverStarted(FMLServerStartedEvent event) {} + + public void serverStopping(FMLServerStoppingEvent event) {} + + public void serverStopped(FMLServerStoppedEvent event) {} +} diff --git a/src/main/java/KubaTech/Config.java b/src/main/java/KubaTech/Config.java new file mode 100644 index 0000000000..51e689bf37 --- /dev/null +++ b/src/main/java/KubaTech/Config.java @@ -0,0 +1,35 @@ +/* + * KubaTech - Gregtech Addon + * Copyright (C) 2022 kuba6000 + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +package KubaTech; + +import java.io.File; +import net.minecraftforge.common.config.Configuration; + +public class Config { + + public static void syncronizeConfiguration(File configFile) { + Configuration configuration = new Configuration(configFile); + configuration.load(); + + if (configuration.hasChanged()) { + configuration.save(); + } + } +} diff --git a/src/main/java/KubaTech/KubaTech.java b/src/main/java/KubaTech/KubaTech.java new file mode 100644 index 0000000000..aa077a18ae --- /dev/null +++ b/src/main/java/KubaTech/KubaTech.java @@ -0,0 +1,91 @@ +/* + * KubaTech - Gregtech Addon + * Copyright (C) 2022 kuba6000 + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +package KubaTech; + +import cpw.mods.fml.common.Mod; +import cpw.mods.fml.common.SidedProxy; +import cpw.mods.fml.common.event.*; +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; + +@Mod(modid = Tags.MODID, version = Tags.VERSION, name = Tags.MODNAME, acceptedMinecraftVersions = "[1.7.10]") +public class KubaTech { + + private static Logger LOG = LogManager.getLogger(Tags.MODID); + + @SidedProxy(clientSide = Tags.MODID + ".ClientProxy", serverSide = Tags.MODID + ".CommonProxy") + public static CommonProxy proxy; + + @Mod.EventHandler + public void preInit(FMLPreInitializationEvent event) { + proxy.preInit(event); + } + + @Mod.EventHandler + public void init(FMLInitializationEvent event) { + proxy.init(event); + } + + @Mod.EventHandler + public void postInit(FMLPostInitializationEvent event) { + proxy.postInit(event); + } + + @Mod.EventHandler + public void serverAboutToStart(FMLServerAboutToStartEvent event) { + proxy.serverAboutToStart(event); + } + + @Mod.EventHandler + public void serverStarting(FMLServerStartingEvent event) { + proxy.serverStarting(event); + } + + @Mod.EventHandler + public void serverStarted(FMLServerStartedEvent event) { + proxy.serverStarted(event); + } + + @Mod.EventHandler + public void serverStopping(FMLServerStoppingEvent event) { + proxy.serverStopping(event); + } + + @Mod.EventHandler + public void serverStopped(FMLServerStoppedEvent event) { + proxy.serverStopped(event); + } + + public static void debug(String message) { + LOG.debug(message); + } + + public static void info(String message) { + LOG.info(message); + } + + public static void warn(String message) { + LOG.warn(message); + } + + public static void error(String message) { + LOG.error(message); + } +} diff --git a/src/main/java/KubaTech/Tags.java b/src/main/java/KubaTech/Tags.java new file mode 100644 index 0000000000..f9f1e066bf --- /dev/null +++ b/src/main/java/KubaTech/Tags.java @@ -0,0 +1,30 @@ +/* + * KubaTech - Gregtech Addon + * Copyright (C) 2022 kuba6000 + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +package KubaTech; + +// Use this class for Strings only. Do not import any classes here. It will lead to issues with Mixins if in use! + +public class Tags { + + // GRADLETOKEN_* will be replaced by your configuration values at build time + public static final String MODID = "GRADLETOKEN_MODID"; + public static final String MODNAME = "GRADLETOKEN_MODNAME"; + public static final String VERSION = "GRADLETOKEN_VERSION"; +} diff --git a/src/main/java/kubaworks/ClientProxy.java b/src/main/java/kubaworks/ClientProxy.java deleted file mode 100644 index 3f450eb803..0000000000 --- a/src/main/java/kubaworks/ClientProxy.java +++ /dev/null @@ -1,57 +0,0 @@ -/* - * kubaworks - Gregtech Addon - * Copyright (C) 2022 kuba6000 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - * - */ - -package kubaworks; - -import cpw.mods.fml.common.event.*; - -public class ClientProxy extends CommonProxy { - - public void preInit(FMLPreInitializationEvent event) { - super.preInit(event); - } - - public void init(FMLInitializationEvent event) { - super.init(event); - } - - public void postInit(FMLPostInitializationEvent event) { - super.postInit(event); - } - - public void serverAboutToStart(FMLServerAboutToStartEvent event) { - super.serverAboutToStart(event); - } - - public void serverStarting(FMLServerStartingEvent event) { - super.serverStarting(event); - } - - public void serverStarted(FMLServerStartedEvent event) { - super.serverStarted(event); - } - - public void serverStopping(FMLServerStoppingEvent event) { - super.serverStopping(event); - } - - public void serverStopped(FMLServerStoppedEvent event) { - super.serverStopped(event); - } -} diff --git a/src/main/java/kubaworks/CommonProxy.java b/src/main/java/kubaworks/CommonProxy.java deleted file mode 100644 index 2c6e7d9ddf..0000000000 --- a/src/main/java/kubaworks/CommonProxy.java +++ /dev/null @@ -1,45 +0,0 @@ -/* - * kubaworks - Gregtech Addon - * Copyright (C) 2022 kuba6000 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - * - */ - -package kubaworks; - -import cpw.mods.fml.common.event.*; - -public class CommonProxy { - - public void preInit(FMLPreInitializationEvent event) { - Config.syncronizeConfiguration(event.getSuggestedConfigurationFile()); - - MyMod.info("I am " + Tags.MODNAME + " at version " + Tags.VERSION); - } - - public void init(FMLInitializationEvent event) {} - - public void postInit(FMLPostInitializationEvent event) {} - - public void serverAboutToStart(FMLServerAboutToStartEvent event) {} - - public void serverStarting(FMLServerStartingEvent event) {} - - public void serverStarted(FMLServerStartedEvent event) {} - - public void serverStopping(FMLServerStoppingEvent event) {} - - public void serverStopped(FMLServerStoppedEvent event) {} -} diff --git a/src/main/java/kubaworks/Config.java b/src/main/java/kubaworks/Config.java deleted file mode 100644 index d0bcb0ebfd..0000000000 --- a/src/main/java/kubaworks/Config.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * kubaworks - Gregtech Addon - * Copyright (C) 2022 kuba6000 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - * - */ - -package kubaworks; - -import java.io.File; -import net.minecraftforge.common.config.Configuration; - -public class Config { - - public static void syncronizeConfiguration(File configFile) { - Configuration configuration = new Configuration(configFile); - configuration.load(); - - if (configuration.hasChanged()) { - configuration.save(); - } - } -} diff --git a/src/main/java/kubaworks/MyMod.java b/src/main/java/kubaworks/MyMod.java deleted file mode 100644 index 493a464412..0000000000 --- a/src/main/java/kubaworks/MyMod.java +++ /dev/null @@ -1,91 +0,0 @@ -/* - * kubaworks - Gregtech Addon - * Copyright (C) 2022 kuba6000 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - * - */ - -package kubaworks; - -import cpw.mods.fml.common.Mod; -import cpw.mods.fml.common.SidedProxy; -import cpw.mods.fml.common.event.*; -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; - -@Mod(modid = Tags.MODID, version = Tags.VERSION, name = Tags.MODNAME, acceptedMinecraftVersions = "[1.7.10]") -public class MyMod { - - private static Logger LOG = LogManager.getLogger(Tags.MODID); - - @SidedProxy(clientSide = Tags.MODID + ".ClientProxy", serverSide = Tags.MODID + ".CommonProxy") - public static CommonProxy proxy; - - @Mod.EventHandler - public void preInit(FMLPreInitializationEvent event) { - proxy.preInit(event); - } - - @Mod.EventHandler - public void init(FMLInitializationEvent event) { - proxy.init(event); - } - - @Mod.EventHandler - public void postInit(FMLPostInitializationEvent event) { - proxy.postInit(event); - } - - @Mod.EventHandler - public void serverAboutToStart(FMLServerAboutToStartEvent event) { - proxy.serverAboutToStart(event); - } - - @Mod.EventHandler - public void serverStarting(FMLServerStartingEvent event) { - proxy.serverStarting(event); - } - - @Mod.EventHandler - public void serverStarted(FMLServerStartedEvent event) { - proxy.serverStarted(event); - } - - @Mod.EventHandler - public void serverStopping(FMLServerStoppingEvent event) { - proxy.serverStopping(event); - } - - @Mod.EventHandler - public void serverStopped(FMLServerStoppedEvent event) { - proxy.serverStopped(event); - } - - public static void debug(String message) { - LOG.debug(message); - } - - public static void info(String message) { - LOG.info(message); - } - - public static void warn(String message) { - LOG.warn(message); - } - - public static void error(String message) { - LOG.error(message); - } -} diff --git a/src/main/java/kubaworks/Tags.java b/src/main/java/kubaworks/Tags.java deleted file mode 100644 index 4fd634c2ad..0000000000 --- a/src/main/java/kubaworks/Tags.java +++ /dev/null @@ -1,30 +0,0 @@ -/* - * kubaworks - Gregtech Addon - * Copyright (C) 2022 kuba6000 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - * - */ - -package kubaworks; - -// Use this class for Strings only. Do not import any classes here. It will lead to issues with Mixins if in use! - -public class Tags { - - // GRADLETOKEN_* will be replaced by your configuration values at build time - public static final String MODID = "GRADLETOKEN_MODID"; - public static final String MODNAME = "GRADLETOKEN_MODNAME"; - public static final String VERSION = "GRADLETOKEN_VERSION"; -} diff --git a/src/main/resources/mcmod.info b/src/main/resources/mcmod.info index 26ed4a538e..ccb9760f03 100644 --- a/src/main/resources/mcmod.info +++ b/src/main/resources/mcmod.info @@ -6,7 +6,7 @@ "description": "Gregtech addon.", "version": "${modVersion}", "mcversion": "${minecraftVersion}", - "url": "https://github.com/kuba6000/kubaworks", + "url": "https://github.com/kuba6000/KubaTech", "updateUrl": "", "authorList": ["kuba6000"], "credits": "", -- cgit