forked from camgunz/d2k
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add demo state dump support Remove support for SMP rendering (following the lead of Pr+) Use fixed-width types instead of the (u)int_64_t types (mostly) MULTINET also has to mean (!netdemo); fixed
- Loading branch information
Showing
25 changed files
with
1,359 additions
and
137 deletions.
There are no files selected for viewing
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,12 @@ | ||
#!/bin/sh | ||
|
||
CMD="cbuild/d2k -iwad doom2.wad -file gothicdm.wad -nomouse -playdemo DEMO1 -dumpdemo d2kdump.bin" | ||
|
||
./build.sh || exit 1 | ||
#$CMD | ||
# gdb --args $CMD | ||
# gdb -ex run --args $CMD | ||
gdb -ex "source gdbdemo.txt" --args $CMD | ||
|
||
mv d2kdump.bin ../democomp/d2kdump.bin | ||
|
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 @@ | ||
break w_wad.c:371 | ||
run |
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,10 @@ | ||
set logging on | ||
set logging file gdb.log | ||
set logging overwrite on | ||
set logging redirect on | ||
watch rng.prndindex | ||
commands | ||
bt | ||
continue | ||
end | ||
run |
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
Oops, something went wrong.