-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update/mixinextras expressions (#2322)
* Fix #2278 1.20.5 requires Java 21 * Suppress `ReferenceToMixin` for `@Dynamic` (#2280) * Suppress `ReferenceToMixin` for `@Dynamic` * Fix formatting for `MixinClassCannotBeReferencedSuppressor` * Move logic to `MixinClassReferenceInspection` * Update NeoForge MDK Up until neoforged/MDK@6074a78 * Small adjustment to fabric's build.gradle template Following fabric-example-mod change for 1.20.5 * Version 1.7.5 * change error requirements from public to non-private (#2289) untested, I just used the web editor * Add NeoGradle version dropdown * NeoForge 1.20.5 template * Only show the 50 most recent NeoGradle versions * Allow dynamic selectors to choose the class to perform member lookups in (#2293) * * fix dynamic selector missing namespace when the selector declares it at registration * allow dynamic selectors to change the target class that is used when looking up members * move custom owner over to mixin selector * Add 2024.2 to readme * Fix typo It's late okay * New: Add support for `@WrapMethod` in MixinExtras. (#2300) * New: Support `WrongOperationParametersInspection` in `@WrapMethod`s. (#2303) * Minecraft 1.21 templates * Version 1.7.6 * fix: #2316 (#2317) * Initial support for NeoForge's ModDevGradle Mappings don't work currently, the TSRG file seems to contain indices to an array in another JSON file? * Improve fabric.mod.json entrypoints insight - Recognize entrypoints declared in object form - Add more conditions to the inspection - Add some tests to cover the inspection Fixes #2296 * MixinExtras Expressions: Migrate to Expressions library. * Fix: Resolve being unable to get the descriptor for some complex types. * MixinExtras Expressions: Recreate `ClassInfo#getCommonSuperClassOrInterface`. It's quite scuffed and often returns `Object` even when there is a suitable common interface, but what's important is that this matches the runtime logic. --------- Co-authored-by: RedNesto <[email protected]> Co-authored-by: senseiwells <[email protected]> Co-authored-by: 7410 <[email protected]> Co-authored-by: Bawnorton <[email protected]> Co-authored-by: Nel <[email protected]>
- Loading branch information
1 parent
5c1cd92
commit f652895
Showing
69 changed files
with
2,073 additions
and
171 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.