Jump to content
The Dark Mod Forums

GUI features: runScript and namedEvent


stgatilov

Recommended Posts

There was an idea to add two features to GUI scripts (6164).


The first one is runScript command, which allows GUI script to call a function from game script.
Interestingly, this feature is already supported in the GUI engine, but the game code only processes this command when the player clicks left mouse button on the GUI (i.e. usually it works in onAction handler, but not in namedEvent or onTime handlers).

Obviously, ID initially did not envision runScript as a global feature which works the same way everywhere, their idea was that it is context-sensitive, and whoever calls the GUI code can then pull the commands generated by the call and do whatever he wants with them.
I'm not sure I really want to change this architecture...

Anyway: what are the possible use cases for runScript command?


The second feature is namedEvent command, which simply generates/calls a named event with specified name on the whole UI, which can be then handled by matching onNamedEvent handlers.

However, this command can be implemented in several ways:

  1. Whenever namedEvent command is executed, the named event is processed immediately. The rest of the script (after namedEvent command) is continued only after generated named event is fully processed.
  2. Whenever namedEvent command is executed, named event is put into some kind of queue, then the current script continues to execute. The generated named event is executed at some moment later, but surely on the current frame.
  3. The point 2 can be further differentiated on the exact order when generated named events are processed.

So the first approach is how functions normally behave in normal imperative languages, with a real call stack.
The second approach is delayed execution, like what we currently do with "resetTime X; -> X::onTime 0 {...}" combo (at least everywhere in the main menu GUI).

My worry with the first approach is that it is an major change for GUI engine with no past experience, and it will probably not match well with the long-established GUI wierdness (I mean e.g. the wierdness that all expressions in GUI script are executed before the script commands start executing).
And it would work different both from the "resetTime + onTime 0" combo.

On the other hand, the callGui in game scripts do execute named event immediately.
And I must admit nested GUI calls could be used to reduce the issues from the GUI weirdness mentioned above.

Also, this command exists in Quake 4, but I'm not sure how exactly it works.
And it's probably good idea to make TDM work the same way.

  • Like 4
Link to comment
Share on other sites

These are my initial thoughts for possible use cases (copied from the linked bug tracker entry).

1) In the recent thread

@datiswous asked if it was possible to develop a template for an enhanced type of briefing where people could specify a different background for each page of text (possibly by having different xdata items for each page)
2) It would also make it easier to develop a in-game journal type of readable which is added to when the player does certain actions. A current example of this is done in the first mission (Monastery) of a House of Locked Secrets but the implementation is quite cumbersome because
a) Each xdata item contains the whole contents of the 'previous' xdata item plus the added text.
b) The in-game actions have to be performed in a pre-determined order.
3) Readables could be made more sophisticated e.g. having tabbed pages (e.g. in a paper address book).
4) You could have dynamic entity guis (e.g. destination displays at railway stations which change when the train has left).

I'm willing to expand on these if needed

Edited by boissiere
  • Like 2
  • Thanks 1
Link to comment
Share on other sites

Nice knowing you are looking at this. :) 

Btw when I made my own version of "namedEvent" gui cmd, I just copied the convention of other gui cmds like the "localSound" cmd, what I found is that it made the usage of simple nameEvents in GUI's very fast, with no need to mess with c++ and compile the engine. I think exactly the same reason quake 4 developers said they implemented it, thou like you said we don't know how they made their version. 

Perhaps is why I had some issues with my implementation when trying to call more complex onNamedEvents, so is something that needs to be well tested.

Simple example of usage (the following code is untested and should be looked as "pseudo" code)

windowDef Desktop
{
	rect	0,0,640,480
	backcolor 0,0,0,1
	menugui 1
	
	float "text_state" 0
	
	onInit {
		// just in case ...
		if("Desktop::text_state" != 0) {
			set "Desktop::text_state" "0";
		}	
	}
	
	//*************** Events *************************
	onNamedEvent ClearText {
		set "Text::text" "";
		set "Desktop::text_state" "0";
	}
	
	onNamedEvent SetText {
		set "Text::text" "Hello world";
		set "Desktop::text_state" "1";
	}
	//************************************************
	
	
	windowDef Text
	{
		rect	240,41,165,110
		visible	1
		forecolor	1,1,1,1
		text	""
		textscale	0.5
		font	"fonts/micro"
		textalign	1
	}
	
	windowDef back_btn
	{
		rect (320-55),(240-35),50,30
		visible 1
		text	"Click Me"
		textalign 1
		textscale	0.3
		font	"fonts/an"
		
		
		onActionRelease {
			if("Desktop::text_state" == 1){
				namedEvent "ClearText";
			} else {
				namedEvent "SetText";
			}
		}
	}
}

 

Edited by HMart
Link to comment
Share on other sites

  

23 hours ago, boissiere said:

These are my initial thoughts for possible use cases (copied from the linked bug tracker entry).

I guess I'll copy my answer too.

Quote

