Jump to content
The Dark Mod Forums

Recommended Posts

Posted
8 minutes ago, datiswous said:

See this post:

So the best would be probably:

  • If box is closed, whole box should have frob-highlight enabled.
  • When box is open, only lid should have frob-highlight enabled.

Something like this is already part of my Unofficial Patch and I guess Snatcher's Modpack too.

  • Like 1
Posted (edited)

Could someone try to do the entity spawning via console? I can't get it working anymore. If I do the command, I get no error, but I don't get the item. For example:

spawn atdm:ammo_gasarrow

Does nothing

 

Tested in 2 missions

Edited by datiswous
Posted
22 hours ago, datiswous said:

Could someone try to do the entity spawning via console? I can't get it working anymore. If I do the command, I get no error, but I don't get the item.

Work find for me on latest SVN.
I don't remember anything that could break it.

Posted (edited)
23 hours ago, datiswous said:

Could someone try to do the entity spawning via console? I can't get it working anymore. If I do the command, I get no error, but I don't get the item. For example:

spawn atdm:ammo_gasarrow

Does nothing

 

Tested in 2 missions

and working for me as well. beta212-04

Edited by grodenglaive
Posted (edited)

Well I tried it on another computer and there it doesn't work either.

beta212-04

 

34 minutes ago, grodenglaive said:

and working for me as well. beta212-04

So when you do that command, you get an extra gasarrow in your inventory?

Never mind 😐

Edited by datiswous
Posted (edited)

Btw. the wiki says:

Quote

Many controls can be included in the file Doomconfig.cfg in the darkmod folder so they are automatically effective.

Should this be:

Quote

Many controls can be included in the file Darkmod.cfg in the darkmod folder so they are automatically effective.

?

Edited by datiswous
Posted
13 hours ago, Daft Mugi said:

Found a graphics glitch in Accountant 1. Not present in 2.11.

-1469.5 1439.2 138.25 17.2 -146.1 0.0

 

Is it reproducible?
Does it go away if you disable "Frontend Acceleration" ?

Posted

No exact ETA but early February was the initial target.

As i know, there is only 1 major regression but we have a lot of testing yet to do because the new light optimizations produce shadow leaks for a few rare scenarios.

( Would be cool if we had an automated tester / screenshot comparison tool like Dolphin Emulator uses to automatically test if engine updates affect visuals in multiple games. )

  • Like 2

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

Would like to remind of a notable bug that persists in latest beta: Sometimes when you kill AI with a broadhead arrow, TDM will crash instantly or soon after their death. I'm currently replaying King of Diamonds and got a case of that, previously experienced during another FM with one of the dev versions. Here's the qconsole.log once more, hope it's enough to help track down the issue... the one line I believe is relevant:

WARNING:idClipModel::FreeTraceModel: tried to free uncached trace model (index=0)

qconsole.log

Posted
1 hour ago, MirceaKitsune said:

Would like to remind of a notable bug that persists in latest beta: Sometimes when you kill AI with a broadhead arrow, TDM will crash instantly or soon after their death. I'm currently replaying King of Diamonds and got a case of that, previously experienced during another FM with one of the dev versions. Here's the qconsole.log once more, hope it's enough to help track down the issue... the one line I believe is relevant:

WARNING:idClipModel::FreeTraceModel: tried to free uncached trace model (index=0)

qconsole.log 331.95 kB · 1 download

Thanks for the log, I am guessing this might be:

I am guessing that it is a random occurrence?

  • Like 2

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

Looks like we have one physics based regression?

Linux users get stuck at the start of mission "One Step Too Far" :

Bisecting...

mission works on 2.12 dev binary 10370

works on 10455

broken on 10518

works on 10488

Something between 10488 and 10518 caused the problem

Compiling binaries:

Rev 10498 is also broken

10491 works

10494 works

10495 works

10496 works

10497 works

10498 still broken. WINNER

If I revert this change, the problem is fixed:

original : vel += (vel * gravityNormal) * gravityNormal;

10498 : vel -= (vel * gravityNormal) * gravityNormal;

Maybe ifdef it for Linux @stgatilov ?

  • Like 2
  • Thanks 1

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
8 hours ago, nbohr1more said:
original : vel += (vel * gravityNormal) * gravityNormal;

