Updates
This commit is contained in:
parent
1992190e80
commit
d1b807ea50
9
.gitignore
vendored
9
.gitignore
vendored
@ -18,4 +18,11 @@
|
||||
/msvc5/sb2decomp/*.plg
|
||||
/msvc5/sb2decomp/Debug
|
||||
/msvc5/sb2decomp/Release
|
||||
Speedy Eggbert 2 Source.vcxproj.user
|
||||
Speedy Eggbert 2 Source.vcxproj.user
|
||||
|
||||
|
||||
|
||||
DATA/*
|
||||
IMAGE08/*
|
||||
IMAGE16/*
|
||||
SOUND/*
|
||||
|
18
README.md
18
README.md
@ -22,12 +22,11 @@ Currently, no source code has been publicly released for Speedy Blupi. We are u
|
||||
- Making it multiplatform (Android and web browser too)
|
||||
|
||||
## Development
|
||||
|
||||
Some demangled symbol names are taken from the 2013 Windows Phone version of Speedy Blupi, which we inspected using ILSpy. Big thanks to Ч.У.Ш on the 4PDA forum for archiving this obscure version of the game!!!
|
||||
Some demangled symbol names are taken from the 2013 Windows Phone version of Speedy Blupi, which we inspected using ILSpy. Big thanks to Ч.У.Ш on the 4PDA forum for archiving this obscure version of the game!!!
|
||||
|
||||
Gameplay is functional, but defective and missing many features.
|
||||
Gameplay is functional, but defective and missing many features.
|
||||
|
||||
These files currently need the **most attention**, in order of priority:
|
||||
These files currently need the **most attention**, in order of priority:
|
||||
- event.cpp
|
||||
- decblupi.cpp
|
||||
- decio.cpp
|
||||
@ -38,7 +37,7 @@ These files currently need the **most attention**, in order of priority:
|
||||
- decor.cpp
|
||||
- misc.cpp
|
||||
|
||||
These files are tentatively **complete**, but require further testing:
|
||||
These files are tentatively **complete**, but require further testing:
|
||||
- blupi.cpp
|
||||
- button.cpp
|
||||
- jauge.cpp
|
||||
@ -53,8 +52,7 @@ These files are tentatively **complete**, but require further testing:
|
||||
|
||||
### Clone with git
|
||||
|
||||
#### Init and update submodules
|
||||
|
||||
#init and update submodules
|
||||
git submodule init
|
||||
git submodule update
|
||||
|
||||
@ -72,7 +70,7 @@ https://drive.openeggbert.com/other/Visual_Studio_Community_2017.exe
|
||||
|
||||
Click on "Speedy Eggbert 2 Source.sln" and select Open with "Microsoft Visual Studio 2017"
|
||||
|
||||
Set the Platform to x86 and debugging to Win32.
|
||||
Set the Platform to x86 and Debugging to Win32.
|
||||
|
||||
#### Set "Additional Options"
|
||||
|
||||
@ -80,6 +78,10 @@ Properties / Configuration Properties / C/C++ / Command Line / Additional Option
|
||||
|
||||
Add : /wd4700 /wd4703
|
||||
|
||||
#### Platform Toolset - v140
|
||||
|
||||
Project Properties > General > change Platform Toolset from v140_xp to v140,
|
||||
|
||||
#### Build
|
||||
|
||||
Click with the right mouse button on "Speedy Eggbert 2 Source.sln"
|
||||
|
@ -30,7 +30,7 @@
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<PlatformToolset>v140_xp</PlatformToolset>
|
||||
<PlatformToolset>v140</PlatformToolset>
|
||||
<CharacterSet>NotSet</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
@ -84,6 +84,7 @@
|
||||
<FavorSizeOrSpeed>Neither</FavorSizeOrSpeed>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<IntrinsicFunctions>false</IntrinsicFunctions>
|
||||
<AdditionalOptions>/wd4700 /wd4703 %(AdditionalOptions)</AdditionalOptions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
|
Loading…
x
Reference in New Issue
Block a user