Jump to content
The Dark Mod Forums

Recommended Posts

Posted

Dear all,

Is there anyway we can maintain backwards compatibility in the scripting system?

In example, the below function was introduced in tdm_events.script in TDM 2.11:

scriptEvent void removeFrobPeer(entity peer);

Is there something such us the below or can you think of any other way?

if (funcExists("removeFrobPeer"))
{

}

Many thanks in advance.

TDM_Modpack_Thumb_50.png

Posted

Hum personally I don't think that exists, at lest for all functions, I could be wrong thou. 

But TDM, coming from Doom 3 should support

https://modwiki.dhewm3.org/HasFunction_(script_event)

but this is particular to script objects/entities and not to ask if some generic global script function exists anywhere and I don't really know how that would be implemented.

But couldn't script macros be used for that? Something like SDL does.

// based verbatin from SDL version define

#define TDM_VERSIONNUM(X, Y, Z)                     \
    ((X)*1000 + (Y)*100 + (Z))

#define TDM_COMPILEDVERSION \
    TDM_VERSIONNUM(TDM_MAJOR_VERSION, TDM_MINOR_VERSION, TDM_PATCHLEVEL)

#define TDM_VERSION_ATLEAST(X, Y, Z) \
    (TDM_COMPILEDVERSION >= TDM_VERSIONNUM(X, Y, Z))

#if TDM_VERSION_ATLEAST(2, 11, 0)
	// run this func only in TDM 2.11 or above
	func(){
		do stuff;
	}
#endif

Not totally sure if script language macro support is robust enough for this but it should be.

Posted

I can tell tell your idea would work, but I am unable to get the current version.

#define TDM_COMPILEDVERSION getTDMVersion()

returns zero and:

#define TDM_COMPILEDVERSION sys.getTDMVersion()

doesn't work: can't evaluate undefined macro 'sys', substituted with zero

TDM_Modpack_Thumb_50.png

Posted (edited)

Sorry my reply was a bit confusing, those macros aren't defined anywhere (thou you can define them yourself...), it was only a idea for the TDM team to implement if they wanted. Sorry for making you waste your time chacing nothing. 

TDM_MAJOR_VERSION, TDM_MINOR_VERSION and TDM_PATCHLEVEL (and the rest)  need to be defined/created by the TDM team, and made part of the standard game defines, you can define them yourself, but that would be useless to anyone else, because only you would have those defines in your copy of the game, so right now afaik there's no way to do what you want, unless the TDM team creates those or something like those macros. I hope this is more understandable. 

Edited by HMart
Posted

Hmm Licensee.h appears to have these defined ( from svn ) :

 
#define GAME_NAME "The Dark Mod" // appears on window titles and errors
 
// greebo: Defines the darkmod release version
#define TDM_VERSION_MAJOR 2
#define TDM_VERSION_MINOR 12
#define GAME_API_VERSION TDM_VERSION_MAJOR * 100 + TDM_VERSION_MINOR // e.g. 210

#define ENGINE_VERSION "TDM 2.12" // printed in console

https://github.com/stgatilov/darkmod_src/blob/40db9596fcbf4fa3da42b3d89be0bd785620d154/framework/Licensee.h

Does calling sys.getTDMVersion()  without any define return the correct value?

I am guessing if you wanna use this in a script you just:

float tdm_version_val = sys.getTDMVersion();

if ( tdm_version_val < 2.11 ) { something } ;

Please visit TDM's IndieDB site and help promote the mod:

 

http://www.indiedb.com/mods/the-dark-mod

 

(Yeah, shameless promotion... but traffic is traffic folks...)

Posted
32 minutes ago, nbohr1more said:

Does calling sys.getTDMVersion()  without any define return the correct value?

Yes, it returns the correct value: 210, 211...

33 minutes ago, nbohr1more said:

I am guessing if you wanna use this in a script you just:

