Survival Doom - A Tech Demo Released!

For Total Conversions and projects that don't otherwise fall under the other categories.
Forum rules
The Projects forums are only for projects. If you are asking questions about a project, either find that project's thread, or start a thread in the General section instead.

Got a cool project idea but nothing else? Put it in the project ideas thread instead!

Projects for any Doom-based engine (especially 3DGE) are perfectly acceptable here too.

Please read the full rules for more details.
User avatar
wildweasel
Posts: 21706
Joined: Tue Jul 15, 2003 7:33 pm
Preferred Pronouns: He/Him
Operating System Version (Optional): A lot of them
Graphics Processor: Not Listed

Re: [WIP] Survival Doom

Post by wildweasel »

trooper077 wrote:Weasel is their anyway to prevent bumping threads?
Not without locking them before anybody has a chance to post in them, which is unfair to the topic's creator in the event that they actually decide to return.
User avatar
Dancso
Posts: 1906
Joined: Wed Oct 11, 2006 10:39 am
Location: at home.. Status: lazy like hell

Re: [WIP] Survival Doom

Post by Dancso »

trooper077 wrote:is their anyway to prevent bumping threads?
Yes.
Image
User avatar
lolwut?
Posts: 143
Joined: Sun Mar 14, 2010 3:41 am

Re: [WIP] Survival Doom [abandoned?]

Post by lolwut? »

Thumbs up for this project!
User avatar
ZDG
Posts: 918
Joined: Sat Jan 02, 2010 12:01 pm
Location: in SlumpEd

Re: [WIP] Survival Doom

Post by ZDG »

As
Dancso wrote: Image
User avatar
wildweasel
Posts: 21706
Joined: Tue Jul 15, 2003 7:33 pm
Preferred Pronouns: He/Him
Operating System Version (Optional): A lot of them
Graphics Processor: Not Listed

Re: [WIP] Survival Doom [abandoned?]

Post by wildweasel »

Sinfis, you may send me or any other moderator a message if you need this thread unlocked.
Sinfis
Posts: 40
Joined: Thu Oct 02, 2008 3:51 am
Location: Oulu, Finland

Re: Survival Doom - A Tech Demo Released!

Post by Sinfis »

Now there is a good reason to bump this up! ;)
User avatar
Nash
 
 
Posts: 17454
Joined: Mon Oct 27, 2003 12:07 am
Location: Kuala Lumpur, Malaysia

Re: Survival Doom - A Tech Demo Released!

Post by Nash »

Pretty cool. But it takes forever to kill a single zombie. :( I guess similar to Resident Evil, you're not supposed to waste your bullets killing zombies, but... I think the zombies' health is way too much. Had to almost empty a clip for just 1 zombie!

Took a look at your map in an editor to see how you did it; the entire map is covered with sky, and changing camera views changes the skybox. Clever!

Controls need some getting used to at first but after a while it's not so bad.

Models and their textures look good in the GZDoom renderer, good job! Though some of the looping animations are kind of jerky probably due to interpolation.
Sinfis
Posts: 40
Joined: Thu Oct 02, 2008 3:51 am
Location: Oulu, Finland

Re: Survival Doom - A Tech Demo Released!

Post by Sinfis »

Thank you for your feedback, I appreciate that got interested my mod and even checked how it's done. :) It also nice to hear that controls are not so bad when you get used to them first.

Yeah, that interpolation problem is irritating, which doesn't work right with 3d models. But I guess we just have to live with it, until next GZDoom update. ;)
User avatar
Ravick
Posts: 2023
Joined: Sun Aug 22, 2010 10:59 pm
Location: Tubarão, Brasil

Re: Survival Doom - A Tech Demo Released!

Post by Ravick »

I've seem this at youtube some days ago.

Can't wait to play new releases! I just love horror themed games! :wub:
User avatar
Nash
 
 
Posts: 17454
Joined: Mon Oct 27, 2003 12:07 am
Location: Kuala Lumpur, Malaysia

Re: Survival Doom - A Tech Demo Released!

Post by Nash »

How is this mod affecting the player with the Time Freezer power up? I tried to take it apart but I can't seem to replicate it for my project.

I'm particularly interested in how the text messages will stop the player, but when the messages disappear; the player's previous velocity is restored. The player's animation states also seem to pause and resume properly, so firing a gun, then triggering a message (for example, try using a dead body) - the player's animation will pause, and when you clear the message, the animation will resume where it left off...

As-is, giving a Time Freezer powerup will not pause the player and his animations and velocities...
Sinfis
Posts: 40
Joined: Thu Oct 02, 2008 3:51 am
Location: Oulu, Finland

Re: Survival Doom - A Tech Demo Released!

Post by Sinfis »

To get freezing the world work properly it was pretty complicated and messy but it works somehow. :D

In the Scripts section of the MAP01.wad there are functions Pause (row 559), Pause02 (row 569), and UnPause (row 579). Those give player and take away inventory items PowerTimeFreezer4ever and FreezeTime1tic, which are described in Decorate file. Those also freezes the player completely with SetPlayerProperty.

You can find actual info message scripts starting from the row 744. Functions Pause and Pause02 are called as well as inventory item PowerTimeFreezer4ever are given to player one more time, don't ask why. Then the freezing is "shut off" with UnPause function.

Notice that info message script system uses parts taken from Jimmy's j-testmenu.wad, which makes possible that player is able to close info messages with another press of the "Use" key.

I hope this helped you out! :)
User avatar
Nash
 
 
Posts: 17454
Joined: Mon Oct 27, 2003 12:07 am
Location: Kuala Lumpur, Malaysia

Re: Survival Doom - A Tech Demo Released!

Post by Nash »

Oh wow, I wonder why giving the player two copies of Time Freezers - 1 with maximum duration, while the other only 1 tic - will pause the player's velocity. Engine feature or bug?

Also, some observations while doing this in first person...

1) Your view bobbing will not stop eventhough you are "paused", looks funny when the game is "paused" while the player is jumping in mid-air.
2) First person weapon animation still doesn't get paused properly.

Thanks anyway! :D
User avatar
Big C
Posts: 2839
Joined: Tue Oct 19, 2010 3:24 pm

Re: Survival Doom - A Tech Demo Released!

Post by Big C »

Wait, you can do this in 1st person?
User avatar
ibm5155
Posts: 1268
Joined: Wed Jul 20, 2011 4:24 pm

Re: Survival Doom - A Tech Demo Released!

Post by ibm5155 »

Big C wrote:Wait, you can do this in 1st person?
that graphics? yes, with the same kind of work, but i think it´ll be harder, rendering all the textures for a pré rendered texture, it would take alot of mb...
I like the re style
Sinfis
Posts: 40
Joined: Thu Oct 02, 2008 3:51 am
Location: Oulu, Finland

Re: Survival Doom - A Tech Demo Released!

Post by Sinfis »

Nash wrote:Oh wow, I wonder why giving the player two copies of Time Freezers - 1 with maximum duration, while the other only 1 tic - will pause the player's velocity. Engine feature or bug?
I think it is rather bug than an engine feature. If some really bad ass coder looked how to pause game in my mod, he would be horrified - it's done by giving to player a time freezing power up and taking it away. :D

I mentioned before that I'll show you what I was working on but never got them finished for the mod. Here's one image, the computer room:

Image

Return to “TCs, Full Games, and Other Projects”