CrossTie 图标

CrossTie

作者:rebot | 分类:模组

价格:0 墨喵币 下载量:0 点赞:0 版本 1.0.0-Alpha9
本资源为搬运资源,原资源地址: https://modrinth.com/mod/crosstie
资源信息

Minecraft 版本: 1.7.10

平台: forge

标签: optimization

资源介绍

?️ CrossTie

Comprehensive optimization and compatibility patch Mod for RTM (RealTrainMod) on Minecraft 1.7.10.

日本語
English
한국어
简体中文
繁體中文


? Project Overview

CrossTie provides rendering load reduction, update frequency suppression, and compatibility fixes across multiple Mods—such as RTM / NGTLib / MCTE (KaizPatchX), Angelica, Bamboo, IntelliInput, GTNHLib, Hodgepodge, and LiteLoader / Macro / Keybind Mod—all within a single JAR.

? Auto-Detection: Target Mods are automatically detected at startup, and corresponding patches are enabled only if they are present.


? Status

Downloads(latest release)

? Environment & Build Status

Item Status / Version
Build Build
Modrinth Modrinth publish
Minecraft 1.7.10
Forge 10.13.4.1614
Java 8
Required Mod UniMixins 0.3.1+
Build System RetroFuturaGradle 1.4.1
Last Verified 2026-06-19

? Internal Structure Index


? Recommended Configuration

Recommended Mod versions for optimal performance.

Mod Name Recommended Version Category
CrossTie 1.0.0-Alpha6 Main
UniMixins 0.3.1 Required
KaizPatchX 1.10.0 Recommended
Angelica 2.1.42+ Recommended
GTNHLib 0.11.18+ Recommended
Hodgepodge 2.7.162+ Optional
ArchaicFix 0.8.0 Optional
ShaderFixer 5.4 Optional

⚡ What it does

CrossTie solves the following three core problems that occur between RTM-related Mods and performance-enhancing Mods.

  1. ? FPS Optimization
    • Rendering culling, update frequency suppression, and switching to immediate rendering.
  2. ⏳ TPS Optimization
    • Thinning updates for Entities and TileEntities.
  3. ? Compatibility Fixes
    • Resolving display list conflicts between Angelica and RTM.
    • Redirecting GL calls.
    • Avoiding class loader conflicts between Mods.

?️ Architecture

CrossTie features a 3-layer patch mechanism, intervening safely at the appropriate phase.

1. ASM CoreMod (CrossTieCorePlugin)

Runs as an IFMLLoadingPlugin in the earliest phase immediately after Minecraft starts.

  • ModDetector: Scans the mods/ folder and automatically detects installed Mods from JAR/ZIP/litemod filenames.
  • MinFo Detection + Angelica Auto-Adjustment: If MinFo is detected, it forcibly rewrites B:enableFontRenderer to false in config/angelica-modules.cfg.

2. ASM Class Transformer (CrossTieClassTransformer)

Directly rewrites bytecode during class loading, before the Mixin phase. This completely avoids "loading order issues" and MixinTargetAlreadyLoadedException that Mixins cannot handle.

Target Class / Method Content
GTNHLib 0.9.x MixinBlock_IconWrapper Redirects nhlib$getParticleIcon to GtnhLibIconCompat
Angelica CTM MixinRenderBlocks Redirects glass pane icon resolution (e.g., tweakPaneIcons) to AngelicaPaneIconCompat
MCPatcher GlassPaneRenderer Replaces setupIcons with return false
Hodgepodge StringPooler$GuavaPooler Replaces getString(s) with s.intern() (Avoids Guava class loader conflicts)
NGTLib/RTM ScriptUtil Replaces doScript(String) with ScriptUtilFallback.doScript(String) (Support for environments without Nashorn)
MacroMod MacroModPermissions Removes tamperCheck() calls from all methods
LiteLoader PermissionsManagerClient Makes tamperCheck() a no-op
SplashProgress$3 (SplashProgress$3) Injects GL state reset (GL_TEXTURE_2D + glColor4f) via reflection at the start of run()

3. Mixin (Dynamic Application)

CrossTieMixinPlugin dynamically applies only the necessary Mixins based on the detected installed Mods.

