News:

Herr Otto Partz says you're all nothing but pipsqueaks!

Main Menu

Recent posts

#91
Competition 2025 / Re: ZCT283 - Shadowplay
Last post by HerrNove - March 03, 2025, 05:56:58 PM
Betting is fun. Let's say my beginner's opinion, so that the events can prove me wrong.

A Lotus domination is not a given. The Diablo has great potential, MiDiaN holds #2 time in it. Given that top speed and car bonus seem the most important factors here, I'd even say the Countach has chances, but at present it seems not to be happening.
#92
Competition 2025 / Re: ZCT283 - Shadowplay
Last post by alanrotoi - March 03, 2025, 05:37:11 PM
I only know my podium presence is compromised.
#93
Competition 2025 / Re: ZCT283 - Shadowplay
Last post by Duplode - March 03, 2025, 04:07:01 PM
With the final week underway, does anyone dare to bet about cars? Is the Lotus domination about to be confirmed?
#94
General Chat - ZSC / Re: Statistics!
Last post by alanrotoi - March 01, 2025, 03:28:09 AM
Number of race winners per season:

You cannot view this attachment.
#95
Stunts Reverse Engineering / Re: restunts: someone able to ...
Last post by Matei - February 28, 2025, 06:25:34 PM
If it runs in DosBOX, Stunts uses SDL. Solved.
#96
Stunts Reverse Engineering / Re: restunts: someone able to ...
Last post by llm - February 28, 2025, 06:21:45 AM
QuoteI guess "calvin" forgot to pack his cl.exe in the tools.

i think the cl.exe is a more recent microsoft cl compiler - so VS2010-VS2013 or something of that time

this compiler-suite is GBs in size and it makes not sense to add it to the repo

Quote...problem in the makefile...

i think thats the case - this stuff just needs a fix :)
#97
Stunts Reverse Engineering / Re: restunts: someone able to ...
Last post by HerrNove - February 28, 2025, 01:21:29 AM
Similar problem for me. Building under Linux/Wine, which does not provide `cl`, I get

Can't recognise 'cl /MD /c /EHsc /Is:\src\sdl\include /I../c /DRESTUNTS_SDL /Zi
/Fobuild\main.obj main.cpp' as an internal or external command, or batch script.

I guess "calvin" forgot to pack his cl.exe in the tools.

Moreover: the line cl.exe stumbles on in your attempt is

void mat_mul_vector2(struct VECTOR* invec, struct MATRIX far* mat, struct VECTOR* outvec);
So almost certainly it does not like the "far" keyword. Now, in the code there are some constructions such as

#ifdef RESTUNTS_SDL
#define far
#endif

but either RESTUNTS_SDL is not defined (problem in the makefile) or someone forgot to add this snippet to math.h.
#98
Stunts Reverse Engineering / Re: restunts: build repldump-o...
Last post by HerrNove - February 28, 2025, 01:15:53 AM
Works fine for me. I think you must build restunts first to create `src\restunts\c\build\dos\fileio.obj`, then (without cleaning the workspace) you can build repldump-orginal. Possibly a missing dependency in the makefile.
#99
Stunts Reverse Engineering / Re: New mod: extended line of ...
Last post by Cas - February 27, 2025, 06:35:12 PM
It's a really good thing to do. I like writing and documenting. I've written several Wiki articles, for example. I'll sure follow your example on my next project... when I have the time
#100
Stunts Reverse Engineering / Re: Restunts repository - Git ...
Last post by Duplode - February 27, 2025, 03:16:12 PM
Pinning this topic (now with the updated GitHub link in the first post!) for extra visibility.

In related news, I have moved my Restunts fork to GitHub as well: https://github.com/duplode/restunts . There you can find the mods/daf-museum-edition branch, with the UI patches for the DAF museum exposition. Next step for me will be setting up @HerrNove 's Wine build process here.