10498 : vel -= (vel * gravityNormal) * gravityNormal;

Do you realize that the original code is wrong? 🤔

In fact, it has been wrong since revision 2, i.e. since the very beginning.

Quote

Maybe ifdef it for Linux @stgatilov ?

Absolutely no reason to do anything special for one platform.

Posted
On 1/28/2024 at 4:50 AM, Daft Mugi said:

Found a graphics glitch in Accountant 1. Not present in 2.11.

Does it happen if you disable Frontend Acceleration and set com_smp to 0 (don't forget to restore it back afterwards)?
Does it happens with clean config (i.e. after deleting darkmod.cfg) ?

Posted (edited)
5 hours ago, stgatilov said:

Do you realize that the original code is wrong? 🤔

What does the code fix actually fix? If fixing something breaks something else, it's i.m.o. not a (good) fix.

 

Edit: I would agree that maybe it's better to fix the mission(s) instead.

Edited by datiswous
Posted
7 hours ago, snatcher said:

Reap as you Sow. Beginning of the mission. There's this weird thing going on that I don't see in 2.11:

I opened DarkRadiant and am now trying to understand how the sun lights were supposed to work.
No idea thus far.

Looks like an awful experiment with massive caulk overuse.

  • Haha 1
Posted
19 hours ago, nbohr1more said:

Looks like we have one physics based regression?

Linux users get stuck at the start of mission "One Step Too Far" :

I committed a fix in svn rev 10636.

Let's hope it does not break something else in player movement.

  • Like 3
  • Thanks 1
Posted
On 1/31/2024 at 2:07 AM, stgatilov said:

Does it happen if you disable Frontend Acceleration and set com_smp to 0 (don't forget to restore it back afterwards)?
Does it happens with clean config (i.e. after deleting darkmod.cfg) ?

I found the setting that causes it. The glitch happens when anti-aliasing (r_multiSamples) is enabled.

EDIT: Bisecting shows that rev 10384 is the first commit to introduce this glitch.

EDIT 2: Happens when r_multiSamples is set to 2 (most likely) or 4 (less likely). When set to 8 or 16, it is still possible but less likely.

  • Like 2
Posted (edited)
46 minutes ago, stgatilov said:

I committed a fix in svn rev 10636.

Let's hope it does not break something else in player movement.

Thanks. Linux user and I play TDM at least weekly: Never noticed any physics issues myself, whatever happened in the FM must be a relatively rare scenario... that's a FM I haven't revisited so I was lucky to miss the bug then.

There is in fact a little problem in latest Beta, though it's so small I didn't bother to document it carefully, but I'll share the idea of it at least: If you climb into a tight space between an object and the ceiling and turn on the flashlight, jumping may cause the light to phase through the floor and disappear temporarily. Say you have a crate pressed against a ceiling where you can only climp and go in while crouched... if the surface is high enough to allow a jump but just low to force you to be crouched, you'll see the light source of the lantern disappear temporarily in mid air. Think I saw it in The King Of Diamonds, if it's important I'll boot it up again and noclip to get a viewpos.

Just to make sure you've seen my mention: Please check my message a few posts above where I attached a log, we have a crash where killing AI with a broadhead arrow can cause the engine to go down with a "tried to free uncached trace model" error... not even a main menu crash but one to the OS. It's pretty rare but if you fatally shoot AI often enough it will occur eventually.

Edited by MirceaKitsune

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

      "The Year of the Rat." 
      😄

      Al Stewart must be proud of you!
      Happy testing!
      @MirceaKitsune
      · 1 reply
    • datiswous

      I posted about it before, but I think the default tdm logo video looks outdated. For a (i.m.o.) better looking version, you can download the pk4 attached to this post and plonk it in your tdm root folder. Every mission that starts with the tdm logo then starts with the better looking one. Try for example mission COS1 Pearls and Swine.
      tdm_logo_video.pk4
      · 2 replies
    • JackFarmer

      Kill the bots! (see the "Who is online" bar)
      · 3 replies
    • STiFU

      I finished DOOM - The Dark Ages the other day. It is a decent shooter, but not as great as its predecessors, especially because of the soundtrack.
      · 5 replies
×
×
  • Create New...