Ladder Issue Solved
#104 posted by Preach on 2008/03/21 21:56:07
I figured out why you can't get up the ladders in darkplaces, though I gotta tell you it was a bit of a stumper for a while. The problem is actually the size of the solid boxes around the metal grills, in darkplaces these are made too large. The size of them is calculated based on the dimension of the sprite reported by the engine.
Winquake(and presumably all other engines):
'-64 -64 -64' '64 64 64'
Darkplaces:
'-90.5 -90.5 -90.5' '90.5 90.5 90.5'
For reference, the sprite is 128x128 pixels - and one pixel to one quake unit is drawn in both engines. So why does darkplaces report such a strange value? Well, 90.5 is ~ sqrt( 64 * 64 + 64 * 64), which is the length of the diagonal line from the centre of the sprite to the corner. So I'm guessing that it's stored like that to create a corrected "bounding radius" for the sprite. This is to make sure you don't get into the situation where the corner of the sprite should be just on screen, but the engine thinks you can't see it any more.
My feeling on the matter is that this updated bounding radius should not be sent to the qc, and that darkplaces should just store it internally. I don't think this would be hugely problematic to fix, the fact is that nobody uses sprites in quake, so it's probably never been noticed before.
Sounds Missing...
#105 posted by distrans on 2008/03/27 04:39:03
I've got testers reporting missing quake.wav and quakeend.wav at level start. All are using -hipnotic -game quoth with Quoth and Quoth2 installed. I've double checked .map and the level doesn't call these sounds. Ideas?
Yeah, There Is Indeed Some Sound Missing,
#106 posted by Dooomer on 2008/03/27 05:00:18
the most noticeable one is when the game begins by playing demo1, and the explosion sound of ogre's grenade would be missing.
Yeah - Distrans - That Happened To Me!
#107 posted by RickyT33 on 2008/03/27 10:31:34
er, what was it, its coded in the info_screenshake to play those sounds. Re-assign the sounds to "misc/null.wav", for the keys "noise" and "noise1", in every info_screenshake in your map, and the warnings will disappear!
I think Preach answered me on the mapping help thread, #7180
:-)
Ta Ricky...
#108 posted by distrans on 2008/03/27 10:49:57
..I'll do that tonight. Mebbe there'll be another base map out this weekend :)
Sounds Missing
#109 posted by Preach on 2008/03/27 11:01:37
The earthquake sounds are available in mission pack 1, but not in the quoth packs. If you actually want them then send me an e-mail, but you can just silence them like Ricky says.
The missing explosion sounds in the start-up demo is in fact by design. Quake sends the explosion sound automatically whenever you tell it to create the explosion particles. In order to make it possible to have explosions with different sounds, the default explosion noise is replace by a silent .wav file and explosion noises are added "by hand". This can be seen with the bob. Of course, the noises are not added retroactively in demos that were already recorded.
So
#110 posted by negke on 2008/03/27 11:33:02
Will the Quoth2 pack be updated with these sounds?
Erm
#111 posted by than on 2008/03/27 12:29:53
Preach, sorry for not testing with my other map. That had the screenshake entity in it and I didn't notice the sounds were missing back then.
It would be cool if they could be added in an update. Maybe the current pak could be replaced? Anyone with the old pak would still get the warning, but it's not a big deal. Are there other complications that could arise from modifying an existing pak?
Should we just ship the sfx with our maps?
Yeah - Good Question!
#112 posted by RickyT33 on 2008/03/27 12:35:59
My map is in the latter stages of vis. I can do
txQbsp -onlyents
and
light
and then theres only newskip.exe to run, but after I do that, I cant change anything, cause changing the ents would require re-doing the lights (some lights toggle on-off), and light.exe has a fit after newskip is run... (takes deep breath)
In short, I'd like to know!
Er
#113 posted by RickyT33 on 2008/03/27 12:38:02
thats gonna confuse people.
I just mean I can get rid of the "noise" and "noise1" keys in my screenshakes, but only before I run newskip.
Unless theres another way. I'm too scared of loosing my vis data!
#114 posted by negke on 2008/03/27 13:02:01
light -onlyents then
I Dont Think That Works With Tyrlite
#115 posted by RickyT33 on 2008/03/27 13:10:54
:-(
Sounds And Ents
#116 posted by Preach on 2008/03/27 13:50:45
There's no plan at the moment to update with a patch. If we were, the plan would be to create a pak2.pak with the patch elements in it, to be overwritten when part 3 is released. We'd make that a separate download and patch the full file at the same time. But we'd really only use that option if a critical problem like a crash bug came up. So for now I guess the best thing is to distribute the sounds with your map. Otherwise it'll go from you telling us there's a bug to people playing your maps telling you there's a bug, even though it's not your fault, because they didn't get the patch.
And yeah Than, don't worry about not spotting it, I messed up too. I had a test map for the earthquakes, but I was specifying the sounds by hand, so the defaults were never tested.
Modifying entities:
There's at least one way of doing this when a map is fully compiled, without having to worry about which utility to use at which time. Get a copy of adquedit:
http://www.quaketerminus.com/tools/adquedit_v13.zip
Then open the bsp file with this program. You'll see a button to extract entities. This saves them to a text file, where you can edit them directly, add new fields, even add entirely new ents to the map. Then use adquedit to import them again. The text file is basically an ".ent" file, but the program bakes the entities into the map when you use the import function.
OK, Smart!
#117 posted by RickyT33 on 2008/03/27 13:55:45
ATM I have the misc/null.wav set for noise and noise1. I think I'll probably leave it that way, but its nice to know I could change it if I so desired in the future!
cheerz
I Wouldn't Recommend
#118 posted by aguirRe on 2008/03/27 14:16:09
using *any* old bsp modifying program on a modern bsp, they'll most likely trash it completely.
Ricky: If you don't change any brushes, you can always do another fullvis (or fastvis) run using the same prt+vis file. As long as the prt file doesn't change, the vis file should be OK.
A new run only takes a few seconds.
Kell
#119 posted by Drew on 2008/03/28 17:40:41
How long has your site been suspended for?
Moderator - Please Change Post ^^^
#120 posted by RickyT33 on 2008/03/28 18:04:49
kell.QUADDICTED.COM
:D
Bug
#121 posted by Spirit on 2008/03/30 15:16:06
I played around with trigger_command and found a bug. My message is "screenshot". Sometimes when moving through it "+attack" or "+forward" are appended to "screenshot" = "screenshot+attack".
It doesn't bother me as it does not affect what I am doing but it seems undesired.
Oh
#122 posted by Spirit on 2008/03/30 15:16:48
Of course +attack is only appended when I actually +attack at that time.
Solution
#123 posted by Preach on 2008/03/30 16:08:53
You must suffix all commands with \n, so that the commands don't run into each other. We toyed with the idea of having all the _command entities sending "\n" after all commands but it doubles the network overhead, and stuffcmd is traffic intensive to begin with. So it's up to mappers to format the commands correctly, but when the tutorial is extended to cover all the _command entities, we will make this explicit.
Ah
#124 posted by Spirit on 2008/03/30 16:55:52
I read that before but forgot about it. Thanks.
Played It
#125 posted by nitin on 2008/04/05 09:21:02
nice stuff! Not overly fond of the backpacks though.
I liked the new maps, although I felt the texturing in e1m2quoth didnt always gel. One bug too, some of the pillars or buttresses kept disappearing and reappearing (sort of like software greyflash but they would just disappear). Is this known? I was using aguire's engine.
Kell
#126 posted by negke on 2008/04/05 12:36:13
quoth2_mapsources.zip 404s
Also
#127 posted by negke on 2008/04/05 15:48:50
when is the Quoth mapping tutorial going to be completed?
Bug
#128 posted by spy on 2008/04/30 07:29:54
map src2 by JPL
i think its a monster_bob relating issue
ADDRESS 28(self)entity 0 330(cnt).cnt 420(?]
: SUB_AttackFinished : statement 0
: CheckAttack : statement 72
: CheckAnyAttack : statement 5
: ai_run : statement 73
: ai_runfly : statement 4
: bob_run1 : statement 2
PR_ExecuteProgram: assignment to world entity
Host_Error: Program error
the same deal with a sicktower by mr.Richard
|