News:

One Minute Game Review by The Happy Friar: https://ugetube.com/@OneMinteGameReviews
Also on Rumble: https://rumble.com/c/c-1115371

idTech 4 (aka Doom 3 tech) Discord Server! https://discord.gg/9wtCGHa

Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - EoceneMiacid

#31
id Tech 4 Mods / Re: Adding Coop to Doom 3
June 30, 2019, 07:37:36 AM
IIRC there are a couple of Doom 3 mods out there with Sikkpin's code included, and nobody raised a fuss.

#32
I think we were just too busy being awestruck with the fact we could walk around in a fully texture mapped world for the first time ever. And with Quake, framerate mattered because deathmatch.
#33
Then again I don't believe there's any WAD out there designed with DSDoom in mind.



#34
id Tech 4 Mods / Re: Adding Coop to Doom 3
June 29, 2019, 12:01:56 AM
As for Sikkpin.

If I understand correctly, the source code is out there, but the author isn't, so we can not get permission.

Now, assuming he uploaded the source voluntarily, why wouldn't he give permission? I know I'd much prefer see the fruits of my labor live on in mods instead of withering and dying.

I'd say that, as long as you properly credit Sikkpin and mention you'd like to get in contact so the permission thing can be worked out, you're ok, on an ethical level at least. You should only prepared to remove the code again in the improbable case Sikkpin steps forward and does not grant permission.
#35
Really. Can you summarize what the post was about?  ???
#36
Eh, you're right. Should've checked the date :s
#37
Great job, congrats!

(And thanks again for the nice map editor ;))

Have you considered adding the engine improvements back to dhewm3?
#38
Haunting of Deck 12 / Re: Doom 3 Supremacy
June 18, 2019, 08:07:38 AM
Added an effect to all mechanical entities where they periodically emit sparks and smoke after taking enough damage:





This works pretty well, but perhaps it can be improved still by picking a random joint to spawn the particles from.
#39
Haunting of Deck 12 / Re: Doom 3 Supremacy
June 15, 2019, 06:04:02 AM
Same as with the special weapon functions, I replaced all the individual weapon tracing functionality with a single, unified solution.
In non-fourth-wall-breaking-terms, this means it's your suit doing the tracing now, relaying commands to wherever they are needed.

Not only is this solution much cleaner, but it also opens the door for some very interesting possibilities.

Your HUD now subtly highlights whatever monster or NPC you're aiming at. Monsters are highlighted orange, NPC's green.




(i've exaggerated the green-ness here for clarity)



Not only that, but it also allows to perform context-sensitive actions; shooting at a friendly NPC will not actually fire the weapon but send a command instead (regardless of weapon used or state the player is in - it's seamless). For example, clicking on a Sentry bot would get it's attention, and a second click would send the Sentry to the location you clicked.

It's also a pretty useful aiming aid :)



#40
Haunting of Deck 12 / Re: Doom 3 Supremacy
June 15, 2019, 02:47:40 AM
There are many cool new features coming up, but they require some polish before being shown off :)

The Loot Drop system has been improved. The base monster class has a list of possible items to drop, such as a clip of pistol ammo.



However, each monster can override or add to this list with items of it's own, so, for example, Cherubs drop more exotic things.



I am still working out the details of the algorithm, but what items are dropped - if any - is determined by your Luck stat, tied to your experience level among other things.
#41
Strutt your stuff! / Re: Back from the Dead
June 14, 2019, 04:56:12 AM
Quote from: douglas quaid on June 13, 2019, 08:17:42 PM
and maybe even join a team too.

I am accepting applications
#42
Haunting of Deck 12 / Re: Doom 3 Supremacy
June 13, 2019, 07:40:55 AM
A lot of nice improvements under the hood (though not easy to show off in pictures)

Many special functions are now handled by the player script, sending the necessary commands to weapons, instead of the other way around.
This means the elimination of a lot of duplicate code, not to mention other benefits such as newly added weapons automatically having running/aiming/alt/melee capability.

The actual melee system has been improved as well. In practice, the previous implementation proved near useless, as switching to fists, punching, and switching back proved far too slow to be useful.

So now melee attacks are performed by the current weapon held, which is near instantaneous.





.. I don't have any melee animations for any of the guns as of now, so I just throw the view around a bit until I do :)

In practice this system works quite well, though I'm considering sharing melee with the Aim button instead of Switch . We'll see.

Weapon_fists is now not needed anymore, freeing up a weapons slot as well :)

I have a few melee-related ideas, such as auto-focusing on any nearby monsters, which would solve the problem of melee attacks not landing because the monsters wasn't perfectly centered in your view. Perhaps a series of combination attacks could be performed if the player keeps pressing the button.
#43
Haunting of Deck 12 / Re: Doom 3 Supremacy
June 12, 2019, 12:41:13 PM
Melee!

Pressing the Switch button will switch weapon modes or toggle add-ons such as laser sights.



However, it now has a secondary function. Press Switch while facing a monster within range and you'll perform a melee attack instead.

#44
Haunting of Deck 12 / Re: Doom 3 Supremacy
June 12, 2019, 11:39:42 AM
Made it a little bit smarter still, it is now able to distinguish friends from foes:



#45
Haunting of Deck 12 / Re: Doom 3 Supremacy
June 12, 2019, 10:39:44 AM
Made the SMG a little smarter, which is now able to tell when aimed at an enemy.