├── .github └── workflows │ └── msbuild.yml ├── .gitignore ├── DEVELOPMENT.md ├── README.md ├── common ├── IArchive.cpp ├── IArchive.h ├── IBufferStream.cpp ├── IBufferStream.h ├── IConsole.cpp ├── IConsole.h ├── ICriticalSection.h ├── IDataStream.cpp ├── IDataStream.h ├── IDatabase.cpp ├── IDatabase.h ├── IDatabase.inc ├── IDebugLog.cpp ├── IDebugLog.h ├── IDirectoryIterator.cpp ├── IDirectoryIterator.h ├── IDynamicCreate.cpp ├── IDynamicCreate.h ├── IErrors.cpp ├── IErrors.h ├── IEvent.cpp ├── IEvent.h ├── IFIFO.cpp ├── IFIFO.h ├── IFileStream.cpp ├── IFileStream.h ├── IInterlockedLong.cpp ├── IInterlockedLong.h ├── ILinkedList.h ├── IMemPool.cpp ├── IMemPool.h ├── IMutex.cpp ├── IMutex.h ├── IObjectPool.cpp ├── IObjectPool.h ├── IPipeClient.cpp ├── IPipeClient.h ├── IPipeServer.cpp ├── IPipeServer.h ├── IPrefix.cpp ├── IPrefix.h ├── IRangeMap.cpp ├── IRangeMap.h ├── IReadWriteLock.cpp ├── IReadWriteLock.h ├── ISegmentStream.cpp ├── ISegmentStream.h ├── ISingleton.cpp ├── ISingleton.h ├── ITextParser.cpp ├── ITextParser.h ├── IThread.cpp ├── IThread.h ├── ITimer.cpp ├── ITimer.h ├── ITypes.cpp ├── ITypes.h ├── common.vcproj ├── common_license.txt ├── common_vc9.vcproj ├── common_vc9.vcxproj └── common_vc9.vcxproj.filters ├── nvse ├── Algohol │ ├── algMath.cpp │ ├── algMath.h │ ├── algTypes.h │ ├── license.txt │ ├── paramTypes.cpp │ └── paramTypes.h ├── loader_common │ ├── Error.cpp │ ├── Error.h │ ├── IdentifyEXE.cpp │ ├── IdentifyEXE.h │ ├── PluginChecker.cpp │ ├── PluginChecker.h │ ├── loader_common.vcproj │ └── loader_common.vcxproj ├── nvse.sln ├── nvse │ ├── ArrayVar.cpp │ ├── ArrayVar.h │ ├── ArrayVarElementContainer.cpp │ ├── CachedScripts.cpp │ ├── CachedScripts.h │ ├── CommandTable.cpp │ ├── CommandTable.h │ ├── Commands_Array.cpp │ ├── Commands_Array.h │ ├── Commands_Console.cpp │ ├── Commands_Console.h │ ├── Commands_Factions.cpp │ ├── Commands_Factions.h │ ├── Commands_Game.cpp │ ├── Commands_Game.h │ ├── Commands_Input.cpp │ ├── Commands_Input.h │ ├── Commands_Inventory.cpp │ ├── Commands_Inventory.h │ ├── Commands_InventoryRef.cpp │ ├── Commands_InventoryRef.h │ ├── Commands_List.cpp │ ├── Commands_List.h │ ├── Commands_Math.cpp │ ├── Commands_Math.h │ ├── Commands_Misc.cpp │ ├── Commands_Misc.h │ ├── Commands_MiscRef.cpp │ ├── Commands_MiscRef.h │ ├── Commands_NetImmerse.cpp │ ├── Commands_NetImmerse.h │ ├── Commands_Packages.cpp │ ├── Commands_Packages.h │ ├── Commands_Quest.cpp │ ├── Commands_Quest.h │ ├── Commands_Script.cpp │ ├── Commands_Script.h │ ├── Commands_Scripting.cpp │ ├── Commands_Scripting.h │ ├── Commands_String.cpp │ ├── Commands_String.h │ ├── Commands_UI.cpp │ ├── Commands_UI.h │ ├── Core_Serialization.cpp │ ├── Core_Serialization.h │ ├── DebuggerVisualizations.natvis │ ├── EventManager.cpp │ ├── EventManager.h │ ├── EventParams.h │ ├── FastStack.h │ ├── FormExtraData.cpp │ ├── FormExtraData.h │ ├── FunctionScripts.cpp │ ├── FunctionScripts.h │ ├── GameAPI.cpp │ ├── GameAPI.h │ ├── GameBSExtraData.cpp │ ├── GameBSExtraData.h │ ├── GameData.cpp │ ├── GameData.h │ ├── GameEffects.h │ ├── GameExtraData.cpp │ ├── GameExtraData.h │ ├── GameForms.cpp │ ├── GameForms.h │ ├── GameOSDepend.cpp │ ├── GameOSDepend.h │ ├── GameObjects.cpp │ ├── GameObjects.h │ ├── GameProcess.cpp │ ├── GameProcess.h │ ├── GameRTTI.cpp │ ├── GameRTTI.h │ ├── GameRTTI_1_4_0_525.inc │ ├── GameRTTI_1_4_0_525ng.inc │ ├── GameRTTI_EDITOR.inc │ ├── GameScript.cpp │ ├── GameScript.h │ ├── GameSettings.cpp │ ├── GameSettings.h │ ├── GameTasks.cpp │ ├── GameTasks.h │ ├── GameTiles.cpp │ ├── GameTiles.h │ ├── GameTypes.cpp │ ├── GameTypes.h │ ├── GameUI.cpp │ ├── GameUI.h │ ├── Hooks_Animation.cpp │ ├── Hooks_Animation.h │ ├── Hooks_CreatedObject.cpp │ ├── Hooks_CreatedObject.h │ ├── Hooks_Dialog.cpp │ ├── Hooks_Dialog.h │ ├── Hooks_DirectInput8Create.cpp │ ├── Hooks_DirectInput8Create.h │ ├── Hooks_Editor.cpp │ ├── Hooks_Editor.h │ ├── Hooks_Gameplay.cpp │ ├── Hooks_Gameplay.h │ ├── Hooks_Logging.cpp │ ├── Hooks_Logging.h │ ├── Hooks_Memory.cpp │ ├── Hooks_Memory.h │ ├── Hooks_Other.cpp │ ├── Hooks_Other.h │ ├── Hooks_SaveLoad.cpp │ ├── Hooks_SaveLoad.h │ ├── Hooks_Script.cpp │ ├── Hooks_Script.h │ ├── InventoryInfo.cpp │ ├── InventoryInfo.h │ ├── InventoryRef.cpp │ ├── InventoryRef.h │ ├── InventoryReference.cpp │ ├── InventoryReference.h │ ├── LambdaManager.cpp │ ├── LambdaManager.h │ ├── Loops.cpp │ ├── Loops.h │ ├── MemoizedMap.h │ ├── MemoryPool.cpp │ ├── MemoryPool.h │ ├── MemoryTracker.h │ ├── NVSEAst.h │ ├── NVSECompiler.cpp │ ├── NVSECompiler.h │ ├── NVSECompilerUtils.cpp │ ├── NVSECompilerUtils.h │ ├── NVSELexer.cpp │ ├── NVSELexer.h │ ├── NVSEParser.cpp │ ├── NVSEParser.h │ ├── NVSEScope.h │ ├── NVSETreePrinter.cpp │ ├── NVSETreePrinter.h │ ├── NVSETypeChecker.cpp │ ├── NVSETypeChecker.h │ ├── NVSEVisitor.h │ ├── NiNodes.cpp │ ├── NiNodes.h │ ├── NiObjects.cpp │ ├── NiObjects.h │ ├── NiPoint.h │ ├── NiTypes.cpp │ ├── NiTypes.h │ ├── OverloadsGlobal.cpp │ ├── ParamInfos.h │ ├── PluginAPI.h │ ├── PluginManager.cpp │ ├── PluginManager.h │ ├── SafeWrite.cpp │ ├── SafeWrite.h │ ├── ScriptAnalyzer.cpp │ ├── ScriptAnalyzer.h │ ├── ScriptTokenCache.cpp │ ├── ScriptTokenCache.h │ ├── ScriptTokens.cpp │ ├── ScriptTokens.h │ ├── ScriptUtils.cpp │ ├── ScriptUtils.h │ ├── Serialization.cpp │ ├── Serialization.h │ ├── SmallObjectsAllocator.h │ ├── StackVariables.cpp │ ├── StackVariables.h │ ├── StackVector.h │ ├── StringVar.cpp │ ├── StringVar.h │ ├── ThreadLocal.cpp │ ├── ThreadLocal.h │ ├── UnitTests.cpp │ ├── UnitTests.h │ ├── Utilities.cpp │ ├── Utilities.h │ ├── VarMap.h │ ├── commands_Algohol.cpp │ ├── commands_Algohol.h │ ├── containers.cpp │ ├── containers.h │ ├── exports.def │ ├── nvse.cpp │ ├── nvse.vcproj │ ├── nvse.vcxproj │ ├── nvse.vcxproj.filters │ ├── nvse_version.h │ ├── nvse_version.rc │ ├── prefix.h │ ├── printf.cpp │ ├── printf.h │ ├── rewrites.h │ ├── unit_tests │ │ ├── new_compiler │ │ │ ├── binary_operations.txt │ │ │ ├── call_test.txt │ │ │ ├── comments.txt │ │ │ ├── disabled │ │ │ │ └── in_operator_syntax.txt │ │ │ ├── for_loops.txt │ │ │ ├── foreachalt.txt │ │ │ ├── misc.txt │ │ │ ├── stack_vars.txt │ │ │ ├── ternary_operations.txt │ │ │ ├── udfs │ │ │ │ └── TestUDF.txt │ │ │ └── unary_operations.txt │ │ └── old_compiler │ │ │ ├── CallAfterFrames.txt │ │ │ ├── TestExpr.txt │ │ │ ├── array_functions.txt │ │ │ ├── conversions_between_num_and_string.txt │ │ │ ├── event_handler_functions.txt │ │ │ ├── event_handler_priority_system.txt │ │ │ ├── let_macro.txt │ │ │ ├── multi_arg_command_trailing_boundary.txt │ │ │ ├── multiple_variable_declarations_macro.txt │ │ │ ├── short_and_long_param_types_in_UDF.txt │ │ │ ├── strings_and_parentheses.txt │ │ │ └── udf_functions.txt │ ├── utility.cpp │ └── utility.h ├── nvse_loader │ ├── Inject.cpp │ ├── Inject.h │ ├── Options.cpp │ ├── Options.h │ ├── main.cpp │ ├── nvse_loader.ico │ ├── nvse_loader.vcproj │ ├── nvse_loader.vcxproj │ └── resources.rc └── steam_loader │ ├── PluginPreload.h │ ├── main.cpp │ ├── steam_loader.vcproj │ ├── steam_loader.vcxproj │ └── steam_loader.vcxproj.filters └── nvse_plugin_example ├── dllmain.c ├── exports.def ├── fn_intro_to_script_functions.h ├── fn_typed_functions.h ├── main.cpp ├── nvse_plugin_example.sln ├── nvse_plugin_example.vcproj ├── nvse_plugin_example.vcxproj └── nvse_plugin_example.vcxproj.filters /.github/workflows/msbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/.github/workflows/msbuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/.gitignore -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/README.md -------------------------------------------------------------------------------- /common/IArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IArchive.cpp -------------------------------------------------------------------------------- /common/IArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IArchive.h -------------------------------------------------------------------------------- /common/IBufferStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IBufferStream.cpp -------------------------------------------------------------------------------- /common/IBufferStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IBufferStream.h -------------------------------------------------------------------------------- /common/IConsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IConsole.cpp -------------------------------------------------------------------------------- /common/IConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IConsole.h -------------------------------------------------------------------------------- /common/ICriticalSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/ICriticalSection.h -------------------------------------------------------------------------------- /common/IDataStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IDataStream.cpp -------------------------------------------------------------------------------- /common/IDataStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IDataStream.h -------------------------------------------------------------------------------- /common/IDatabase.cpp: -------------------------------------------------------------------------------- 1 | #include "IDatabase.h" 2 | -------------------------------------------------------------------------------- /common/IDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IDatabase.h -------------------------------------------------------------------------------- /common/IDatabase.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IDatabase.inc -------------------------------------------------------------------------------- /common/IDebugLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IDebugLog.cpp -------------------------------------------------------------------------------- /common/IDebugLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IDebugLog.h -------------------------------------------------------------------------------- /common/IDirectoryIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IDirectoryIterator.cpp -------------------------------------------------------------------------------- /common/IDirectoryIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IDirectoryIterator.h -------------------------------------------------------------------------------- /common/IDynamicCreate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IDynamicCreate.cpp -------------------------------------------------------------------------------- /common/IDynamicCreate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IDynamicCreate.h -------------------------------------------------------------------------------- /common/IErrors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IErrors.cpp -------------------------------------------------------------------------------- /common/IErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IErrors.h -------------------------------------------------------------------------------- /common/IEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IEvent.cpp -------------------------------------------------------------------------------- /common/IEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IEvent.h -------------------------------------------------------------------------------- /common/IFIFO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IFIFO.cpp -------------------------------------------------------------------------------- /common/IFIFO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IFIFO.h -------------------------------------------------------------------------------- /common/IFileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IFileStream.cpp -------------------------------------------------------------------------------- /common/IFileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IFileStream.h -------------------------------------------------------------------------------- /common/IInterlockedLong.cpp: -------------------------------------------------------------------------------- 1 | #include "IInterlockedLong.h" 2 | 3 | // all functions are inlined 4 | -------------------------------------------------------------------------------- /common/IInterlockedLong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IInterlockedLong.h -------------------------------------------------------------------------------- /common/ILinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/ILinkedList.h -------------------------------------------------------------------------------- /common/IMemPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IMemPool.cpp -------------------------------------------------------------------------------- /common/IMemPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IMemPool.h -------------------------------------------------------------------------------- /common/IMutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IMutex.cpp -------------------------------------------------------------------------------- /common/IMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IMutex.h -------------------------------------------------------------------------------- /common/IObjectPool.cpp: -------------------------------------------------------------------------------- 1 | #include "common/IObjectPool.h" 2 | -------------------------------------------------------------------------------- /common/IObjectPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IObjectPool.h -------------------------------------------------------------------------------- /common/IPipeClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IPipeClient.cpp -------------------------------------------------------------------------------- /common/IPipeClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IPipeClient.h -------------------------------------------------------------------------------- /common/IPipeServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IPipeServer.cpp -------------------------------------------------------------------------------- /common/IPipeServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IPipeServer.h -------------------------------------------------------------------------------- /common/IPrefix.cpp: -------------------------------------------------------------------------------- 1 | #include "IPrefix.h" 2 | -------------------------------------------------------------------------------- /common/IPrefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IPrefix.h -------------------------------------------------------------------------------- /common/IRangeMap.cpp: -------------------------------------------------------------------------------- 1 | #include "IRangeMap.h" 2 | -------------------------------------------------------------------------------- /common/IRangeMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IRangeMap.h -------------------------------------------------------------------------------- /common/IReadWriteLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IReadWriteLock.cpp -------------------------------------------------------------------------------- /common/IReadWriteLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IReadWriteLock.h -------------------------------------------------------------------------------- /common/ISegmentStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/ISegmentStream.cpp -------------------------------------------------------------------------------- /common/ISegmentStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/ISegmentStream.h -------------------------------------------------------------------------------- /common/ISingleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/ISingleton.cpp -------------------------------------------------------------------------------- /common/ISingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/ISingleton.h -------------------------------------------------------------------------------- /common/ITextParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/ITextParser.cpp -------------------------------------------------------------------------------- /common/ITextParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/ITextParser.h -------------------------------------------------------------------------------- /common/IThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IThread.cpp -------------------------------------------------------------------------------- /common/IThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/IThread.h -------------------------------------------------------------------------------- /common/ITimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/ITimer.cpp -------------------------------------------------------------------------------- /common/ITimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/ITimer.h -------------------------------------------------------------------------------- /common/ITypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/ITypes.cpp -------------------------------------------------------------------------------- /common/ITypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/ITypes.h -------------------------------------------------------------------------------- /common/common.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/common.vcproj -------------------------------------------------------------------------------- /common/common_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/common_license.txt -------------------------------------------------------------------------------- /common/common_vc9.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/common_vc9.vcproj -------------------------------------------------------------------------------- /common/common_vc9.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/common_vc9.vcxproj -------------------------------------------------------------------------------- /common/common_vc9.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/common/common_vc9.vcxproj.filters -------------------------------------------------------------------------------- /nvse/Algohol/algMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/Algohol/algMath.cpp -------------------------------------------------------------------------------- /nvse/Algohol/algMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/Algohol/algMath.h -------------------------------------------------------------------------------- /nvse/Algohol/algTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/Algohol/algTypes.h -------------------------------------------------------------------------------- /nvse/Algohol/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/Algohol/license.txt -------------------------------------------------------------------------------- /nvse/Algohol/paramTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/Algohol/paramTypes.cpp -------------------------------------------------------------------------------- /nvse/Algohol/paramTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/Algohol/paramTypes.h -------------------------------------------------------------------------------- /nvse/loader_common/Error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/loader_common/Error.cpp -------------------------------------------------------------------------------- /nvse/loader_common/Error.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void PrintLoaderError(const char * fmt, ...); 4 | -------------------------------------------------------------------------------- /nvse/loader_common/IdentifyEXE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/loader_common/IdentifyEXE.cpp -------------------------------------------------------------------------------- /nvse/loader_common/IdentifyEXE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/loader_common/IdentifyEXE.h -------------------------------------------------------------------------------- /nvse/loader_common/PluginChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/loader_common/PluginChecker.cpp -------------------------------------------------------------------------------- /nvse/loader_common/PluginChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/loader_common/PluginChecker.h -------------------------------------------------------------------------------- /nvse/loader_common/loader_common.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/loader_common/loader_common.vcproj -------------------------------------------------------------------------------- /nvse/loader_common/loader_common.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/loader_common/loader_common.vcxproj -------------------------------------------------------------------------------- /nvse/nvse.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse.sln -------------------------------------------------------------------------------- /nvse/nvse/ArrayVar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/ArrayVar.cpp -------------------------------------------------------------------------------- /nvse/nvse/ArrayVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/ArrayVar.h -------------------------------------------------------------------------------- /nvse/nvse/ArrayVarElementContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/ArrayVarElementContainer.cpp -------------------------------------------------------------------------------- /nvse/nvse/CachedScripts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/CachedScripts.cpp -------------------------------------------------------------------------------- /nvse/nvse/CachedScripts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/CachedScripts.h -------------------------------------------------------------------------------- /nvse/nvse/CommandTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/CommandTable.cpp -------------------------------------------------------------------------------- /nvse/nvse/CommandTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/CommandTable.h -------------------------------------------------------------------------------- /nvse/nvse/Commands_Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_Array.cpp -------------------------------------------------------------------------------- /nvse/nvse/Commands_Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_Array.h -------------------------------------------------------------------------------- /nvse/nvse/Commands_Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_Console.cpp -------------------------------------------------------------------------------- /nvse/nvse/Commands_Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_Console.h -------------------------------------------------------------------------------- /nvse/nvse/Commands_Factions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_Factions.cpp -------------------------------------------------------------------------------- /nvse/nvse/Commands_Factions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_Factions.h -------------------------------------------------------------------------------- /nvse/nvse/Commands_Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_Game.cpp -------------------------------------------------------------------------------- /nvse/nvse/Commands_Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_Game.h -------------------------------------------------------------------------------- /nvse/nvse/Commands_Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_Input.cpp -------------------------------------------------------------------------------- /nvse/nvse/Commands_Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_Input.h -------------------------------------------------------------------------------- /nvse/nvse/Commands_Inventory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_Inventory.cpp -------------------------------------------------------------------------------- /nvse/nvse/Commands_Inventory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_Inventory.h -------------------------------------------------------------------------------- /nvse/nvse/Commands_InventoryRef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_InventoryRef.cpp -------------------------------------------------------------------------------- /nvse/nvse/Commands_InventoryRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_InventoryRef.h -------------------------------------------------------------------------------- /nvse/nvse/Commands_List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_List.cpp -------------------------------------------------------------------------------- /nvse/nvse/Commands_List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_List.h -------------------------------------------------------------------------------- /nvse/nvse/Commands_Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_Math.cpp -------------------------------------------------------------------------------- /nvse/nvse/Commands_Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_Math.h -------------------------------------------------------------------------------- /nvse/nvse/Commands_Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_Misc.cpp -------------------------------------------------------------------------------- /nvse/nvse/Commands_Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_Misc.h -------------------------------------------------------------------------------- /nvse/nvse/Commands_MiscRef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_MiscRef.cpp -------------------------------------------------------------------------------- /nvse/nvse/Commands_MiscRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_MiscRef.h -------------------------------------------------------------------------------- /nvse/nvse/Commands_NetImmerse.cpp: -------------------------------------------------------------------------------- 1 | #include "Commands_NetImmerse.h" 2 | 3 | -------------------------------------------------------------------------------- /nvse/nvse/Commands_NetImmerse.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | -------------------------------------------------------------------------------- /nvse/nvse/Commands_Packages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_Packages.cpp -------------------------------------------------------------------------------- /nvse/nvse/Commands_Packages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_Packages.h -------------------------------------------------------------------------------- /nvse/nvse/Commands_Quest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_Quest.cpp -------------------------------------------------------------------------------- /nvse/nvse/Commands_Quest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_Quest.h -------------------------------------------------------------------------------- /nvse/nvse/Commands_Script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_Script.cpp -------------------------------------------------------------------------------- /nvse/nvse/Commands_Script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_Script.h -------------------------------------------------------------------------------- /nvse/nvse/Commands_Scripting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_Scripting.cpp -------------------------------------------------------------------------------- /nvse/nvse/Commands_Scripting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_Scripting.h -------------------------------------------------------------------------------- /nvse/nvse/Commands_String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_String.cpp -------------------------------------------------------------------------------- /nvse/nvse/Commands_String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_String.h -------------------------------------------------------------------------------- /nvse/nvse/Commands_UI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_UI.cpp -------------------------------------------------------------------------------- /nvse/nvse/Commands_UI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Commands_UI.h -------------------------------------------------------------------------------- /nvse/nvse/Core_Serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Core_Serialization.cpp -------------------------------------------------------------------------------- /nvse/nvse/Core_Serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Core_Serialization.h -------------------------------------------------------------------------------- /nvse/nvse/DebuggerVisualizations.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/DebuggerVisualizations.natvis -------------------------------------------------------------------------------- /nvse/nvse/EventManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/EventManager.cpp -------------------------------------------------------------------------------- /nvse/nvse/EventManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/EventManager.h -------------------------------------------------------------------------------- /nvse/nvse/EventParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/EventParams.h -------------------------------------------------------------------------------- /nvse/nvse/FastStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/FastStack.h -------------------------------------------------------------------------------- /nvse/nvse/FormExtraData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/FormExtraData.cpp -------------------------------------------------------------------------------- /nvse/nvse/FormExtraData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/FormExtraData.h -------------------------------------------------------------------------------- /nvse/nvse/FunctionScripts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/FunctionScripts.cpp -------------------------------------------------------------------------------- /nvse/nvse/FunctionScripts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/FunctionScripts.h -------------------------------------------------------------------------------- /nvse/nvse/GameAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameAPI.cpp -------------------------------------------------------------------------------- /nvse/nvse/GameAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameAPI.h -------------------------------------------------------------------------------- /nvse/nvse/GameBSExtraData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameBSExtraData.cpp -------------------------------------------------------------------------------- /nvse/nvse/GameBSExtraData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameBSExtraData.h -------------------------------------------------------------------------------- /nvse/nvse/GameData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameData.cpp -------------------------------------------------------------------------------- /nvse/nvse/GameData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameData.h -------------------------------------------------------------------------------- /nvse/nvse/GameEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameEffects.h -------------------------------------------------------------------------------- /nvse/nvse/GameExtraData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameExtraData.cpp -------------------------------------------------------------------------------- /nvse/nvse/GameExtraData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameExtraData.h -------------------------------------------------------------------------------- /nvse/nvse/GameForms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameForms.cpp -------------------------------------------------------------------------------- /nvse/nvse/GameForms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameForms.h -------------------------------------------------------------------------------- /nvse/nvse/GameOSDepend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameOSDepend.cpp -------------------------------------------------------------------------------- /nvse/nvse/GameOSDepend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameOSDepend.h -------------------------------------------------------------------------------- /nvse/nvse/GameObjects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameObjects.cpp -------------------------------------------------------------------------------- /nvse/nvse/GameObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameObjects.h -------------------------------------------------------------------------------- /nvse/nvse/GameProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameProcess.cpp -------------------------------------------------------------------------------- /nvse/nvse/GameProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameProcess.h -------------------------------------------------------------------------------- /nvse/nvse/GameRTTI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameRTTI.cpp -------------------------------------------------------------------------------- /nvse/nvse/GameRTTI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameRTTI.h -------------------------------------------------------------------------------- /nvse/nvse/GameRTTI_1_4_0_525.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameRTTI_1_4_0_525.inc -------------------------------------------------------------------------------- /nvse/nvse/GameRTTI_1_4_0_525ng.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameRTTI_1_4_0_525ng.inc -------------------------------------------------------------------------------- /nvse/nvse/GameRTTI_EDITOR.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameRTTI_EDITOR.inc -------------------------------------------------------------------------------- /nvse/nvse/GameScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameScript.cpp -------------------------------------------------------------------------------- /nvse/nvse/GameScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameScript.h -------------------------------------------------------------------------------- /nvse/nvse/GameSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameSettings.cpp -------------------------------------------------------------------------------- /nvse/nvse/GameSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameSettings.h -------------------------------------------------------------------------------- /nvse/nvse/GameTasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameTasks.cpp -------------------------------------------------------------------------------- /nvse/nvse/GameTasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameTasks.h -------------------------------------------------------------------------------- /nvse/nvse/GameTiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameTiles.cpp -------------------------------------------------------------------------------- /nvse/nvse/GameTiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameTiles.h -------------------------------------------------------------------------------- /nvse/nvse/GameTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameTypes.cpp -------------------------------------------------------------------------------- /nvse/nvse/GameTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameTypes.h -------------------------------------------------------------------------------- /nvse/nvse/GameUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameUI.cpp -------------------------------------------------------------------------------- /nvse/nvse/GameUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/GameUI.h -------------------------------------------------------------------------------- /nvse/nvse/Hooks_Animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Hooks_Animation.cpp -------------------------------------------------------------------------------- /nvse/nvse/Hooks_Animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Hooks_Animation.h -------------------------------------------------------------------------------- /nvse/nvse/Hooks_CreatedObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Hooks_CreatedObject.cpp -------------------------------------------------------------------------------- /nvse/nvse/Hooks_CreatedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Hooks_CreatedObject.h -------------------------------------------------------------------------------- /nvse/nvse/Hooks_Dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Hooks_Dialog.cpp -------------------------------------------------------------------------------- /nvse/nvse/Hooks_Dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Hooks_Dialog.h -------------------------------------------------------------------------------- /nvse/nvse/Hooks_DirectInput8Create.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Hooks_DirectInput8Create.cpp -------------------------------------------------------------------------------- /nvse/nvse/Hooks_DirectInput8Create.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Hooks_DirectInput8Create.h -------------------------------------------------------------------------------- /nvse/nvse/Hooks_Editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Hooks_Editor.cpp -------------------------------------------------------------------------------- /nvse/nvse/Hooks_Editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Hooks_Editor.h -------------------------------------------------------------------------------- /nvse/nvse/Hooks_Gameplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Hooks_Gameplay.cpp -------------------------------------------------------------------------------- /nvse/nvse/Hooks_Gameplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Hooks_Gameplay.h -------------------------------------------------------------------------------- /nvse/nvse/Hooks_Logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Hooks_Logging.cpp -------------------------------------------------------------------------------- /nvse/nvse/Hooks_Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Hooks_Logging.h -------------------------------------------------------------------------------- /nvse/nvse/Hooks_Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Hooks_Memory.cpp -------------------------------------------------------------------------------- /nvse/nvse/Hooks_Memory.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void Hooks_Memory_PreloadCommit(bool isNoGore); 4 | -------------------------------------------------------------------------------- /nvse/nvse/Hooks_Other.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Hooks_Other.cpp -------------------------------------------------------------------------------- /nvse/nvse/Hooks_Other.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Hooks_Other.h -------------------------------------------------------------------------------- /nvse/nvse/Hooks_SaveLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Hooks_SaveLoad.cpp -------------------------------------------------------------------------------- /nvse/nvse/Hooks_SaveLoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Hooks_SaveLoad.h -------------------------------------------------------------------------------- /nvse/nvse/Hooks_Script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Hooks_Script.cpp -------------------------------------------------------------------------------- /nvse/nvse/Hooks_Script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Hooks_Script.h -------------------------------------------------------------------------------- /nvse/nvse/InventoryInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/InventoryInfo.cpp -------------------------------------------------------------------------------- /nvse/nvse/InventoryInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/InventoryInfo.h -------------------------------------------------------------------------------- /nvse/nvse/InventoryRef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/InventoryRef.cpp -------------------------------------------------------------------------------- /nvse/nvse/InventoryRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/InventoryRef.h -------------------------------------------------------------------------------- /nvse/nvse/InventoryReference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/InventoryReference.cpp -------------------------------------------------------------------------------- /nvse/nvse/InventoryReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/InventoryReference.h -------------------------------------------------------------------------------- /nvse/nvse/LambdaManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/LambdaManager.cpp -------------------------------------------------------------------------------- /nvse/nvse/LambdaManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/LambdaManager.h -------------------------------------------------------------------------------- /nvse/nvse/Loops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Loops.cpp -------------------------------------------------------------------------------- /nvse/nvse/Loops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Loops.h -------------------------------------------------------------------------------- /nvse/nvse/MemoizedMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/MemoizedMap.h -------------------------------------------------------------------------------- /nvse/nvse/MemoryPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/MemoryPool.cpp -------------------------------------------------------------------------------- /nvse/nvse/MemoryPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/MemoryPool.h -------------------------------------------------------------------------------- /nvse/nvse/MemoryTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/MemoryTracker.h -------------------------------------------------------------------------------- /nvse/nvse/NVSEAst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/NVSEAst.h -------------------------------------------------------------------------------- /nvse/nvse/NVSECompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/NVSECompiler.cpp -------------------------------------------------------------------------------- /nvse/nvse/NVSECompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/NVSECompiler.h -------------------------------------------------------------------------------- /nvse/nvse/NVSECompilerUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/NVSECompilerUtils.cpp -------------------------------------------------------------------------------- /nvse/nvse/NVSECompilerUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/NVSECompilerUtils.h -------------------------------------------------------------------------------- /nvse/nvse/NVSELexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/NVSELexer.cpp -------------------------------------------------------------------------------- /nvse/nvse/NVSELexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/NVSELexer.h -------------------------------------------------------------------------------- /nvse/nvse/NVSEParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/NVSEParser.cpp -------------------------------------------------------------------------------- /nvse/nvse/NVSEParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/NVSEParser.h -------------------------------------------------------------------------------- /nvse/nvse/NVSEScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/NVSEScope.h -------------------------------------------------------------------------------- /nvse/nvse/NVSETreePrinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/NVSETreePrinter.cpp -------------------------------------------------------------------------------- /nvse/nvse/NVSETreePrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/NVSETreePrinter.h -------------------------------------------------------------------------------- /nvse/nvse/NVSETypeChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/NVSETypeChecker.cpp -------------------------------------------------------------------------------- /nvse/nvse/NVSETypeChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/NVSETypeChecker.h -------------------------------------------------------------------------------- /nvse/nvse/NVSEVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/NVSEVisitor.h -------------------------------------------------------------------------------- /nvse/nvse/NiNodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/NiNodes.cpp -------------------------------------------------------------------------------- /nvse/nvse/NiNodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/NiNodes.h -------------------------------------------------------------------------------- /nvse/nvse/NiObjects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/NiObjects.cpp -------------------------------------------------------------------------------- /nvse/nvse/NiObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/NiObjects.h -------------------------------------------------------------------------------- /nvse/nvse/NiPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/NiPoint.h -------------------------------------------------------------------------------- /nvse/nvse/NiTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/NiTypes.cpp -------------------------------------------------------------------------------- /nvse/nvse/NiTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/NiTypes.h -------------------------------------------------------------------------------- /nvse/nvse/OverloadsGlobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/OverloadsGlobal.cpp -------------------------------------------------------------------------------- /nvse/nvse/ParamInfos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/ParamInfos.h -------------------------------------------------------------------------------- /nvse/nvse/PluginAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/PluginAPI.h -------------------------------------------------------------------------------- /nvse/nvse/PluginManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/PluginManager.cpp -------------------------------------------------------------------------------- /nvse/nvse/PluginManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/PluginManager.h -------------------------------------------------------------------------------- /nvse/nvse/SafeWrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/SafeWrite.cpp -------------------------------------------------------------------------------- /nvse/nvse/SafeWrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/SafeWrite.h -------------------------------------------------------------------------------- /nvse/nvse/ScriptAnalyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/ScriptAnalyzer.cpp -------------------------------------------------------------------------------- /nvse/nvse/ScriptAnalyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/ScriptAnalyzer.h -------------------------------------------------------------------------------- /nvse/nvse/ScriptTokenCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/ScriptTokenCache.cpp -------------------------------------------------------------------------------- /nvse/nvse/ScriptTokenCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/ScriptTokenCache.h -------------------------------------------------------------------------------- /nvse/nvse/ScriptTokens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/ScriptTokens.cpp -------------------------------------------------------------------------------- /nvse/nvse/ScriptTokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/ScriptTokens.h -------------------------------------------------------------------------------- /nvse/nvse/ScriptUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/ScriptUtils.cpp -------------------------------------------------------------------------------- /nvse/nvse/ScriptUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/ScriptUtils.h -------------------------------------------------------------------------------- /nvse/nvse/Serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Serialization.cpp -------------------------------------------------------------------------------- /nvse/nvse/Serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Serialization.h -------------------------------------------------------------------------------- /nvse/nvse/SmallObjectsAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/SmallObjectsAllocator.h -------------------------------------------------------------------------------- /nvse/nvse/StackVariables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/StackVariables.cpp -------------------------------------------------------------------------------- /nvse/nvse/StackVariables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/StackVariables.h -------------------------------------------------------------------------------- /nvse/nvse/StackVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/StackVector.h -------------------------------------------------------------------------------- /nvse/nvse/StringVar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/StringVar.cpp -------------------------------------------------------------------------------- /nvse/nvse/StringVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/StringVar.h -------------------------------------------------------------------------------- /nvse/nvse/ThreadLocal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/ThreadLocal.cpp -------------------------------------------------------------------------------- /nvse/nvse/ThreadLocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/ThreadLocal.h -------------------------------------------------------------------------------- /nvse/nvse/UnitTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/UnitTests.cpp -------------------------------------------------------------------------------- /nvse/nvse/UnitTests.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #if RUNTIME 4 | 5 | void ExecuteRuntimeUnitTests(); 6 | 7 | #endif -------------------------------------------------------------------------------- /nvse/nvse/Utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Utilities.cpp -------------------------------------------------------------------------------- /nvse/nvse/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/Utilities.h -------------------------------------------------------------------------------- /nvse/nvse/VarMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/VarMap.h -------------------------------------------------------------------------------- /nvse/nvse/commands_Algohol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/commands_Algohol.cpp -------------------------------------------------------------------------------- /nvse/nvse/commands_Algohol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/commands_Algohol.h -------------------------------------------------------------------------------- /nvse/nvse/containers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/containers.cpp -------------------------------------------------------------------------------- /nvse/nvse/containers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/containers.h -------------------------------------------------------------------------------- /nvse/nvse/exports.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | StartNVSE -------------------------------------------------------------------------------- /nvse/nvse/nvse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/nvse.cpp -------------------------------------------------------------------------------- /nvse/nvse/nvse.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/nvse.vcproj -------------------------------------------------------------------------------- /nvse/nvse/nvse.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/nvse.vcxproj -------------------------------------------------------------------------------- /nvse/nvse/nvse.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/nvse.vcxproj.filters -------------------------------------------------------------------------------- /nvse/nvse/nvse_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/nvse_version.h -------------------------------------------------------------------------------- /nvse/nvse/nvse_version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/nvse_version.rc -------------------------------------------------------------------------------- /nvse/nvse/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/prefix.h -------------------------------------------------------------------------------- /nvse/nvse/printf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/printf.cpp -------------------------------------------------------------------------------- /nvse/nvse/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/printf.h -------------------------------------------------------------------------------- /nvse/nvse/rewrites.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /nvse/nvse/unit_tests/new_compiler/binary_operations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/unit_tests/new_compiler/binary_operations.txt -------------------------------------------------------------------------------- /nvse/nvse/unit_tests/new_compiler/call_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/unit_tests/new_compiler/call_test.txt -------------------------------------------------------------------------------- /nvse/nvse/unit_tests/new_compiler/comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/unit_tests/new_compiler/comments.txt -------------------------------------------------------------------------------- /nvse/nvse/unit_tests/new_compiler/disabled/in_operator_syntax.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/unit_tests/new_compiler/disabled/in_operator_syntax.txt -------------------------------------------------------------------------------- /nvse/nvse/unit_tests/new_compiler/for_loops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/unit_tests/new_compiler/for_loops.txt -------------------------------------------------------------------------------- /nvse/nvse/unit_tests/new_compiler/foreachalt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/unit_tests/new_compiler/foreachalt.txt -------------------------------------------------------------------------------- /nvse/nvse/unit_tests/new_compiler/misc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/unit_tests/new_compiler/misc.txt -------------------------------------------------------------------------------- /nvse/nvse/unit_tests/new_compiler/stack_vars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/unit_tests/new_compiler/stack_vars.txt -------------------------------------------------------------------------------- /nvse/nvse/unit_tests/new_compiler/ternary_operations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/unit_tests/new_compiler/ternary_operations.txt -------------------------------------------------------------------------------- /nvse/nvse/unit_tests/new_compiler/udfs/TestUDF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/unit_tests/new_compiler/udfs/TestUDF.txt -------------------------------------------------------------------------------- /nvse/nvse/unit_tests/new_compiler/unary_operations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/unit_tests/new_compiler/unary_operations.txt -------------------------------------------------------------------------------- /nvse/nvse/unit_tests/old_compiler/CallAfterFrames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/unit_tests/old_compiler/CallAfterFrames.txt -------------------------------------------------------------------------------- /nvse/nvse/unit_tests/old_compiler/TestExpr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/unit_tests/old_compiler/TestExpr.txt -------------------------------------------------------------------------------- /nvse/nvse/unit_tests/old_compiler/array_functions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/unit_tests/old_compiler/array_functions.txt -------------------------------------------------------------------------------- /nvse/nvse/unit_tests/old_compiler/conversions_between_num_and_string.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/unit_tests/old_compiler/conversions_between_num_and_string.txt -------------------------------------------------------------------------------- /nvse/nvse/unit_tests/old_compiler/event_handler_functions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/unit_tests/old_compiler/event_handler_functions.txt -------------------------------------------------------------------------------- /nvse/nvse/unit_tests/old_compiler/event_handler_priority_system.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/unit_tests/old_compiler/event_handler_priority_system.txt -------------------------------------------------------------------------------- /nvse/nvse/unit_tests/old_compiler/let_macro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/unit_tests/old_compiler/let_macro.txt -------------------------------------------------------------------------------- /nvse/nvse/unit_tests/old_compiler/multi_arg_command_trailing_boundary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/unit_tests/old_compiler/multi_arg_command_trailing_boundary.txt -------------------------------------------------------------------------------- /nvse/nvse/unit_tests/old_compiler/multiple_variable_declarations_macro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/unit_tests/old_compiler/multiple_variable_declarations_macro.txt -------------------------------------------------------------------------------- /nvse/nvse/unit_tests/old_compiler/short_and_long_param_types_in_UDF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/unit_tests/old_compiler/short_and_long_param_types_in_UDF.txt -------------------------------------------------------------------------------- /nvse/nvse/unit_tests/old_compiler/strings_and_parentheses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/unit_tests/old_compiler/strings_and_parentheses.txt -------------------------------------------------------------------------------- /nvse/nvse/unit_tests/old_compiler/udf_functions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/unit_tests/old_compiler/udf_functions.txt -------------------------------------------------------------------------------- /nvse/nvse/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/utility.cpp -------------------------------------------------------------------------------- /nvse/nvse/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse/utility.h -------------------------------------------------------------------------------- /nvse/nvse_loader/Inject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse_loader/Inject.cpp -------------------------------------------------------------------------------- /nvse/nvse_loader/Inject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse_loader/Inject.h -------------------------------------------------------------------------------- /nvse/nvse_loader/Options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse_loader/Options.cpp -------------------------------------------------------------------------------- /nvse/nvse_loader/Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse_loader/Options.h -------------------------------------------------------------------------------- /nvse/nvse_loader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse_loader/main.cpp -------------------------------------------------------------------------------- /nvse/nvse_loader/nvse_loader.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse_loader/nvse_loader.ico -------------------------------------------------------------------------------- /nvse/nvse_loader/nvse_loader.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse_loader/nvse_loader.vcproj -------------------------------------------------------------------------------- /nvse/nvse_loader/nvse_loader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse_loader/nvse_loader.vcxproj -------------------------------------------------------------------------------- /nvse/nvse_loader/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/nvse_loader/resources.rc -------------------------------------------------------------------------------- /nvse/steam_loader/PluginPreload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/steam_loader/PluginPreload.h -------------------------------------------------------------------------------- /nvse/steam_loader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/steam_loader/main.cpp -------------------------------------------------------------------------------- /nvse/steam_loader/steam_loader.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/steam_loader/steam_loader.vcproj -------------------------------------------------------------------------------- /nvse/steam_loader/steam_loader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/steam_loader/steam_loader.vcxproj -------------------------------------------------------------------------------- /nvse/steam_loader/steam_loader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse/steam_loader/steam_loader.vcxproj.filters -------------------------------------------------------------------------------- /nvse_plugin_example/dllmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse_plugin_example/dllmain.c -------------------------------------------------------------------------------- /nvse_plugin_example/exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse_plugin_example/exports.def -------------------------------------------------------------------------------- /nvse_plugin_example/fn_intro_to_script_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse_plugin_example/fn_intro_to_script_functions.h -------------------------------------------------------------------------------- /nvse_plugin_example/fn_typed_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse_plugin_example/fn_typed_functions.h -------------------------------------------------------------------------------- /nvse_plugin_example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse_plugin_example/main.cpp -------------------------------------------------------------------------------- /nvse_plugin_example/nvse_plugin_example.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse_plugin_example/nvse_plugin_example.sln -------------------------------------------------------------------------------- /nvse_plugin_example/nvse_plugin_example.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse_plugin_example/nvse_plugin_example.vcproj -------------------------------------------------------------------------------- /nvse_plugin_example/nvse_plugin_example.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse_plugin_example/nvse_plugin_example.vcxproj -------------------------------------------------------------------------------- /nvse_plugin_example/nvse_plugin_example.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xNVSE/NVSE/HEAD/nvse_plugin_example/nvse_plugin_example.vcxproj.filters --------------------------------------------------------------------------------