? Detailed list of Mixin applications per Mod (Click to expand) #### ? Angelica * **`AngelicaRenderGlobalDisplayListCrashMixin`** (Client + Angelica + `crosstie.enableNativeRenderGlobalDisplayLists=true`) * When rendering `hi03ExpressRailwayRail`, avoids Angelica's display lists and uses the legacy OpenGL path. * **`SplashProgressBlackoutFixMixin`** (Client + Angelica + `enableFontRenderer=false`) * Fixes texture state caching issues on the splash screen. #### ? GTNHLib * **`ObjectPoolerThreadSafeMixin`** (GTNHLib always) * Thread-safe object pooling. * **`MixinBlockPaneFix` / `MixinBlockPaneIconFallback` / `MixinBlockIconFallback`** (Client + GTNHLib) * Fixes icon display and retrieval fallbacks for glass panes and blocks. #### ? KaizPatchX (NGTScriptUtil / MCTE / RailMapCustom / NGTLib / RTM) * **`ScriptUtilInvocableCacheMixin`** (NGTScriptUtil) * Optimization of Invocable cache. * **`AngelicaScriptTransformCacheMixin`** (Client + Angelica + KaizPatch + NGTScriptUtil) * Intercepts `AngelicaCompat.transformScript` with `ScriptGlRedirector` (GL call redirection + caching). * **`ModelPackManagerScriptRedirectMixin`** (Client + Angelica + RTM + NGTScriptUtil) * Applies `ScriptGlRedirector` to `ModelPackManager.getScript`. * **`RailMapCustomCacheMixin`** (RailMapCustom) * Optimization of rail map cache. * **`McteWorldSetBlockDiffMixin`** (MCTE) * Optimization of world block difference sets. * **`RenderMiniatureDynamicLightMixin` / `RenderItemMiniatureDynamicLightMixin`** (Client + MCTE) * Fixes dynamic lighting for miniature blocks and miniature items. * **`EntityTrainBaseSpeedSyncMixin` / `EntityTrainBaseOptimizationMixin`** (RTM) * Optimization of train speed synchronization and entity updates. * **`RenderElectricalWiringConnectionCacheMixin` / `BlockLinePoleConnectionCacheMixin`** (Client + RTM) * Caching for wiring rendering and track pole connections. * **`RenderLargeRailOptimizationMixin` / `RenderLargeRailChunkBatchMixin`** (Client + RTM) * Optimization of large rail rendering and chunk batch processing. * **`RailPartsRendererOptimizationMixin`** (Client + RTM) * Optimization of rail parts renderer. #### ? LiteLoader / MacroMod * **`MixinPermissionsManagerClient` / `MacroModCoreMixin`** * Compatibility fixes for permissions and core.

? Supported Mod Details

Mod Detection Name Main Patch / Content
RealTrainMod RTM Rendering optimization, update thinning, GL redirection
NGTLib NGTLib / NGTScriptUtil ScriptUtil compatibility, GL redirection
MCTE MCTE Miniature rendering fixes, dynamic lighting
KaizPatch KaizPatch Angelica integration, script caching
Angelica Angelica / AngelicaGlsm Display list conflict fixes, auto-adjustment of settings
Bamboo Bamboo Rendering culling, update frequency suppression (backward compatibility)
IntelliInput IntelliInput IME callback stabilization (backward compatibility)
GTNHLib GTNHLib Icon resolution, thread-safety
Hodgepodge Hodgepodge Avoids Guava class loader conflicts
LiteLoader LiteLoader Permission management fixes
MacroMod MacroMod Removal of tamperCheck, permission fixes
Keybind Mod (Bundled detection) Removal of tamperCheck
RailMapCustom RailMapCustom Rail map cache

? Installation

  1. Place the downloaded CrossTie-*.jar into the mods folder.
  2. Place the required UniMixins 0.3.1+ into the mods folder.
  3. Depending on your needs, add target Mods such as RTM / Angelica / Bamboo / IntelliInput.
  4. Start the game normally.

?️ Build and Development

? Build Procedure


./gradlew build --no-daemon
下载太慢?试试 墨喵加速站,支持 Modrinth 和外网直链高速下载! 用的人越多,下载的越快!
下载与版本
评论(0)
登录 后发表评论。

暂无评论,抢个沙发吧~

举报此资源

请登录后举报

🔥 相关推荐
Chat-Stats

价格:0 墨喵币
下载量:0

查看详情
MISC3LLAN3OUS

价格:0 墨喵币
下载量:0

查看详情
Evangelium Modpack

价格:0 墨喵币
下载量:0

查看详情
wolf eyes

价格:0 墨喵币
下载量:0

查看详情