More Model Pics To Be Critiqued
#331 posted by dylan on 2004/10/08 22:48:26
put up some more stuff and got the "pinky" like thing i created, or at least created upon as much of the original pinky as i could remember and quite frankly there arent that many classic doom pictures available now that the new one is out.
http://buckmontgomery.tripod.com/models
Dylan,
#332 posted by HeadThump on 2004/10/09 04:24:57
I went ahead a sent some pinky pics that may help you. They are actually the in game sprites.
I've been replaying Rouge lately (thanks Tronyn!), and I can't help but think that the monsters on the first two pages in particular would look good for a Hell Fortress styled episode.
Hmmmm
#333 posted by Kinn on 2004/10/09 07:41:49
Not too sure about that pinky. It'd be better if you based him off the Doom3 pinky, but without the silly "cyber" bits.
Title Cannot Be Empty
#334 posted by LTH on 2004/10/22 10:20:14
I really like it. I don't know if it suits the project, but if it's completely animated then I wouldn't mind fiddling around with it!
... not that I have any time these days, but it still looks cool.
Hey Lth
#335 posted by dylan on 2004/10/22 20:06:59
i checked out cyberquake, its pretty cool concept. i sent you an .mdl of a player model i had laying around that might fit that mod, and i currently have no use for.
Oh, That Reminds Me
I still have some issues with the alt-weapons (Rogue stuff, chaingun etc.) Not only that, but I still have to implement explosive shells too, but that shouldn't take long once I find Painkeep and some other ammo model for the slugs - one that works.
Trigger_read is causing me to scratch my head. What the hell was I thinking when I coded it!?
I'm also preparing some prefabs for the rebuilding of Tower of Yoth in a more outre style, but until I figure out why FitzQuake is going all psychedelic, I'm going to concentrate on preparing the graveyard map. Depending on how complex the "topside" turns out, I might break it into two.
(Both the library/start map and the graveyard are "contemporary", so I'll use radiosity lighting. For some reason FQ renders those sorts of lightmaps properly. Sigh... I'd rather be modding in Morrowind.)
Headthump
#337 posted by dylan on 2004/10/28 23:50:53
can you send me the drone animations again, i cant remember where i saved them to.
Hey Dylan,
#338 posted by HeadThump on 2004/10/29 00:34:01
I can get that to you tommorow afternoon.
Cheers,
.
#339 posted by necros on 2004/10/29 09:07:54
tomorrow.
Arrrr, Hoist Me On A Petard!
#340 posted by HeadThump on 2004/10/29 11:28:32
And shoot me out into the sea.
You got me there, Captain!
Fatty, Tronyn
#341 posted by PuLSaR on 2004/11/03 17:16:25
I still don't understand what exactly trigger_read is.
Does it simply display some text to the player or is there anything more?
The Idea
trigger_read entities, when touched, allow the player to "open" books (or any other object bearing gobs of textual information) and "page through" them.
The trigger itself is actually a point entity about the size of an info_player_start, which the player has to not only touch, but be facing in the right direction to use.
The text itself is held in multiple info_page entities with the same targetname as the trigger's target, with the sequence marked by the count key.
The overall effect is: player sees an open book, or plaque on the wall, and goes over to it. He should at first hear a beep and see a message top left; "Reading matter here" or somesuch. Impulse XXX presents the first page, which is persistent until either he moves away (which closes the "book") or impulses again to go to the next page.
This has been causing me some grief to get working, but I think I may have cracked it by having the trigger be far more pro-active now.
Ouch...
#343 posted by necros on 2004/11/04 01:17:42
sounds hard on edicts...
would it not be better to store all the strings in the same entity via say, message1, message2, message3, message4, etc... up to maybe 20 (surely no book can have more than 20 pages...) or whatever... otherwise, a 10 page book will use up 11 edicts, one info_page for each page plus the trigger itself...
just a 0.02$ contribution... :)
Trigger_read
#344 posted by PuLSaR on 2004/11/04 01:52:57
sounds good. I have a perfect place in my map to use it.
But as necros said, will edicts be a problem then?
Necros
You might have a good point there, but then every entity would have twenty strings allocated to it. Wouldn't that bloat the in-game data enormously?
(I have to admit it would make paging much easier though...)
A Better Solution
#346 posted by Kinn on 2004/11/05 04:08:00
would be to use existing string fields that are either unreferenced in the C code, or would have no side-effects anyway - .message, .netname, .noise, .noise1, .noise2, .noise3, .noise4, .wad, .map, .deathtype...to name just ten.
It might look a bit ugly, but it's better than declaring new entity variables.
Bleh @ Kinn, ;)
#347 posted by necros on 2004/11/05 11:06:43
it might have mattered on a 486.
as far as i know, there aren't any hard limits in qc that prevent one from making tons of new variables.
god knows i must have added at least 3 times the amount of vars into this one project.
sadly, one cannot use arrays... :\
Trigger_read
#348 posted by ericw on 2004/11/05 20:35:35
This sounds really cool.. One could make a somewhat deeper plot than usual for Quake ;)
How is the actual text displayed on the screen? Is it just using the centerprint function?
I guess the only other way would be using a modified engine with fancier a 'book' background and nicer font.
Don't Need A Modified Engine For That.
#349 posted by necros on 2004/11/05 22:13:02
just spawn a sprite which behaves like the weapon model in that it tracks the player's viewpoint. i'm not sure exactly how to do this, but i know it's possible.
it could be as simple as temporarily replacing the player's viewweap with the book sprite then putting it back when the trigger is turned off.
Oh...
#350 posted by metlslime on 2004/11/05 22:28:07
sprites can't be used as weapon models. Crashes the game (at least, it crashes glquake.)
Ah, Ok.
#351 posted by necros on 2004/11/05 22:57:13
i hadn't know that.
hm... well, you could do this instead:
restrict the player's movement and viewpoint until the player presses a certain key (send a impulse) to quit from reading.
spawn the book sprite in front of the player at the appropriate distance.
i think there'd be problems with this method though, because the sprite might get spawned too near to walls and get clipped inside...
you could make the entity turn the player to an exact angle to get rid of that though... this would need a lot of fine tuning, i suspect... probably more work that it's worth...
oh wait! you could just have a .mdl which was a flat polygon with the skin of the book on it... then just load up different skins on the same model and cycle through them as you 'read'.
Well
The original idea was to use good ol' centerprint, while the player stayed more or less still and impulsed as required, and could just turn/back away at any time. After all, if something decides that reading player is the dish of the day, you want to be able to run away.
Besides, how many 'pages' of text is a player willing to page through? My personal suspicion is about eight. What do the rest of you think?
For Quake?
#353 posted by necros on 2004/11/06 13:29:05
1 or 2.
depending on how much text there was. quake is all about action, so unless the book was fairly interesting, i doubt i would read more than a couple of pages.
It Depends On Tronyn's Concept
#354 posted by HeadThump on 2004/11/06 14:41:19
for the mod. If it is a Quake based Action\Adventure game, the way The Demon King was, fairly detailed text may be necessary to fullfill sequences of quest and such.
I tend to lean to the position that you can have narative driven episodes that donot take volumes of text to accomplish the goal like in the Rune of the Space God.
The most brilliant example I have seen of this is in a Half-Life map called Someplace Else where the player is directed on his mission located on a remote Xen based floating isle by a hyper intelligent alien hiding from the Xen creatures.
(I would also recommend it for its map design -- it is an interesting mixture of Sock_tech and Xen.)
Headthump
#355 posted by nitin on 2004/11/06 21:12:10
and heavily inspired by Aliens, not that that's a bad thing.
|