-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
136 changed files
with
210 additions
and
50 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[IPX] | ||
Enable=0 | ||
Connection=0 | ||
ipx=false | ||
|
||
[autoexec] | ||
# Lines in this section will be run at startup. | ||
|
||
imgmount D "../game.ins" -t iso -fs iso | ||
mount C ".." | ||
C:\Extract\xxcopy16.exe d:\ C:\Extract\CD_Files /s /y | ||
exit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
if not exist "CD_Files" mkdir "..\CD_Files" | ||
..\DOSBOX\dosbox.exe -conf "dosboxExtract-GOG-CD.conf" -c exit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/bin/bash | ||
|
||
if [ "$#" -ne 2 ]; then | ||
echo 'Usage: extract-GOG-CD.sh [PATH_TO_GOG_INSTALLER] [PATH_TO_BUILD_DIRECTORY]' | ||
echo '' | ||
echo 'Example: extract-GOG-CD.sh ~/Downloads/setup_magic_carpet_2_1.0_(28044).exe ~/dev/remc2_release' | ||
return | ||
fi | ||
|
||
INSTALLER="$1" | ||
BUILD_DIR="$2" | ||
|
||
if [ ! -f "${INSTALLER}" ]; then | ||
echo "${INSTALLER} does not exist." | ||
return | ||
fi | ||
if [ ! -d "${BUILD_DIR}" ]; then | ||
echo "${BUILD_DIR} is not a directory." | ||
return | ||
fi | ||
|
||
rm -rf temp_mc2 | ||
mkdir temp_mc2 | ||
cd temp_mc2 | ||
|
||
innoextract "${INSTALLER}" | ||
|
||
cp -r GAME/NETHERW "${BUILD_DIR}" | ||
|
||
mkdir Extract | ||
cd Extract | ||
mkdir CD_Files | ||
cp ../../XXCOPY16.EXE . | ||
|
||
# NOTE: could be avoided by mounting the bin/cue (aka gog/ins) image directly | ||
dosbox -conf "../../dosboxExtract-GOG-CD.conf" -c exit | ||
|
||
mv CD_Files "${BUILD_DIR}" | ||
|
||
cd ../.. | ||
rm -rf temp_mc2 |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Rebuild of Game Magic Carpet2 | ||
|
||
INSTALL | ||
Copy files from original CD(or from mounted CD image MC2.dat in GOG version) | ||
to folder "original-game" and run game by remc2.exe. | ||
|
||
ERRORS | ||
When you have problems with missing DLL, install VC_redist.x86.exe | ||
|
||
|
||
Fullscreen can toggle by ATL+ENTER. |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,31 @@ | ||
; Test config file for ini_example.c and INIReaderTest.cpp | ||
|
||
|
||
[protocol] ; Protocol configuration | ||
|
||
version=6 ; IPv6 | ||
|
||
|
||
[user] | ||
|
||
name = Bob Smith ; Spaces around '=' are stripped | ||
|
||
email = [email protected] ; And comments (like this) ignored | ||
|
||
active = true ; Test a boolean | ||
pi = 3.14159 ; Test a floating point number | ||
|
||
[debug] | ||
|
||
[main] | ||
;gamepath = ../../Magic2/mc2-orig-copy | ||
;gamepath = ../../Magic2/mc2-orig-c2 | ||
gamepath = original-game | ||
gameFolder = NETHERW ; Main game content folder (after install). Path is relative to .exe | ||
cdFolder = CD_Files ; Main game cd content folder (after install). Path is relative to .exe | ||
|
||
|
||
[skips] | ||
skipintro = true | ||
|
||
[sound] | ||
hqsound = true ; sound is transfered from 11025,8bit,mono to 44000,16bit,stereo | ||
hqsound = true ; sound is transfered from 11025,8bit,mono to 44000,16bit,stereo | ||
oggmusic = true ; using AWE32 record of MIDI music, for this function is hqsound auto enabled | ||
oggmusicpath = ../../remc2/Debug/music-ogg/ ; directory with music, you can rewrite with own music too | ||
oggmusicFolder = music-ogg ; directory with music, you can rewrite with own music too. Path is relative to .exe | ||
oggmusicalternative = true ; use original and alternative sound tracks | ||
fixspeedsound = false ; set true when sounds play double speed | ||
|
||
[graphics] | ||
defaultresolution = 640x480 ; can use only 320x200 or 640x480 | ||
biggraphicspath = biggraphics/ ; directory with 128x128 textures(upscaled by AI) | ||
texturepixels = 128 ; 16 or 32 pixels use original graphics files, 128 use upscaled graphics | ||
useEnhancedGraphics = true ; if set to true, bigGraphicsFolder must be set as well | ||
bigGraphicsFolder = biggraphics ; directory with 128x128 textures(upscaled by AI). Path is relative to .exe | ||
gameResWidth = 1024 ; | ||
gameResHeight = 768 ; | ||
maintainAspectRatio = true ; If set to false, whole window will be used for menu screen etc... stretching content | ||
sky = true ; | ||
reflections = true ; | ||
dynamicLighting = true ; | ||
|
||
[game] | ||
speed = 35 ; speed game, millisecond between frames (1000/FPS) | ||
speed = 30 ; speed game, millisecond between frames (1000/FPS) | ||
animspeed = 100 ; speed videos, millisecond between frames (1000/FPS) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[IPX] | ||
Enable=0 | ||
Connection=0 | ||
ipx=false | ||
|
||
[autoexec] | ||
# Lines in this section will be run at startup. | ||
|
||
imgmount D "../game.ins" -t iso -fs iso | ||
mount C ".." | ||
C:\Extract\xxcopy16.exe d:\ C:\Extract\CD_Files /s /y | ||
exit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
.\original-game-GOG\DOSBOX\dosbox.exe -conf ".\dosbox-copy.conf" -c exit | ||
if not exist "CD_Files" mkdir "..\CD_Files" | ||
..\DOSBOX\dosbox.exe -conf "dosboxExtract-GOG-CD.conf" -c exit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/bin/bash | ||
|
||
if [ "$#" -ne 2 ]; then | ||
echo 'Usage: extract-GOG-CD.sh [PATH_TO_GOG_INSTALLER] [PATH_TO_BUILD_DIRECTORY]' | ||
echo '' | ||
echo 'Example: extract-GOG-CD.sh ~/Downloads/setup_magic_carpet_2_1.0_(28044).exe ~/dev/remc2_release' | ||
return | ||
fi | ||
|
||
INSTALLER="$1" | ||
BUILD_DIR="$2" | ||
|
||
if [ ! -f "${INSTALLER}" ]; then | ||
echo "${INSTALLER} does not exist." | ||
return | ||
fi | ||
if [ ! -d "${BUILD_DIR}" ]; then | ||
echo "${BUILD_DIR} is not a directory." | ||
return | ||
fi | ||
|
||
rm -rf temp_mc2 | ||
mkdir temp_mc2 | ||
cd temp_mc2 | ||
|
||
innoextract "${INSTALLER}" | ||
|
||
cp -r GAME/NETHERW "${BUILD_DIR}" | ||
|
||
mkdir Extract | ||
cd Extract | ||
mkdir CD_Files | ||
cp ../../XXCOPY16.EXE . | ||
|
||
# NOTE: could be avoided by mounting the bin/cue (aka gog/ins) image directly | ||
dosbox -conf "../../dosboxExtract-GOG-CD.conf" -c exit | ||
|
||
mv CD_Files "${BUILD_DIR}" | ||
|
||
cd ../.. | ||
rm -rf temp_mc2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/bin/bash | ||
|
||
if [ "$#" -ne 2 ]; then | ||
echo 'Usage: extract-GOG-CD.sh [PATH_TO_GOG_INSTALLER] [PATH_TO_BUILD_DIRECTORY]' | ||
echo '' | ||
echo 'Example: extract-GOG-CD.sh ~/Downloads/setup_magic_carpet_2_1.0_(28044).exe ~/dev/remc2_release' | ||
return | ||
fi | ||
|
||
INSTALLER="$1" | ||
BUILD_DIR="$2" | ||
|
||
if [ ! -f "${INSTALLER}" ]; then | ||
echo "${INSTALLER} does not exist." | ||
return | ||
fi | ||
if [ ! -d "${BUILD_DIR}" ]; then | ||
echo "${BUILD_DIR} is not a directory." | ||
return | ||
fi | ||
|
||
rm -rf temp_mc2 | ||
mkdir temp_mc2 | ||
cd temp_mc2 | ||
|
||
innoextract "${INSTALLER}" | ||
|
||
cp -r GAME/NETHERW "${BUILD_DIR}" | ||
|
||
mkdir Extract | ||
cd Extract | ||
mkdir CD_Files | ||
cp ../../XXCOPY16.EXE . | ||
|
||
# NOTE: could be avoided by mounting the bin/cue (aka gog/ins) image directly | ||
dosbox -conf "../../dosboxExtract-GOG-CD.conf" -c exit | ||
|
||
mv CD_Files "${BUILD_DIR}" | ||
|
||
cd ../.. | ||
rm -rf temp_mc2 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project> | ||
<ProjectOutputs> | ||
<ProjectOutput> | ||
<FullPath>C:\prenos\remc2-dev\Release\remc2.exe</FullPath> | ||
</ProjectOutput> | ||
</ProjectOutputs> | ||
<ContentFiles /> | ||
<SatelliteDlls /> | ||
<NonRecipeFileRefs /> | ||
</Project> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project> | ||
<ProjectOutputs> | ||
<ProjectOutput> | ||
<FullPath>C:\prenos\remc2-dev\x64\Release\remc2.exe</FullPath> | ||
</ProjectOutput> | ||
</ProjectOutputs> | ||
<ContentFiles /> | ||
<SatelliteDlls /> | ||
<NonRecipeFileRefs /> | ||
</Project> |
Binary file not shown.
Binary file not shown.
Binary file not shown.