float tdm_version_val = sys.getTDMVersion();

if ( tdm_version_val < 2.11 ) { something } ;

The problem is that something contains a function that didn't exist in previous versions, and TDM refuses to launch:

Error during initialization. Error: file script\X.script, line Y: Unknown value "removeFrobPeers"

HMart's method however, seems to be more indulgent and anything in between #if #endif gets a pass, according to my tests.

46 minutes ago, nbohr1more said:

Hmm Licensee.h appears to have these defined ( from svn ) :

#define GAME_NAME "The Dark Mod" // appears on window titles and errors
 
// greebo: Defines the darkmod release version
#define TDM_VERSION_MAJOR 2
#define TDM_VERSION_MINOR 12
#define GAME_API_VERSION TDM_VERSION_MAJOR * 100 + TDM_VERSION_MINOR // e.g. 210

#define ENGINE_VERSION "TDM 2.12" // printed in console

https://github.com/stgatilov/darkmod_src/blob/40db9596fcbf4fa3da42b3d89be0bd785620d154/framework/Licensee.h

I cannot retrieve the values of these identifiers in a script:

...

#define TDM_VERSION_ATLEAST(X) \
	(X >= TDM_VERSION_MINOR)

...

#if TDM_VERSION_ATLEAST(11)

...

#endif

...

 

TDM_Modpack_Thumb_50.png

Posted

Hmm...

Pretty hacky, but I wonder if you could use something like this?

 

float tdm_version_val = sys.getTDMVersion();

if ( tdm_version_val > 2.11 ) { 

string tempvalue = removeFrobPeers ;

tempvalue(entity peer) ;

} ;

 

Please visit TDM's IndieDB site and help promote the mod:

 

http://www.indiedb.com/mods/the-dark-mod

 

(Yeah, shameless promotion... but traffic is traffic folks...)

Posted

Hacky indeed!

if ( tdm_version_val > 211 ) { // no dot

string tempvalue = "removeFrobPeers" ; // quotes

tempvalue(entity peer) ;

} ; 

No joy, though:

Error during initialization. Error: file script\X.script, line Y: idTypeDef::FieldType: tried to get field type on non-field type

 

It is ok, I guess... Nobody apparently ever had a need for such backwards compatibility anyway, short or long term. Let's forget it. Forward it is!

Many thanks for the support.

