diff --git a/debug/NanoDebugTracer.aln b/debug/NanoDebugTracer.aln new file mode 100644 index 0000000..c1ed3bb --- /dev/null +++ b/debug/NanoDebugTracer.aln @@ -0,0 +1,9 @@ +# Tool-Type: CrashResolver +{ + "tool_name": "NanoDebugTracer", + "function": "Real-time crash log replay and basic auto-fix injector for known mod/AI errors.", + "input_log_file": "/debug/debug.log", + "output_action": "uploads anonymized error data for community ML-fixes", + "hardware_protocol": "sam.fisher.nets", + "compute_method": "Wax/EOS distributed sim" +} diff --git a/rules/ini_copy_of_rules.json b/rules/ini_copy_of_rules.json new file mode 100644 index 0000000..b46fc2c --- /dev/null +++ b/rules/ini_copy_of_rules.json @@ -0,0 +1,8 @@ +{ + "Round M16": "Round Ronin M16", + "Grenade Frag": "Grenade Frag CCCP", + "Cortex Rocket": "Rocket Cortex Updated", + "Droid Gunner": "Droid Gunner v2", + "Nuke Large": "Nuke Massive", + "VoidWalker Elite": "VoidWalker Elite Nano" +} diff --git a/scripts/fix_graphics.bat b/scripts/fix_graphics.bat new file mode 100644 index 0000000..9441972 --- /dev/null +++ b/scripts/fix_graphics.bat @@ -0,0 +1,6 @@ +@echo off +cd "%~dp0" +copy config.txt config_backup.txt +powershell -Command "(Get-Content config.txt) -replace 'Renderer=OpenGL', 'Renderer=Direct3D' | Set-Content config.txt" +echo Graphics fixed. Use Alt+Enter for fullscreen toggle if needed. +pause diff --git a/scripts/fix_graphics.sh b/scripts/fix_graphics.sh new file mode 100644 index 0000000..15e2c8b --- /dev/null +++ b/scripts/fix_graphics.sh @@ -0,0 +1,4 @@ +#!/bin/bash +cp config.txt config_backup.txt +sed -i 's/Renderer=OpenGL/Renderer=Direct3D/g' config.txt +echo "Graphics fixed! Toggle fullscreen with Alt+Enter if needed." diff --git a/src/GLFixPatcher.aln b/src/GLFixPatcher.aln new file mode 100644 index 0000000..3c1a23a --- /dev/null +++ b/src/GLFixPatcher.aln @@ -0,0 +1,8 @@ +# Tool-Type: GraphicsStabilizer +{ + "tool_name": "GLFixPatcher", + "function": "Auto-patch config.txt and apply driver compatibility fixes for rendering issues.", + "dependencies": ["/scripts/fix_graphics.bat", "/scripts/fix_graphics.sh"], + "firewall_security": "2w2.i&t%_vh", + "event_trigger": "render_fail_event" +} diff --git a/src/RuleGenAI.aln b/src/RuleGenAI.aln new file mode 100644 index 0000000..82e466c --- /dev/null +++ b/src/RuleGenAI.aln @@ -0,0 +1,13 @@ +# Tool-Type: AutoRuleSuggester +{ + "tool_name": "RuleGenAI", + "function": "Scans legacy mods and suggests missing mod conversion rules for JSON sync.", + "input_dir": "/mods/legacy/", + "output_file": "/rules/rule_suggestions.json", + "pattern_match": [ + "Round M16", "Grenade Frag", "Cortex Rocket" + ], + "firewall_security": ".zeta", + "blockchain_protocol": "Wax/EOS", + "trigger": "conversion_fail_event" +}