1) In the recent thread @datiswous asked if it was possible to develop a template for an enhanced type of briefing where people could specify a different background for each page of text (possibly by having different xdata items for each page)
2) It would also make it easier to develop a in-game journal type of readable which is added to when the player does certain actions. A current example of this is done in the first mission (Monastery) of a House of Locked Secrets but the implementation is quite cumbersome
3) Readables could be made more sophisticated e.g. having tabbed pages (e.g. in a paper address book).

I think all these use cases are blocked by the fact the TDM core readable scripts don't support them.

If you want to use TDM's readable code, then you have to respect its boundaries/interface. If it does not normally support something, then you can't do it while using them, regardless of what features GUI scripting or game scripting supports.


On the other hand, let's suppose someone is willing to implement a fully custom GUI + script, without support --- i.e. no readable.guicode, no xdata, etc.
In this case, he needs to put control logic somewhere.

Putting it both in GUI code and game scripts would generate confusion, bugs, and maybe even race conditions.
Putting it only on GUI side is bad simply because GUI scripting is bad.
The only viable solution is to put all the logic into game script.

But if all the logic is in game script, then GUI does not need the runScript command.
It should only set some of its own gui variables as "requests", so that later the game script could detect these requests and process them.
At least that's how TDM core readable support works.

Link to comment
Share on other sites

15 hours ago, stgatilov said:

I think all these use cases are blocked by the fact the TDM core readable scripts don't support them.

If you want to use TDM's readable code, then you have to respect its boundaries/interface. If it does not normally support something, then you can't do it while using them, regardless of what features GUI scripting or game scripting supports.

Can someone override core readable scripts for their mission?

Link to comment
Share on other sites

1 hour ago, datiswous said:

Can someone override core readable scripts for their mission?

It's funny you should ask that because I've been thinking about this a bit and am now wondering if my use cases 2 and 3 (more dynamic in-game readables) are actually possible with the existing system.

I'm not sure you would want to actually override the existing scripts but more likely add in new scripts into the existing system. I might have a go at at this weekend.

Link to comment
Share on other sites

6 hours ago, datiswous said:

Can someone override core readable scripts for their mission?

You can probably write a new one, and use it in your readables.
If you override existing one, the next change in core will break your mission.

The only question is: is there any hardcoded stuff in C++ connected to readables?

Link to comment
Share on other sites

  • 1 month later...

I rather regret that the namedEvent and runScript ideas were put in the same bugtracker request, since they each clearly justify their own topic.

From the discussion above, it seems that namedEvent would be easier/safer to implement this round.

It appears runScript is more problematic, and furthermore, may not be the only or best way to implement new capabilities for readables. The latter (e.g., tabs, different backdrops for different pages) probably also needs a separate bugtracker item.

Turning to namedEvent...

@stgatilov in the OP was wondering about whether the in-GUI call to namedEvent should be synchronous (i.e., happen immediately) or asynchronous. Synchronous is easier for the script writer to think about, and would be my preference. As he indicates, this would be less like other gui script aspects (some of them "weird"), but more like calls to gui named events from doomscript. And, by introducing nested call stacks, he thinks may provide future opportunities for reduction in weirdness.

It is unclear to me if HMart's implementation is synchronous or asynchronous.

Probably we should not worry about whether this usage is consistent with Quake 4, since we'll probably never know.

Link to comment
Share on other sites

On 12/5/2023 at 6:53 PM, Geep said:

It is unclear to me if HMart's implementation is synchronous or asynchronous.

My implementation is just a simple gui script cmd, is very naive and just follows the same system of other existing gui script cmds, made by idSoftware.

I have zero idea if is synchronous or asynchronous that is beyond my expertise, nor if it is the same as done in Quake 4.

Plus like I said above I do remember experiencing some small problems with it, when trying to use it to call more complex namedEvent's, that may be connected to the "synchronous or asynchronous" stuff.

  • Like 1
Link to comment
Share on other sites

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

    • nbohr1more

      Was checking out old translation packs and decided to fire up TDM 1.07. Rightful Property with sub-20 FPS areas yay! ( same areas run at 180FPS with cranked eye candy on 2.12 )
      · 2 replies
    • taffernicus

      i am so euphoric to see new FMs keep coming out and I am keen to try it out in my leisure time, then suddenly my PC is spouting a couple of S.M.A.R.T errors...
      tbf i cannot afford myself to miss my network emulator image file&progress, important ebooks, hyper-v checkpoint & hyper-v export and the precious thief & TDM gamesaves. Don't fall yourself into & lay your hands on crappy SSD
       
      · 5 replies
    • OrbWeaver

      Does anyone actually use the Normalise button in the Surface inspector? Even after looking at the code I'm not quite sure what it's for.
      · 7 replies
    • Ansome

      Turns out my 15th anniversary mission idea has already been done once or twice before! I've been beaten to the punch once again, but I suppose that's to be expected when there's over 170 FMs out there, eh? I'm not complaining though, I love learning new tricks and taking inspiration from past FMs. Best of luck on your own fan missions!
      · 4 replies
    • The Black Arrow

      I wanna play Doom 3, but fhDoom has much better features than dhewm3, yet fhDoom is old, outdated and probably not supported. Damn!
      Makes me think that TDM engine for Doom 3 itself would actually be perfect.
      · 6 replies
×
×
  • Create New...