├── .editorconfig ├── .gitattributes ├── .gitignore ├── .gitlab-ci.yml ├── .vs ├── SmartGoldbergEmu │ ├── v16 │ │ └── .suo │ └── v17 │ │ └── .suo ├── VSWorkspaceState.json └── slnx.sqlite ├── Controls └── CueTextBox.cs ├── EmuConfig.cs ├── Forms ├── AboutForm.Designer.cs ├── AboutForm.cs ├── AboutForm.resx ├── GameSettingsForm.Designer.cs ├── GameSettingsForm.cs ├── GameSettingsForm.resx ├── SettingsForm.Designer.cs ├── SettingsForm.cs ├── SettingsForm.resx ├── SmartGoldbergEmuMainForm.Designer.cs ├── SmartGoldbergEmuMainForm.cs └── SmartGoldbergEmuMainForm.resx ├── GameConfig.cs ├── HeaderReader ├── BaseHeaderReader.cs ├── ElfHeaderReader.cs ├── ExecutableHeaderReader.cs ├── MachOHeaderReader.cs └── PeHeaderReader.cs ├── MacOsIpcServer.cs ├── OSFuncs.cs ├── OSUtility └── OSUtility.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── Resources ├── steel_steam_128.png └── steel_steam_32.ico ├── Shortcut.cs ├── SmartGoldbergEmu.csproj ├── SmartGoldbergEmu.csproj.user ├── SmartGoldbergEmu.sln ├── SteamEmulator.cs ├── SteamWebAPI.cs ├── app.config ├── packages.config ├── packages └── Newtonsoft.Json.13.0.3 │ ├── .signature.p7s │ ├── LICENSE.md │ ├── Newtonsoft.Json.13.0.3.nupkg │ ├── README.md │ ├── lib │ ├── net20 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net35 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net40 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net45 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net6.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard1.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard1.3 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── netstandard2.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── packageIcon.png └── public └── index.html /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /obj 3 | /.vs 4 | .vs/SmartGoldbergEmu/v17/.suo 5 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.vs/SmartGoldbergEmu/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/.vs/SmartGoldbergEmu/v16/.suo -------------------------------------------------------------------------------- /.vs/SmartGoldbergEmu/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/.vs/SmartGoldbergEmu/v17/.suo -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /Controls/CueTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/Controls/CueTextBox.cs -------------------------------------------------------------------------------- /EmuConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/EmuConfig.cs -------------------------------------------------------------------------------- /Forms/AboutForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/Forms/AboutForm.Designer.cs -------------------------------------------------------------------------------- /Forms/AboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/Forms/AboutForm.cs -------------------------------------------------------------------------------- /Forms/AboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/Forms/AboutForm.resx -------------------------------------------------------------------------------- /Forms/GameSettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/Forms/GameSettingsForm.Designer.cs -------------------------------------------------------------------------------- /Forms/GameSettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/Forms/GameSettingsForm.cs -------------------------------------------------------------------------------- /Forms/GameSettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/Forms/GameSettingsForm.resx -------------------------------------------------------------------------------- /Forms/SettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/Forms/SettingsForm.Designer.cs -------------------------------------------------------------------------------- /Forms/SettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/Forms/SettingsForm.cs -------------------------------------------------------------------------------- /Forms/SettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/Forms/SettingsForm.resx -------------------------------------------------------------------------------- /Forms/SmartGoldbergEmuMainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/Forms/SmartGoldbergEmuMainForm.Designer.cs -------------------------------------------------------------------------------- /Forms/SmartGoldbergEmuMainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/Forms/SmartGoldbergEmuMainForm.cs -------------------------------------------------------------------------------- /Forms/SmartGoldbergEmuMainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/Forms/SmartGoldbergEmuMainForm.resx -------------------------------------------------------------------------------- /GameConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/GameConfig.cs -------------------------------------------------------------------------------- /HeaderReader/BaseHeaderReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/HeaderReader/BaseHeaderReader.cs -------------------------------------------------------------------------------- /HeaderReader/ElfHeaderReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/HeaderReader/ElfHeaderReader.cs -------------------------------------------------------------------------------- /HeaderReader/ExecutableHeaderReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/HeaderReader/ExecutableHeaderReader.cs -------------------------------------------------------------------------------- /HeaderReader/MachOHeaderReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/HeaderReader/MachOHeaderReader.cs -------------------------------------------------------------------------------- /HeaderReader/PeHeaderReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/HeaderReader/PeHeaderReader.cs -------------------------------------------------------------------------------- /MacOsIpcServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/MacOsIpcServer.cs -------------------------------------------------------------------------------- /OSFuncs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/OSFuncs.cs -------------------------------------------------------------------------------- /OSUtility/OSUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/OSUtility/OSUtility.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | My version of Nemirtingas Smart Goldberg Emu 2 | -------------------------------------------------------------------------------- /Resources/steel_steam_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/Resources/steel_steam_128.png -------------------------------------------------------------------------------- /Resources/steel_steam_32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/Resources/steel_steam_32.ico -------------------------------------------------------------------------------- /Shortcut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/Shortcut.cs -------------------------------------------------------------------------------- /SmartGoldbergEmu.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/SmartGoldbergEmu.csproj -------------------------------------------------------------------------------- /SmartGoldbergEmu.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/SmartGoldbergEmu.csproj.user -------------------------------------------------------------------------------- /SmartGoldbergEmu.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/SmartGoldbergEmu.sln -------------------------------------------------------------------------------- /SteamEmulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/SteamEmulator.cs -------------------------------------------------------------------------------- /SteamWebAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/SteamWebAPI.cs -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/app.config -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/packages.config -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/packages/Newtonsoft.Json.13.0.3/.signature.p7s -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/packages/Newtonsoft.Json.13.0.3/LICENSE.md -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/Newtonsoft.Json.13.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/packages/Newtonsoft.Json.13.0.3/Newtonsoft.Json.13.0.3.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/packages/Newtonsoft.Json.13.0.3/README.md -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net6.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net6.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/net6.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/packages/Newtonsoft.Json.13.0.3/lib/net6.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/packages/Newtonsoft.Json.13.0.3/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/packages/Newtonsoft.Json.13.0.3/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/packages/Newtonsoft.Json.13.0.3/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/netstandard1.3/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/packages/Newtonsoft.Json.13.0.3/lib/netstandard1.3/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/netstandard2.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/packages/Newtonsoft.Json.13.0.3/lib/netstandard2.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/lib/netstandard2.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/packages/Newtonsoft.Json.13.0.3/lib/netstandard2.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.3/packageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/packages/Newtonsoft.Json.13.0.3/packageIcon.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kola124/SmartGoldbergEmu/HEAD/public/index.html --------------------------------------------------------------------------------