generated from neoforged/MDK
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dea9193
commit 6cbce5d
Showing
11 changed files
with
191 additions
and
237 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,3 @@ | ||
# Just Dire Things | ||
|
||
Installation information | ||
======= | ||
|
||
This template repository can be directly cloned to get you started with a new | ||
mod. Simply create a new repository cloned from this one, by following the | ||
instructions at [github](https://docs.github.com/en/repositories/creating-and-managing-repositories/creating-a-repository-from-a-template). | ||
|
||
Once you have your clone, simply open the repository in the IDE of your choice. The usual recommendation for an IDE is either IntelliJ IDEA or Eclipse. | ||
|
||
> **Note**: For Eclipse, use tasks in `Launch Group` instead of ones founds in `Java Application`. A preparation task must run before launching the game. NeoGradle uses launch groups to do these subsequently. | ||
If at any point you are missing libraries in your IDE, or you've run into problems you can | ||
run `gradlew --refresh-dependencies` to refresh the local cache. `gradlew clean` to reset everything | ||
{this does not affect your code} and then start the process again. | ||
|
||
Mapping Names: | ||
============ | ||
By default, the MDK is configured to use the official mapping names from Mojang for methods and fields | ||
in the Minecraft codebase. These names are covered by a specific license. All modders should be aware of this | ||
license, if you do not agree with it you can change your mapping names to other crowdsourced names in your | ||
build.gradle. For the latest license text, refer to the mapping file itself, or the reference copy here: | ||
https://github.com/NeoForged/NeoForm/blob/main/Mojang.md | ||
|
||
Additional Resources: | ||
========== | ||
Community Documentation: https://docs.neoforged.net/ | ||
NeoForged Discord: https://discord.neoforged.net/ | ||
Just some things Direwolf20 wanted to have... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
src/main/java/com/direwolf20/justdirethings/JustDireThings.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package com.direwolf20.justdirethings; | ||
|
||
import com.direwolf20.justdirethings.setup.ClientSetup; | ||
import com.direwolf20.justdirethings.setup.Config; | ||
import com.direwolf20.justdirethings.setup.ModSetup; | ||
import com.direwolf20.justdirethings.setup.Registration; | ||
import com.mojang.logging.LogUtils; | ||
import net.neoforged.bus.api.IEventBus; | ||
import net.neoforged.fml.common.Mod; | ||
import net.neoforged.fml.loading.FMLLoader; | ||
import org.slf4j.Logger; | ||
|
||
// The value here should match an entry in the META-INF/mods.toml file | ||
@Mod(JustDireThings.MODID) | ||
public class JustDireThings { | ||
public static final String MODID = "justdirethings"; | ||
private static final Logger LOGGER = LogUtils.getLogger(); | ||
|
||
public JustDireThings(IEventBus modEventBus) { | ||
|
||
Registration.init(modEventBus); | ||
Config.register(); | ||
ModSetup.CREATIVE_MODE_TABS.register(modEventBus); | ||
|
||
if (FMLLoader.getDist().isClient()) { | ||
modEventBus.addListener(ClientSetup::init); | ||
} | ||
} | ||
} |
31 changes: 31 additions & 0 deletions
31
src/main/java/com/direwolf20/justdirethings/setup/ClientSetup.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
package com.direwolf20.justdirethings.setup; | ||
|
||
|
||
import com.direwolf20.justdirethings.JustDireThings; | ||
import net.neoforged.api.distmarker.Dist; | ||
import net.neoforged.bus.api.SubscribeEvent; | ||
import net.neoforged.fml.common.Mod; | ||
import net.neoforged.fml.event.lifecycle.FMLClientSetupEvent; | ||
import net.neoforged.neoforge.client.event.EntityRenderersEvent; | ||
|
||
@Mod.EventBusSubscriber(modid = JustDireThings.MODID, value = Dist.CLIENT, bus = Mod.EventBusSubscriber.Bus.MOD) | ||
public class ClientSetup { | ||
public static void init(final FMLClientSetupEvent event) { | ||
//NeoForge.EVENT_BUS.addListener(KeyBindings::onClientInput); | ||
|
||
//Register our Render Events Class | ||
//NeoForge.EVENT_BUS.register(RenderLevelLast.class); | ||
//NeoForge.EVENT_BUS.register(EventKeyInput.class); | ||
|
||
//Screens | ||
/*event.enqueueWork(() -> { | ||
MenuScreens.register(Registration.TemplateManager_Container.get(), TemplateManagerGUI::new); // Attach our container to the screen | ||
});*/ | ||
} | ||
|
||
@SubscribeEvent | ||
public static void registerRenderers(EntityRenderersEvent.RegisterRenderers event) { | ||
//Register Block Entity Renders | ||
//event.registerBlockEntityRenderer(Registration.RenderBlock_BE.get(), RenderBlockBER::new); | ||
} | ||
} |
41 changes: 41 additions & 0 deletions
41
src/main/java/com/direwolf20/justdirethings/setup/Config.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
package com.direwolf20.justdirethings.setup; | ||
|
||
import net.neoforged.fml.ModLoadingContext; | ||
import net.neoforged.fml.config.ModConfig; | ||
import net.neoforged.neoforge.common.ModConfigSpec; | ||
|
||
public class Config { | ||
public static final ModConfigSpec.Builder CLIENT_BUILDER = new ModConfigSpec.Builder(); | ||
public static final ModConfigSpec.Builder COMMON_BUILDER = new ModConfigSpec.Builder(); | ||
public static final ModConfigSpec.Builder SERVER_BUILDER = new ModConfigSpec.Builder(); | ||
|
||
public static final String CATEGORY_GENERAL = "general"; | ||
|
||
public static void register() { | ||
//registerServerConfigs(); | ||
registerCommonConfigs(); | ||
//registerClientConfigs(); | ||
} | ||
|
||
private static void registerClientConfigs() { | ||
|
||
ModLoadingContext.get().registerConfig(ModConfig.Type.CLIENT, CLIENT_BUILDER.build()); | ||
} | ||
|
||
private static void registerCommonConfigs() { | ||
COMMON_BUILDER.comment("General settings").push(CATEGORY_GENERAL); | ||
generalConfig(); | ||
COMMON_BUILDER.pop(); | ||
|
||
ModLoadingContext.get().registerConfig(ModConfig.Type.COMMON, COMMON_BUILDER.build()); | ||
} | ||
|
||
private static void registerServerConfigs() { | ||
|
||
ModLoadingContext.get().registerConfig(ModConfig.Type.SERVER, SERVER_BUILDER.build()); | ||
} | ||
|
||
private static void generalConfig() { | ||
|
||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
src/main/java/com/direwolf20/justdirethings/setup/ModSetup.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package com.direwolf20.justdirethings.setup; | ||
|
||
import net.minecraft.core.registries.Registries; | ||
import net.minecraft.network.chat.Component; | ||
import net.minecraft.world.item.CreativeModeTab; | ||
import net.minecraft.world.item.CreativeModeTabs; | ||
import net.minecraft.world.item.Item; | ||
import net.minecraft.world.item.Items; | ||
import net.neoforged.neoforge.registries.DeferredHolder; | ||
import net.neoforged.neoforge.registries.DeferredRegister; | ||
|
||
import static com.direwolf20.justdirethings.JustDireThings.MODID; | ||
|
||
public class ModSetup { | ||
public static final DeferredRegister<CreativeModeTab> CREATIVE_MODE_TABS = DeferredRegister.create(Registries.CREATIVE_MODE_TAB, MODID); | ||
public static final DeferredHolder<CreativeModeTab, CreativeModeTab> TAB_JUSTDIRETHINGS = CREATIVE_MODE_TABS.register(MODID, () -> CreativeModeTab.builder() | ||
.title(Component.literal("Just Dire Things")) | ||
.withTabsBefore(CreativeModeTabs.SPAWN_EGGS) | ||
.icon(() -> Items.DIRT.getDefaultInstance()) //Todo Proper Item | ||
.displayItems((parameters, output) -> { | ||
Registration.ITEMS.getEntries().forEach(e -> { | ||
Item item = e.get(); | ||
output.accept(item); | ||
}); | ||
}).build()); | ||
|
||
} |
23 changes: 23 additions & 0 deletions
23
src/main/java/com/direwolf20/justdirethings/setup/Registration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package com.direwolf20.justdirethings.setup; | ||
|
||
import net.minecraft.core.registries.Registries; | ||
import net.minecraft.world.inventory.MenuType; | ||
import net.minecraft.world.level.block.entity.BlockEntityType; | ||
import net.neoforged.bus.api.IEventBus; | ||
import net.neoforged.neoforge.registries.DeferredRegister; | ||
|
||
import static com.direwolf20.justdirethings.JustDireThings.MODID; | ||
|
||
public class Registration { | ||
public static final DeferredRegister.Blocks BLOCKS = DeferredRegister.createBlocks(MODID); | ||
public static final DeferredRegister.Items ITEMS = DeferredRegister.createItems(MODID); | ||
private static final DeferredRegister<BlockEntityType<?>> BLOCK_ENTITIES = DeferredRegister.create(Registries.BLOCK_ENTITY_TYPE, MODID); | ||
private static final DeferredRegister<MenuType<?>> CONTAINERS = DeferredRegister.create(Registries.MENU, MODID); | ||
|
||
public static void init(IEventBus eventBus) { | ||
BLOCKS.register(eventBus); | ||
ITEMS.register(eventBus); | ||
BLOCK_ENTITIES.register(eventBus); | ||
CONTAINERS.register(eventBus); | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.