-
Notifications
You must be signed in to change notification settings - Fork 72
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
bb2d5fa
commit 15da1c2
Showing
357 changed files
with
5,066 additions
and
9,249 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "core"] | ||
path = core | ||
url = https://github.com/compactmods/compactmachines-core.git |
16 changes: 8 additions & 8 deletions
16
...machines/forge/compat/InterModCompat.java → 1.19.2-compat/InterModCompat.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
10 changes: 5 additions & 5 deletions
10
...s/forge/compat/carryon/CarryOnCompat.java → 1.19.2-compat/carryon/CarryOnCompat.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
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
4 changes: 2 additions & 2 deletions
4
...compat/theoneprobe/TheOneProbeCompat.java → ...compat/theoneprobe/TheOneProbeCompat.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
10 changes: 5 additions & 5 deletions
10
...e/compat/theoneprobe/TheOneProbeMain.java → ...2-compat/theoneprobe/TheOneProbeMain.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
2 changes: 1 addition & 1 deletion
2
...eprobe/elements/MachineTunnelElement.java → ...eprobe/elements/MachineTunnelElement.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
2 changes: 1 addition & 1 deletion
2
...eoneprobe/elements/PlayerFaceElement.java → ...eoneprobe/elements/PlayerFaceElement.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
8 changes: 4 additions & 4 deletions
8
...overrides/CompactMachineNameOverride.java → ...overrides/CompactMachineNameOverride.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
8 changes: 4 additions & 4 deletions
8
...obe/providers/CompactMachineProvider.java → ...obe/providers/CompactMachineProvider.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
8 changes: 4 additions & 4 deletions
8
...theoneprobe/providers/TunnelProvider.java → ...theoneprobe/providers/TunnelProvider.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
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,44 @@ | ||
# Contributing | ||
|
||
## Project Setup | ||
- Pull the main branch. | ||
- Initialize the git submodule `core`. | ||
- Let NeoGradle initialize everything. | ||
- Rebuild the main mod source, `neoforge-main`. You should get no errors. | ||
- Check the `Neoforge-main: Client` run configuration. | ||
|
||
## Temporary IDE run configuration fix | ||
Update the `MOD_CLASSES` environment variable. Right now there is a NG bug that causes prefixes to use project names, and not read the core project | ||
MANIFEST files correctly. In order to run the game, the generated prefixes for paths must change: | ||
|
||
It will generate something like this: (newlines and `PROJECT_ROOT_HERE` added for readability) | ||
``` | ||
MOD_CLASSES= | ||
compactmachines%%PROJECT_ROOT_HERE\neoforge-main\build\resources\main\; | ||
compactmachines%%PROJECT_ROOT_HERE\neoforge-main\build\classes\java\main\; | ||
core%%PROJECT_ROOT_HERE\core\core\build\resources\main\; | ||
core%%PROJECT_ROOT_HERE\core\core\build\classes\java\main\; | ||
room-api%%PROJECT_ROOT_HERE\core\room-api\build\resources\main\; | ||
room-api%%PROJECT_ROOT_HERE\core\room-api\build\classes\java\main\; | ||
room-upgrade-api%%PROJECT_ROOT_HERE\core\room-upgrade-api\build\resources\main\; | ||
room-upgrade-api%%PROJECT_ROOT_HERE\core\room-upgrade-api\build\classes\java\main\; | ||
core-api%%PROJECT_ROOT_HERE\core\core-api\build\resources\main\; | ||
core-api%%PROJECT_ROOT_HERE\core\core-api\build\classes\java\main | ||
``` | ||
|
||
You must change this to be: | ||
``` | ||
MOD_CLASSES= | ||
compactmachines%%PROJECT_ROOT_HERE\neoforge-main\build\resources\main\; | ||
compactmachines%%PROJECT_ROOT_HERE\neoforge-main\build\classes\java\main\; | ||
compactmachines%%PROJECT_ROOT_HERE\core\core\build\resources\main\; | ||
compactmachines%%PROJECT_ROOT_HERE\core\core\build\classes\java\main\; | ||
compactmachines%%PROJECT_ROOT_HERE\core\room-api\build\resources\main\; | ||
compactmachines%%PROJECT_ROOT_HERE\core\room-api\build\classes\java\main\; | ||
compactmachines%%PROJECT_ROOT_HERE\core\room-upgrade-api\build\resources\main\; | ||
compactmachines%%PROJECT_ROOT_HERE\core\room-upgrade-api\build\classes\java\main\; | ||
compactmachines%%PROJECT_ROOT_HERE\core\core-api\build\resources\main\; | ||
compactmachines%%PROJECT_ROOT_HERE\core\core-api\build\classes\java\main | ||
``` | ||
|
||
It is recommended to duplicate this profile after fixing it so it is not overridden accidentally. |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,4 @@ | ||
plugins { | ||
id("net.neoforged.gradle.common") version ("7.0.93") | ||
id("org.jetbrains.gradle.plugin.idea-ext") version ("1.1.7") | ||
} |
This file was deleted.
Oops, something went wrong.
37 changes: 0 additions & 37 deletions
37
forge-builtin/src/main/java/dev/compactmods/machines/forgebuiltin/CMBuiltInAddon.java
This file was deleted.
Oops, something went wrong.
29 changes: 0 additions & 29 deletions
29
forge-builtin/src/main/java/dev/compactmods/machines/forgebuiltin/tunnel/BuiltInTunnels.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.