TDM_Modpack_Thumb_50.png

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recent Status Updates

    • JackFarmer

      "Hidden Hands: Vitalic Fever" - new update available including subtitles & compressed briefing video (thanks to @datiswous) and several fixes.
      · 0 replies
    • Wolfmond

      🇬🇧

      2025-04-20
      I'd like to track my level design progress a bit more often now, so I'm using the feed in my profile here.
      I've been working intensively on Springheel's YouTube course over the past few days. I'm currently up to lesson 8. There is so much information that needs to be processed and practiced. 
      I have started to create my own house. As I don't have the imagination to create a good floor plan, I grabbed a floor plan generator from Watabou and experimented with it. I chose a floor plan that I will modify slightly, but at least I now have an initial idea. 
      I used two guards as a measuring tape: The rooms are two guards high. It turned out that I can simply double the number of boxes in DarkRadiant in grid size 8 that are drawn in the floor plan. 
      I practiced the simplest things on the floor plan first. Drawing walls, cutting walls, inserting doors, cutting out frames, creating VisPortals, furnishing rooms.
      I have had my first success in creating a book. Creating a book was easier than I thought. I have a few ideas with books. The level I'm creating will be more or less a chill level, just for me, where I'll try out a few things. I don't have an idea for my own mission yet. I want to start small first.
      For the cellar, I wanted to have a second entrance, which should be on the outside. I'm fascinated by these basement doors from the USA, I think they're called Bilco basement doors. They are very unusual in Germany, but this type of access is sometimes used for deliveries to restaurants etc., where barrels can be rolled or lifted into the cellar. 
      I used two Hatch Doors, but they got completely disoriented after turning. I have since got them reasonably tamed. It's not perfect, but it's acceptable. 
      In the cellar today I experimented with a trap door that leads to a shaft system. The rooms aren't practically finished yet, but I want to continue working on the floor plan for now. I'll be starting on the upper floor very soon.

      __________________________________________________________________________________
      🇩🇪

      2025-04-20

      Ich möchte nun mal öfters ein bisschen meinen Werdegang beim Leveldesign tracken, dazu nutze ich hier den Feed in meinem Profil.
      Ich habe mich in den vergangenen Tagen intensiv mit dem Youtube-Kurs von Springheel beschäftigt. Aktuell bin ich bis zu Lektion 8 gekommen. Das sind so viele Informationen, die erstmal verarbeitet werden wollen und trainiert werden wollen. 

      Ich habe mich daran gemacht, ein eigenes Haus zu erstellen. Da mir die Fantasie fehlt, einen guten Raumplan zu erstellen, habe ich mir einen Grundrissgenerator von Watabou geschnappt und damit experimentiert. Ich habe mich für einen Grundriss entschieden, den ich noch leicht abwandeln werde, aber zumindest habe ich nun eine erste Idee. 

      Als Maßband habe ich zwei Wächter genommen: Die Räume sind zwei Wächter hoch. Es hat sich herausgestellt, dass ich in DarkRadiant in Gittergröße 8 einfach die doppelte Anzahl an Kästchen übernehmen kann, die im Grundriss eingezeichnet sind. 

      Ich habe bei dem Grundriss erstmal die einfachsten Sachen geübt. Wände ziehen, Wände zerschneiden, Türen einsetzen, Zargen herausschneiden, VisPortals erstellen, Räume einrichten.

      Ich habe erste Erfolge mit einem Buch gehabt. Das Erstellen eines Buchs ging leichter als gedacht. Ich habe ein paar Ideen mit Bücher. Das Level, das ich gerade erstelle, wird mehr oder weniger ein Chill-Level, einfach nur für mich, bei dem ich ein paar Sachen ausprobieren werde. Ich habe noch keine Idee für eine eigene Mission. Ich möchte erst einmal klein anfangen.

      Beim Keller wollte ich gerne einen zweiten Zugang haben, der sich außen befinden soll. Mich faszinieren diese Kellertüren aus den USA, Bilco basement doors heißen die, glaube ich. Diese sind in Deutschland sehr unüblich, diese Art von Zugängen gibt es aber manchmal zur Anlieferung bei Restaurants etc., wo Fässer dann in den Keller gerollt oder gehoben werden können. 
      Ich habe zwei Hatch Doors verwendet, die allerdings nach dem Drehen vollkommen aus dem Ruder liefen. Inzwischen habe ich sie einigermaßen gebändigt bekommen. Es ist nicht perfekt, aber annehmbar. 
      Im Keller habe ich heute mit einer Falltür experimentiert, die zu einem Schachtsystem führt. Die Räume sind noch quasi nicht eingerichtet, aber ich möchte erstmal am Grundriss weiterarbeiten. In Kürze fange ich das Obergeschoss an.



      · 2 replies
    • JackFarmer

      On a lighter note, thanks to my cat-like reflexes, my superior puzzle skills and my perfect memory, I was able to beat the remastered version of "Tomb Raider: The Last Revelation" in a new superhuman record time of 23 h : 35 m, worship me!
      · 3 replies
    • Goblin of Akenash

      My mapping discord if anyone is interested, its more of a general modding thing rather than just for TDM 
      https://discord.gg/T4Jt4DdmUb

       
      · 0 replies
    • nbohr1more

      2.13 Moddb Article is up: https://www.moddb.com/mods/the-dark-mod/news/the-dark-mod-213-is-here
      · 1 reply
×
×
  • Create New...