Skip to content

Commit

Permalink
更新多平台支持 (#3197)
Browse files Browse the repository at this point in the history
* update

* Update PLATFORM.md

* Update NativePatcher

* Update NativePatcher

* Update NativePatcher
  • Loading branch information
Glavo authored Jul 27, 2024
1 parent 74abeca commit 6f7c922
Show file tree
Hide file tree
Showing 4 changed files with 1,952 additions and 605 deletions.
24 changes: 23 additions & 1 deletion HMCL/src/main/java/org/jackhuang/hmcl/util/NativePatcher.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
* Hello Minecraft! Launcher
* Copyright (C) 2024 huangyuhui <huanghongxun2008@126.com> and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* 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 General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package org.jackhuang.hmcl.util;

import com.google.gson.reflect.TypeToken;
Expand All @@ -19,6 +36,9 @@

import static org.jackhuang.hmcl.util.logging.Logger.LOG;

/**
* @author Glavo
*/
public final class NativePatcher {
private NativePatcher() {
}
Expand Down Expand Up @@ -114,16 +134,18 @@ public static Version patchNative(Version version, String gameVersion, JavaVersi
if (library.isNative()) {
Library replacement = replacements.getOrDefault(library.getName() + ":natives", NONEXISTENT_LIBRARY);
if (replacement == NONEXISTENT_LIBRARY) {
LOG.warning("No alternative native library " + library.getName() + " provided for platform " + javaVersion.getPlatform());
LOG.warning("No alternative native library " + library.getName() + ":natives provided for platform " + javaVersion.getPlatform());
newLibraries.add(library);
} else if (replacement != null) {
LOG.info("Replace " + library.getName() + ":natives with " + replacement.getName());
newLibraries.add(replacement);
}
} else {
Library replacement = replacements.getOrDefault(library.getName(), NONEXISTENT_LIBRARY);
if (replacement == NONEXISTENT_LIBRARY) {
newLibraries.add(library);
} else if (replacement != null) {
LOG.info("Replace " + library.getName() + " with " + replacement.getName());
newLibraries.add(replacement);
}
}
Expand Down
Loading

0 comments on commit 6f7c922

Please sign in to comment.