-
Notifications
You must be signed in to change notification settings - Fork 186
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
Showing
102 changed files
with
4,358 additions
and
350 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
72 changes: 72 additions & 0 deletions
72
...om/demonwav/mcdev/platform/mcp/gradle/tooling/neogradle/NeoGradle7ModelBuilderImpl.groovy
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,72 @@ | ||
/* | ||
* Minecraft Development for IntelliJ | ||
* | ||
* https://mcdev.io/ | ||
* | ||
* Copyright (C) 2024 minecraft-dev | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Lesser General Public License as published | ||
* by the Free Software Foundation, version 3.0 only. | ||
* | ||
* 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 Lesser General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package com.demonwav.mcdev.platform.mcp.gradle.tooling.neogradle | ||
|
||
import com.demonwav.mcdev.platform.mcp.gradle.tooling.McpModelNG7 | ||
import org.gradle.api.Project | ||
import org.jetbrains.annotations.NotNull | ||
import org.jetbrains.plugins.gradle.tooling.ErrorMessageBuilder | ||
import org.jetbrains.plugins.gradle.tooling.ModelBuilderService | ||
|
||
final class NeoGradle7ModelBuilderImpl implements ModelBuilderService { | ||
|
||
@Override | ||
boolean canBuild(String modelName) { | ||
return McpModelNG7.name == modelName | ||
} | ||
|
||
@Override | ||
Object buildAll(String modelName, Project project) { | ||
def extension = project.extensions.findByName('minecraft') | ||
if (extension == null) { | ||
return null | ||
} | ||
|
||
if (!project.plugins.findPlugin("net.neoforged.gradle.userdev")) { | ||
return null | ||
} | ||
|
||
// NG userdev | ||
def runtimes = project.extensions.findByName('userDevRuntime').runtimes.get() | ||
def neoforgeVersion = null | ||
for (def entry in runtimes) { | ||
neoforgeVersion = entry.value.specification.forgeVersion | ||
break | ||
} | ||
if (neoforgeVersion == null) { | ||
return null | ||
} | ||
|
||
def mappingsFile = project.tasks.neoFormMergeMappings.output.get().asFile | ||
|
||
def accessTransformers = extension.accessTransformers.files.asList() | ||
|
||
//noinspection GroovyAssignabilityCheck | ||
return new NeoGradle7ModelImpl(neoforgeVersion, mappingsFile, accessTransformers) | ||
} | ||
|
||
@Override | ||
ErrorMessageBuilder getErrorMessageBuilder(@NotNull Project project, @NotNull Exception e) { | ||
return ErrorMessageBuilder.create( | ||
project, e, "MinecraftDev import errors" | ||
).withDescription("Unable to build MinecraftDev MCP project configuration") | ||
} | ||
} |
43 changes: 43 additions & 0 deletions
43
...roovy/com/demonwav/mcdev/platform/mcp/gradle/tooling/neogradle/NeoGradle7ModelImpl.groovy
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,43 @@ | ||
/* | ||
* Minecraft Development for IntelliJ | ||
* | ||
* https://mcdev.io/ | ||
* | ||
* Copyright (C) 2024 minecraft-dev | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Lesser General Public License as published | ||
* by the Free Software Foundation, version 3.0 only. | ||
* | ||
* 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 Lesser General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package com.demonwav.mcdev.platform.mcp.gradle.tooling.neogradle | ||
|
||
|
||
import com.demonwav.mcdev.platform.mcp.gradle.tooling.McpModelNG7 | ||
import groovy.transform.CompileStatic | ||
|
||
@CompileStatic | ||
final class NeoGradle7ModelImpl implements McpModelNG7, Serializable { | ||
|
||
final String neoForgeVersion | ||
final File mappingsFile | ||
final List<File> accessTransformers | ||
|
||
NeoGradle7ModelImpl( | ||
final String neoForgeVersion, | ||
final File mappingsFile, | ||
final List<File> accessTransformers | ||
) { | ||
this.neoForgeVersion = neoForgeVersion | ||
this.mappingsFile = mappingsFile | ||
this.accessTransformers = accessTransformers | ||
} | ||
} |
30 changes: 30 additions & 0 deletions
30
...le-tooling-extension/java/com/demonwav/mcdev/platform/mcp/gradle/tooling/McpModelNG7.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,30 @@ | ||
/* | ||
* Minecraft Development for IntelliJ | ||
* | ||
* https://mcdev.io/ | ||
* | ||
* Copyright (C) 2024 minecraft-dev | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Lesser General Public License as published | ||
* by the Free Software Foundation, version 3.0 only. | ||
* | ||
* 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 Lesser General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package com.demonwav.mcdev.platform.mcp.gradle.tooling; | ||
|
||
import java.io.File; | ||
import java.util.List; | ||
|
||
public interface McpModelNG7 { | ||
String getNeoForgeVersion(); | ||
File getMappingsFile(); | ||
List<File> getAccessTransformers(); | ||
} |
1 change: 1 addition & 0 deletions
1
...sion/resources/META-INF/services/org.jetbrains.plugins.gradle.tooling.ModelBuilderService
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,5 +1,6 @@ | ||
com.demonwav.mcdev.platform.mcp.gradle.tooling.archloom.ArchitecturyModelBuilderImpl | ||
com.demonwav.mcdev.platform.mcp.gradle.tooling.fabricloom.FabricLoomModelBuilderImpl | ||
com.demonwav.mcdev.platform.mcp.gradle.tooling.neogradle.NeoGradle7ModelBuilderImpl | ||
com.demonwav.mcdev.platform.mcp.gradle.tooling.vanillagradle.VanillaGradleModelBuilderImpl | ||
com.demonwav.mcdev.platform.mcp.gradle.tooling.McpModelFG2BuilderImpl | ||
com.demonwav.mcdev.platform.mcp.gradle.tooling.McpModelFG3BuilderImpl |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,8 @@ | |
|
||
package com.demonwav.mcdev.asset | ||
|
||
import com.intellij.util.IconUtil | ||
|
||
@Suppress("unused") | ||
object PlatformAssets : Assets() { | ||
val MINECRAFT_ICON = loadIcon("/assets/icons/platform/Minecraft.png") | ||
|
@@ -62,6 +64,9 @@ object PlatformAssets : Assets() { | |
val MIXIN_ICON_DARK = loadIcon("/assets/icons/platform/Mixins_dark.png") | ||
val MIXIN_ICON_2X_DARK = loadIcon("/assets/icons/platform/Mixins@2x_dark.png") | ||
|
||
val NEOFORGE_ICON = IconUtil.scale(loadIcon("/assets/icons/platform/NeoForge.png"), null, 0.125f) | ||
val NEOFORGE_ICON_2X = IconUtil.scale(loadIcon("/assets/icons/platform/NeoForge.png"), null, 0.25f) | ||
|
||
val MCP_ICON = loadIcon("/assets/icons/platform/MCP.png") | ||
val MCP_ICON_2X = loadIcon("/assets/icons/platform/[email protected]") | ||
val MCP_ICON_DARK = loadIcon("/assets/icons/platform/MCP_dark.png") | ||
|
Oops, something went wrong.