-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'refs/remotes/original/dev' into mixinex…
…tras-expression # Conflicts: # src/main/kotlin/platform/mixin/handlers/mixinextras/WrapOperationHandler.kt
- Loading branch information
Showing
60 changed files
with
1,921 additions
and
138 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
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
75 changes: 75 additions & 0 deletions
75
...monwav/mcdev/platform/mcp/gradle/tooling/neomoddev/NeoModDevGradleModelBuilderImpl.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,75 @@ | ||
/* | ||
* 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.neomoddev | ||
|
||
import com.demonwav.mcdev.platform.mcp.gradle.tooling.McpModelNMD | ||
import org.gradle.api.Project | ||
import org.jetbrains.annotations.NotNull | ||
import org.jetbrains.plugins.gradle.tooling.ErrorMessageBuilder | ||
import org.jetbrains.plugins.gradle.tooling.ModelBuilderService | ||
|
||
import java.nio.file.Files | ||
|
||
final class NeoModDevGradleModelBuilderImpl implements ModelBuilderService { | ||
|
||
@Override | ||
boolean canBuild(String modelName) { | ||
return McpModelNMD.name == modelName | ||
} | ||
|
||
@Override | ||
Object buildAll(String modelName, Project project) { | ||
def extension = project.extensions.findByName('neoForge') | ||
if (extension == null) { | ||
return null | ||
} | ||
|
||
if (!project.plugins.findPlugin("net.neoforged.moddev")) { | ||
return null | ||
} | ||
|
||
def neoforgeVersion = extension.version.get() | ||
if (neoforgeVersion == null) { | ||
return null | ||
} | ||
|
||
def accessTransformers = extension.accessTransformers.get().collect { project.file(it) } | ||
|
||
// Hacky way to guess where the mappings file is, but I could not find a proper way to find it | ||
def neoformDir = project.buildDir.toPath().resolve("neoForm") | ||
def mappingsFile = Files.list(neoformDir) | ||
.map { it.resolve("config/joined.tsrg") } | ||
.filter { Files.exists(it) } | ||
.findFirst() | ||
.orElse(null) | ||
?.toFile() | ||
|
||
//noinspection GroovyAssignabilityCheck | ||
return new NeoModDevGradleModelImpl(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
.../com/demonwav/mcdev/platform/mcp/gradle/tooling/neomoddev/NeoModDevGradleModelImpl.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.neomoddev | ||
|
||
|
||
import com.demonwav.mcdev.platform.mcp.gradle.tooling.McpModelNMD | ||
import groovy.transform.CompileStatic | ||
|
||
@CompileStatic | ||
final class NeoModDevGradleModelImpl implements McpModelNMD, Serializable { | ||
|
||
final String neoForgeVersion | ||
final File mappingsFile | ||
final List<File> accessTransformers | ||
|
||
NeoModDevGradleModelImpl( | ||
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/McpModelNMD.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 McpModelNMD { | ||
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,6 +1,7 @@ | ||
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.neomoddev.NeoModDevGradleModelBuilderImpl | ||
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
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
Oops, something went wrong.