├── .gitignore ├── CommandTest ├── App.config ├── CommandTest.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── License ├── QSP.sln ├── QSPLib ├── ChangeLog.txt ├── LGPL.txt ├── QSPLib.txt ├── QSPLib.vcxproj ├── QSPLib.vcxproj.filters └── src │ ├── actions.c │ ├── actions.h │ ├── bindings │ ├── android │ │ ├── android.h │ │ ├── android_callbacks.c │ │ ├── android_coding.c │ │ └── android_control.c │ ├── bindings_config.h │ ├── default │ │ ├── default_callbacks.c │ │ ├── default_coding.c │ │ ├── default_control.c │ │ └── qsp_default.h │ ├── flash │ │ ├── flash.h │ │ ├── flash_callbacks.c │ │ ├── flash_coding.c │ │ └── flash_control.c │ └── java │ │ ├── java.h │ │ ├── java_callbacks.c │ │ ├── java_coding.c │ │ └── java_control.c │ ├── callbacks.c │ ├── callbacks.h │ ├── codetools.c │ ├── codetools.h │ ├── coding.c │ ├── coding.h │ ├── common.c │ ├── common.h │ ├── declarations.h │ ├── errors.c │ ├── errors.h │ ├── game.c │ ├── game.h │ ├── locations.c │ ├── locations.h │ ├── mathops.c │ ├── mathops.h │ ├── menu.c │ ├── menu.h │ ├── objects.c │ ├── objects.h │ ├── onig │ ├── config.h │ ├── enc │ │ ├── ascii.c │ │ ├── cp1251.c │ │ ├── koi8_r.c │ │ ├── unicode.c │ │ ├── utf16_be.c │ │ ├── utf16_le.c │ │ ├── utf32_be.c │ │ └── utf32_le.c │ ├── oniguruma.h │ ├── regcomp.c │ ├── regenc.c │ ├── regenc.h │ ├── regerror.c │ ├── regexec.c │ ├── regint.h │ ├── regparse.c │ ├── regparse.h │ ├── regsyntax.c │ ├── regtrav.c │ ├── regversion.c │ ├── st.c │ └── st.h │ ├── playlist.c │ ├── playlist.h │ ├── qsp.h │ ├── regexp.c │ ├── regexp.h │ ├── statements.c │ ├── statements.h │ ├── text.c │ ├── text.h │ ├── time.c │ ├── time.h │ ├── towlower.c │ ├── towupper.c │ ├── variables.c │ ├── variables.h │ ├── variant.c │ └── variant.h ├── QSPNETWrapper ├── NLog.config ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── QSPAction.cs ├── QSPArrayValues.cs ├── QSPGame.cs ├── QSPGameWorld.cs ├── QSPNETWrapper.csproj ├── QSPNamedArrayValues.cs ├── QSPObject.cs ├── QSPValues.cs ├── QSPVariable.cs ├── QSPWrapper.cs └── packages.config ├── QSPSaveEditor ├── App.config ├── App.xaml ├── App.xaml.cs ├── Design │ ├── DesignQSPGame.cs │ ├── DesignQSPGameDataService.cs │ └── DesignQSPVariablesListDataService.cs ├── GlobalSuppressions.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Message │ └── SaveMessage.cs ├── Model │ ├── IQSPGameDataService.cs │ ├── IQSPVariablesListDataService.cs │ ├── QSPGameDataService.cs │ └── QSPVariablesListDataService.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── QSPSaveEditor.csproj ├── Resources │ ├── Entypo-license.txt │ ├── Entypo.ttf │ ├── Icons.xaml │ ├── IconsNonShared.xaml │ ├── QSP-Mode.xshd │ └── WindowsIcons-license.txt ├── View │ ├── ButtonsControlView.xaml │ ├── ButtonsControlView.xaml.cs │ ├── CustomStyles.xaml │ ├── QSPBasicData.xaml │ ├── QSPBasicData.xaml.cs │ ├── QSPVariablesView.xaml │ ├── QSPVariablesView.xaml.cs │ ├── VariablesListView.xaml │ └── VariablesListView.xaml.cs ├── ViewModel │ ├── MainViewModel.cs │ ├── VariablesViewModel.cs │ └── ViewModelLocator.cs ├── app.manifest └── packages.config ├── QSPSaveEditorSetup ├── Product.wxs └── QSPSaveEditorSetup.wixproj └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/.gitignore -------------------------------------------------------------------------------- /CommandTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/CommandTest/App.config -------------------------------------------------------------------------------- /CommandTest/CommandTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/CommandTest/CommandTest.csproj -------------------------------------------------------------------------------- /CommandTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/CommandTest/Program.cs -------------------------------------------------------------------------------- /CommandTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/CommandTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/License -------------------------------------------------------------------------------- /QSP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSP.sln -------------------------------------------------------------------------------- /QSPLib/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/ChangeLog.txt -------------------------------------------------------------------------------- /QSPLib/LGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/LGPL.txt -------------------------------------------------------------------------------- /QSPLib/QSPLib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/QSPLib.txt -------------------------------------------------------------------------------- /QSPLib/QSPLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/QSPLib.vcxproj -------------------------------------------------------------------------------- /QSPLib/QSPLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/QSPLib.vcxproj.filters -------------------------------------------------------------------------------- /QSPLib/src/actions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/actions.c -------------------------------------------------------------------------------- /QSPLib/src/actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/actions.h -------------------------------------------------------------------------------- /QSPLib/src/bindings/android/android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/bindings/android/android.h -------------------------------------------------------------------------------- /QSPLib/src/bindings/android/android_callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/bindings/android/android_callbacks.c -------------------------------------------------------------------------------- /QSPLib/src/bindings/android/android_coding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/bindings/android/android_coding.c -------------------------------------------------------------------------------- /QSPLib/src/bindings/android/android_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/bindings/android/android_control.c -------------------------------------------------------------------------------- /QSPLib/src/bindings/bindings_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/bindings/bindings_config.h -------------------------------------------------------------------------------- /QSPLib/src/bindings/default/default_callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/bindings/default/default_callbacks.c -------------------------------------------------------------------------------- /QSPLib/src/bindings/default/default_coding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/bindings/default/default_coding.c -------------------------------------------------------------------------------- /QSPLib/src/bindings/default/default_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/bindings/default/default_control.c -------------------------------------------------------------------------------- /QSPLib/src/bindings/default/qsp_default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/bindings/default/qsp_default.h -------------------------------------------------------------------------------- /QSPLib/src/bindings/flash/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/bindings/flash/flash.h -------------------------------------------------------------------------------- /QSPLib/src/bindings/flash/flash_callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/bindings/flash/flash_callbacks.c -------------------------------------------------------------------------------- /QSPLib/src/bindings/flash/flash_coding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/bindings/flash/flash_coding.c -------------------------------------------------------------------------------- /QSPLib/src/bindings/flash/flash_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/bindings/flash/flash_control.c -------------------------------------------------------------------------------- /QSPLib/src/bindings/java/java.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/bindings/java/java.h -------------------------------------------------------------------------------- /QSPLib/src/bindings/java/java_callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/bindings/java/java_callbacks.c -------------------------------------------------------------------------------- /QSPLib/src/bindings/java/java_coding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/bindings/java/java_coding.c -------------------------------------------------------------------------------- /QSPLib/src/bindings/java/java_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/bindings/java/java_control.c -------------------------------------------------------------------------------- /QSPLib/src/callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/callbacks.c -------------------------------------------------------------------------------- /QSPLib/src/callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/callbacks.h -------------------------------------------------------------------------------- /QSPLib/src/codetools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/codetools.c -------------------------------------------------------------------------------- /QSPLib/src/codetools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/codetools.h -------------------------------------------------------------------------------- /QSPLib/src/coding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/coding.c -------------------------------------------------------------------------------- /QSPLib/src/coding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/coding.h -------------------------------------------------------------------------------- /QSPLib/src/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/common.c -------------------------------------------------------------------------------- /QSPLib/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/common.h -------------------------------------------------------------------------------- /QSPLib/src/declarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/declarations.h -------------------------------------------------------------------------------- /QSPLib/src/errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/errors.c -------------------------------------------------------------------------------- /QSPLib/src/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/errors.h -------------------------------------------------------------------------------- /QSPLib/src/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/game.c -------------------------------------------------------------------------------- /QSPLib/src/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/game.h -------------------------------------------------------------------------------- /QSPLib/src/locations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/locations.c -------------------------------------------------------------------------------- /QSPLib/src/locations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/locations.h -------------------------------------------------------------------------------- /QSPLib/src/mathops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/mathops.c -------------------------------------------------------------------------------- /QSPLib/src/mathops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/mathops.h -------------------------------------------------------------------------------- /QSPLib/src/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/menu.c -------------------------------------------------------------------------------- /QSPLib/src/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/menu.h -------------------------------------------------------------------------------- /QSPLib/src/objects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/objects.c -------------------------------------------------------------------------------- /QSPLib/src/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/objects.h -------------------------------------------------------------------------------- /QSPLib/src/onig/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/onig/config.h -------------------------------------------------------------------------------- /QSPLib/src/onig/enc/ascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/onig/enc/ascii.c -------------------------------------------------------------------------------- /QSPLib/src/onig/enc/cp1251.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/onig/enc/cp1251.c -------------------------------------------------------------------------------- /QSPLib/src/onig/enc/koi8_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/onig/enc/koi8_r.c -------------------------------------------------------------------------------- /QSPLib/src/onig/enc/unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/onig/enc/unicode.c -------------------------------------------------------------------------------- /QSPLib/src/onig/enc/utf16_be.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/onig/enc/utf16_be.c -------------------------------------------------------------------------------- /QSPLib/src/onig/enc/utf16_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/onig/enc/utf16_le.c -------------------------------------------------------------------------------- /QSPLib/src/onig/enc/utf32_be.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/onig/enc/utf32_be.c -------------------------------------------------------------------------------- /QSPLib/src/onig/enc/utf32_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/onig/enc/utf32_le.c -------------------------------------------------------------------------------- /QSPLib/src/onig/oniguruma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/onig/oniguruma.h -------------------------------------------------------------------------------- /QSPLib/src/onig/regcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/onig/regcomp.c -------------------------------------------------------------------------------- /QSPLib/src/onig/regenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/onig/regenc.c -------------------------------------------------------------------------------- /QSPLib/src/onig/regenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/onig/regenc.h -------------------------------------------------------------------------------- /QSPLib/src/onig/regerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/onig/regerror.c -------------------------------------------------------------------------------- /QSPLib/src/onig/regexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/onig/regexec.c -------------------------------------------------------------------------------- /QSPLib/src/onig/regint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/onig/regint.h -------------------------------------------------------------------------------- /QSPLib/src/onig/regparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/onig/regparse.c -------------------------------------------------------------------------------- /QSPLib/src/onig/regparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/onig/regparse.h -------------------------------------------------------------------------------- /QSPLib/src/onig/regsyntax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/onig/regsyntax.c -------------------------------------------------------------------------------- /QSPLib/src/onig/regtrav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/onig/regtrav.c -------------------------------------------------------------------------------- /QSPLib/src/onig/regversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/onig/regversion.c -------------------------------------------------------------------------------- /QSPLib/src/onig/st.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/onig/st.c -------------------------------------------------------------------------------- /QSPLib/src/onig/st.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/onig/st.h -------------------------------------------------------------------------------- /QSPLib/src/playlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/playlist.c -------------------------------------------------------------------------------- /QSPLib/src/playlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/playlist.h -------------------------------------------------------------------------------- /QSPLib/src/qsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/qsp.h -------------------------------------------------------------------------------- /QSPLib/src/regexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/regexp.c -------------------------------------------------------------------------------- /QSPLib/src/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/regexp.h -------------------------------------------------------------------------------- /QSPLib/src/statements.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/statements.c -------------------------------------------------------------------------------- /QSPLib/src/statements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/statements.h -------------------------------------------------------------------------------- /QSPLib/src/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/text.c -------------------------------------------------------------------------------- /QSPLib/src/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/text.h -------------------------------------------------------------------------------- /QSPLib/src/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/time.c -------------------------------------------------------------------------------- /QSPLib/src/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/time.h -------------------------------------------------------------------------------- /QSPLib/src/towlower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/towlower.c -------------------------------------------------------------------------------- /QSPLib/src/towupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/towupper.c -------------------------------------------------------------------------------- /QSPLib/src/variables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/variables.c -------------------------------------------------------------------------------- /QSPLib/src/variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/variables.h -------------------------------------------------------------------------------- /QSPLib/src/variant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/variant.c -------------------------------------------------------------------------------- /QSPLib/src/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPLib/src/variant.h -------------------------------------------------------------------------------- /QSPNETWrapper/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPNETWrapper/NLog.config -------------------------------------------------------------------------------- /QSPNETWrapper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPNETWrapper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /QSPNETWrapper/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPNETWrapper/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /QSPNETWrapper/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPNETWrapper/Properties/Resources.resx -------------------------------------------------------------------------------- /QSPNETWrapper/QSPAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPNETWrapper/QSPAction.cs -------------------------------------------------------------------------------- /QSPNETWrapper/QSPArrayValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPNETWrapper/QSPArrayValues.cs -------------------------------------------------------------------------------- /QSPNETWrapper/QSPGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPNETWrapper/QSPGame.cs -------------------------------------------------------------------------------- /QSPNETWrapper/QSPGameWorld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPNETWrapper/QSPGameWorld.cs -------------------------------------------------------------------------------- /QSPNETWrapper/QSPNETWrapper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPNETWrapper/QSPNETWrapper.csproj -------------------------------------------------------------------------------- /QSPNETWrapper/QSPNamedArrayValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPNETWrapper/QSPNamedArrayValues.cs -------------------------------------------------------------------------------- /QSPNETWrapper/QSPObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPNETWrapper/QSPObject.cs -------------------------------------------------------------------------------- /QSPNETWrapper/QSPValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPNETWrapper/QSPValues.cs -------------------------------------------------------------------------------- /QSPNETWrapper/QSPVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPNETWrapper/QSPVariable.cs -------------------------------------------------------------------------------- /QSPNETWrapper/QSPWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPNETWrapper/QSPWrapper.cs -------------------------------------------------------------------------------- /QSPNETWrapper/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPNETWrapper/packages.config -------------------------------------------------------------------------------- /QSPSaveEditor/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/App.config -------------------------------------------------------------------------------- /QSPSaveEditor/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/App.xaml -------------------------------------------------------------------------------- /QSPSaveEditor/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/App.xaml.cs -------------------------------------------------------------------------------- /QSPSaveEditor/Design/DesignQSPGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/Design/DesignQSPGame.cs -------------------------------------------------------------------------------- /QSPSaveEditor/Design/DesignQSPGameDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/Design/DesignQSPGameDataService.cs -------------------------------------------------------------------------------- /QSPSaveEditor/Design/DesignQSPVariablesListDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/Design/DesignQSPVariablesListDataService.cs -------------------------------------------------------------------------------- /QSPSaveEditor/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/GlobalSuppressions.cs -------------------------------------------------------------------------------- /QSPSaveEditor/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/MainWindow.xaml -------------------------------------------------------------------------------- /QSPSaveEditor/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/MainWindow.xaml.cs -------------------------------------------------------------------------------- /QSPSaveEditor/Message/SaveMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/Message/SaveMessage.cs -------------------------------------------------------------------------------- /QSPSaveEditor/Model/IQSPGameDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/Model/IQSPGameDataService.cs -------------------------------------------------------------------------------- /QSPSaveEditor/Model/IQSPVariablesListDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/Model/IQSPVariablesListDataService.cs -------------------------------------------------------------------------------- /QSPSaveEditor/Model/QSPGameDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/Model/QSPGameDataService.cs -------------------------------------------------------------------------------- /QSPSaveEditor/Model/QSPVariablesListDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/Model/QSPVariablesListDataService.cs -------------------------------------------------------------------------------- /QSPSaveEditor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /QSPSaveEditor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /QSPSaveEditor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/Properties/Resources.resx -------------------------------------------------------------------------------- /QSPSaveEditor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /QSPSaveEditor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/Properties/Settings.settings -------------------------------------------------------------------------------- /QSPSaveEditor/QSPSaveEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/QSPSaveEditor.csproj -------------------------------------------------------------------------------- /QSPSaveEditor/Resources/Entypo-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/Resources/Entypo-license.txt -------------------------------------------------------------------------------- /QSPSaveEditor/Resources/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/Resources/Entypo.ttf -------------------------------------------------------------------------------- /QSPSaveEditor/Resources/Icons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/Resources/Icons.xaml -------------------------------------------------------------------------------- /QSPSaveEditor/Resources/IconsNonShared.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/Resources/IconsNonShared.xaml -------------------------------------------------------------------------------- /QSPSaveEditor/Resources/QSP-Mode.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/Resources/QSP-Mode.xshd -------------------------------------------------------------------------------- /QSPSaveEditor/Resources/WindowsIcons-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/Resources/WindowsIcons-license.txt -------------------------------------------------------------------------------- /QSPSaveEditor/View/ButtonsControlView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/View/ButtonsControlView.xaml -------------------------------------------------------------------------------- /QSPSaveEditor/View/ButtonsControlView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/View/ButtonsControlView.xaml.cs -------------------------------------------------------------------------------- /QSPSaveEditor/View/CustomStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/View/CustomStyles.xaml -------------------------------------------------------------------------------- /QSPSaveEditor/View/QSPBasicData.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/View/QSPBasicData.xaml -------------------------------------------------------------------------------- /QSPSaveEditor/View/QSPBasicData.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/View/QSPBasicData.xaml.cs -------------------------------------------------------------------------------- /QSPSaveEditor/View/QSPVariablesView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/View/QSPVariablesView.xaml -------------------------------------------------------------------------------- /QSPSaveEditor/View/QSPVariablesView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/View/QSPVariablesView.xaml.cs -------------------------------------------------------------------------------- /QSPSaveEditor/View/VariablesListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/View/VariablesListView.xaml -------------------------------------------------------------------------------- /QSPSaveEditor/View/VariablesListView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/View/VariablesListView.xaml.cs -------------------------------------------------------------------------------- /QSPSaveEditor/ViewModel/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/ViewModel/MainViewModel.cs -------------------------------------------------------------------------------- /QSPSaveEditor/ViewModel/VariablesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/ViewModel/VariablesViewModel.cs -------------------------------------------------------------------------------- /QSPSaveEditor/ViewModel/ViewModelLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/ViewModel/ViewModelLocator.cs -------------------------------------------------------------------------------- /QSPSaveEditor/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/app.manifest -------------------------------------------------------------------------------- /QSPSaveEditor/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditor/packages.config -------------------------------------------------------------------------------- /QSPSaveEditorSetup/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditorSetup/Product.wxs -------------------------------------------------------------------------------- /QSPSaveEditorSetup/QSPSaveEditorSetup.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/QSPSaveEditorSetup/QSPSaveEditorSetup.wixproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pararock/QSPSaveEditor/HEAD/README.md --------------------------------------------------------------------------------