Shadow_Code
#3061 posted by metlslime on 2021/10/05 00:39:14
In the past, people have had this issue because there is something inconsistent about the order of precaches in their code. But, I think that would only show up as a problem when loading a savegame or playing a demo.
Darkplaces might(?) have a feature that auto-caches when you try to play a sound that was not precached. If that's true, perhaps this creates the inconsistent order (becuase it could depend on player actions.)
So, make sure you are precaching all sounds you use in worldspawn or one of the other spawn functions, and, make sure nothing in the spawn logic can randomize the order of the precaches.
Metlslime
#3062 posted by Shadow_Code on 2021/10/05 05:02:33
Thank you very much for your help.
Metlslime
#3063 posted by Shadow_Code on 2021/10/05 05:12:34
What about multiple instances of the same sound getting pre-cached?
Sound Mismatching
#3064 posted by Shadow_Code on 2021/10/05 06:17:03
Also please would you be able to explain why the bug only happens when loading a save game?
DarkPlaces
#3065 posted by madfox on 2021/10/05 07:11:58
My experience with playing DarkPlaces is that it is a mod that is heavily transformed into its own behaviour. So although it uses the original ID1 code as source most related calls go to the DarkPlaces subdirectory, which has its own progs.dat.
So for searching your saved games and related errors with sound you have to search in the DarkPlaces directory.
I know this is not a solution for your problem, but I think you need to search for it there. And yes, DP has a rather kinky code structure.
Shadow_Code
#3066 posted by metlslime on 2021/10/05 07:14:42
when loading a level the first time, spawn functions are run on each entity in the level, and a list of sound precaches is built up, where each sound is given a number. After that, any time a sound is played it simply uses the number to identify it.
When loading a save game, the level first loads the normal way, building a list of precaches by calling spawn functions. If this list doesn't match the original list, then the numbers that are used to identify sounds in the savegame won't me correct.
Normally this is not something people notice with sounds, but with models being wrong in a savegame.
Since you haven't really described when you see the problem, the savegame thing may be a red herring.
Calling "precache_sound" multiple times on the same sound is harmless.
Metlslime
#3067 posted by Shadow_Code on 2021/10/05 11:08:48
Thanks again for your time and knowledge. I should be able to fix the problem now.
Madfox
#3068 posted by Shadow_Code on 2021/10/05 11:12:55
I'm using the Darkplaces engine, but not the Darkplaces mod.
Do Not Use A Savegame From A Different Progs.dat
#3069 posted by guests on 2021/10/05 12:40:41
Do NOT save your game, switch progs.dat and load your old save. Things like this will happen.
Basically what meltslime wrote.
This is common behaviour and expected when working with different progs.dat´s and using the same savegame again and again.
You mentioned that you are working on a mod and add several new sound files. That is why.
Sound Mismatching
#3070 posted by Shadow_Code on 2021/10/06 05:36:23
Nope that isn't the cause. Of course I'm not loading old save games post-progs.dat modification, that's coding 101 stuff.
I've Got The Strangest Problem..
I've made a mod based on Copper and yesterday after adding runes to my new HUD I noticed that new rune pickups don't show up *at all* on the HUD.
The serverflags are being set, I can progress to Shub's lair no problem. It's just the runes never get displayed on the HUD.
So I thought maybe I made some kind of mistake with the new gfx.wad, but when I try it out in regular Copper the runes show up fine.
I thought all the UI stuff was handled by the engine itself, so I dunno how this is even happening.
I never touched the serverflags. The closest thing I can think of that might be the cause is I made use of an extra parm - parm11 - to store additional data about the player and extra weapons (all stored using bitflags).
Other than that, I don't know where to look and what to look for. Anyone got any ideas?
Another Quick One - Clear Screen
Is there a reliable way to clear the color buffer so that models can be rendered outside the level area?
I know about gl_clear but that doesn't do the trick here.
Here's some context: I want to move the player outside the level area and render a player select 'menu' with a couple of models in his line of sight. When he's made his choice, the player gets plopped back onto the spawnpoint.
This works fine in Quakespasm Spiked. FTE QW and Kex Quake render nothing at all when I move the viewpoint outside the level however.
Any ideas to get this working across engines?
Metlslime
#3073 posted by Shadow_Code on 2021/10/09 10:30:25
Yes, precaching of sounds alongside a dynamic element of gameplay was the problem. Thanks again, very glad to see that fixed.
Does anyone understand this (in id QC code)?
void() monster_xxx =
{
if (deathmatch) {remove(self);return;}
....
and on the other hand there is the bit "NOT IN DEATHMATCH" in the spawnflags of all entities,
processed by the engine at map start?
It seems as if Carmack doesn't trust map developers :)
#3076 posted by metlslime on 2022/01/28 21:54:13
Seems like a time-saver. Why make mappers do the manual labor of tagging every monster with the correct flag?
#3077 posted by metlslime on 2022/01/28 21:55:53
Also the "not in deathmatch" flag might have been added later, after this code was written.
Hurt_touch "fix" Issue
I tried to fix hurt_touch in triggers.qc according to the URQP. This is supposed to make every player in the entity getting hurt every second, not just the first one.
However, this code apparently makes Shub cause passive area damage on map END, which causes the Shambler (or player) standing next to it getting hurt.
Any idea what could be wrong here?
Original code:
void() hurt_on =
{
self.solid = SOLID_TRIGGER;
self.nextthink = -1;
};
void() hurt_touch =
{
if (other.takedamage)
{
self.solid = SOLID_NOT;
T_Damage (other, self, self, self.dmg);
self.think = hurt_on;
self.nextthink = time + 1;
}
return;
};
Changed code:
.float dmgtime;
.float attack_finished;
void() hurt_touch =
{
if (!other.takedamage)
return;
if ((time != self.dmgtime) && (time < self.attack_finished))
return;
T_Damage (other, self, self, self.dmg);
self.dmgtime = time;
self.attack_finished = time + 1;
};
Nightfright:
#3079 posted by metlslime on 2022/03/02 19:02:43
no idea, the code looks reasonable.
you could put some debug prints in the code to help with this.
For example, eprint(this) in hurt_touch and see if sometimes it's Shub.
If yes, see if somehow shub's self.touch is being set to hurt_touch
Thought At First
It might be port-related since QSS is acting kinda funky in its latest dev builds, but Shub is also screwed up in Ironwail and Mark V-WinQuake. I kinda based this on the way it's done in Lunaran's Copper mod, so I already suspected it couldn't be wrong. Unless my code simplifications f'ed something up...
I don't think I changed Shub code at all, but I'll take a look tomorrow. If it's not hurt_touch itself, it's something else.
If you wanna go ahead and check the entirety of the code, feel free to head over to the AMQ Github repository and get the QuakeC source. Maybe there's a connection I just can't see right now.
Eprint Test Done
When approaching Shub, I get console outputs with
Classname trigger_hurt
Touch hurt_touch()
Shub's code looks like this in monster_oldone:
[...]
self.takedamage = DAMAGE_YES;
self.th_pain = (void(entity,float)) nopain;
self.th_die = finale_1;
self.touch = monster_touch;
shub = self;
The self.touch part is another fix that is supposed to prevent sliding/not-jumping on top of monsters. Might that have something to do with it?
Trigger_hurt
#3082 posted by Preach on 2022/03/03 08:33:56
I have a suspicion that END secretly relies on the bug you've just fixed. There's a 16 unit high trigger_hurt spanning the width of shub's platform, at about eye level. I'm guessing that prior to the fix, most of the time shub is absorbing the damage, which has no observable effect. You do occasionally get a 10 hp tic of damage when you jump on the island.
Could Be
Well, now you get the 10 HP tic all the time, it seems. Besides undoing the fix (which would be the least ideal solution), is there maybe some kind of exception that could be included to preserve the original behavior, at least on that specific map? I doubt it would matter elsewhere (even though you can never be sure).
This Seems To Do The Trick
void() hurt_touch =
{
if (!other.takedamage)
return;
if ((time != self.dmgtime) && (time < self.attack_finished))
return;
if (world.model == "maps/end.bsp")
{
self.solid = SOLID_NOT;
T_Damage (other, self, self, self.dmg);
self.think = hurt_on;
self.nextthink = time + 1;
}
else
{
T_Damage (other, self, self, self.dmg);
self.dmgtime = time;
self.attack_finished = time + 1;
}
};
-----------------
Basically what I am doing here is to use the old code only on the "end" map. I don't know if this is efficient programming or whether it can be done in a more elegant way, but it's working.
+use Alternative
#3085 posted by UnknownDud3 on 2022/04/22 00:15:27
Hey. I don't know much about quake modding yet but I am already curious if it's possible to implement a doom-like use command/key to interact with buttons, doors etc. Maybe there might be an example of such functionality?
|