#11012 posted by Zwiffle on 2011/04/17 05:14:28
Hmm I think invisible things are ... immune? ... to lightmaps. At least, that would make sense to me. Not sure about skybrushes, but being fullbright I would assume it too wouldn't matter.
#11013 posted by metlslime on 2011/04/17 10:32:41
triggers: yes
clips: no
skies: no
#11014 posted by necros on 2011/04/18 01:04:44
thanks!
yeah, in retrospect, it makes sense that clips wouldn't as they are only part of hull1 and 2. and skies are treated as liquid i guess?
but yeah, thanks for clearing that up. :)
?
#11015 posted by madfox on 2011/04/19 03:13:18
I just gathered my wits and lost them again...
Did recheque my last map and saw I scaled up all skymaps an clips to reduce lightmaps as I was on the 32768 brush limit.
Must I use a toppicname now again?
Brushes?
#11016 posted by Mike Woodham on 2011/04/19 12:59:10
32,000 brushes? That's one mighty big map; mighty f'kin' big.
I Think He Meant Marksurfaces
#11017 posted by negke on 2011/04/19 13:05:00
Doh!
#11018 posted by Mike Woodham on 2011/04/19 20:01:12
Oh well.
Out Of Orbit
#11019 posted by madfox on 2011/04/19 21:06:14
Yes, the map had 2954 brushes and marksurfaces were at the limit. (about 32768 I think)
But again, does it reduce the lightmap count scaling up clips and skytexture?
Triggers I understand, but after a half year I don't know why I took that much care.
Skip
#11020 posted by necros on 2011/04/21 05:03:33
skip doesn't work when it's external bsps loaded from an entity? shit made me very very sad. :'(
Skip It First?
#11021 posted by jt_ on 2011/04/21 06:05:52
#11022 posted by necros on 2011/04/21 06:52:37
...
Necros:
#11023 posted by metlslime on 2011/04/21 09:01:24
Ah, i see why that fails.
The world model is rendered differently from bsp entities. So, to make skip work on both types, a different trick is used on model 0 versus models 1 and higher.
The problem with external bsp models is, they are model 0 in the bsp file, so newskip applies the trick that makes worldmodel skip work, but the game renders them as entities, not worldmodels, so the trick doesn't have any effect.
It is fixable, but i'm not sure how easy it would be. Worst case is we would need a special command line option to tell the skip tool that it's dealing with an external bsp model rather than a level, and process it accordingly.
#11024 posted by necros on 2011/04/21 19:06:48
aw that's too bad. mostly it would have been great in helping to light the bmodels but you can still do it fairly well by making all the shadow casting walls 1 unit behind the world geometry in the actual map.
#11025 posted by metlslime on 2011/04/21 19:37:53
hmm... what were you trying to do exactly?
#11026 posted by necros on 2011/04/21 20:03:16
well, i've been replacing some brushwork in my map with external bsps.
at first, i was just replacing 'object' type brushwork, like a pillar or coffin type of thing.
but my map has a lot of high roofs as well, and while they may have fancy precompiled light cast on them, dynamic light should never touch them, so i was planning on replacing all the ceiling zones with external bmodels. unfortunately, recreating the lighting in external bsps means creating the brushwork to cast the shadows. having the ability to make invisible walls would have been awesome for that.
but like i said, i've made do with pushing shadow casters 1 unit behind the map geometry. it's still there, but you just don't see it.
Train Trouble On Glquake (sv_maxvelocity?)
#11027 posted by negke on 2011/04/22 10:45:13
I have a set of very fast-moving func_trains to fake an animation (flag in the wind). Their speed is set to 4000 and they stay on their target position for 0.1 seconds. Despite sv_maxvelocity being 2000, the high value does the trick; setting speed to 2000 would make the movement visible.
This setup works suitably well in many engine ports, but not so much in Glquake and direct derivates. In those, there's a visible delay, the trains move out of sync - it looks like sometimes two 'frames' are shown (wait at the target path_corner) at once, then one remains empty. Each of the three 'frames' start at a remote spot, then move to a delayed path_corner (wait 0, 0.1, 0.2 respectively), then to the flag pole one (wait 0.1), then loop with another remote one (wait 0.3) and the pole.
What could be the reason for this different behavior?
#11028 posted by negke on 2011/04/23 11:40:52
I realize it's probably hard to tell without actually seeing it for oneself, so here, in the castle map.
#11029 posted by necros on 2011/04/23 19:24:33
i don't know what's wrong, but i don't think sv_maxvelocity has anything to do with it.
the reason a bmodel warps from one spot the another is because of how it's coded in qc.
when a movement is called, qc determines the time it will take to get to the destination. if it finds the time taken to get to the destination is less than 0.1 seconds, it simply does a setorigin instead of actually moving it.
that said, i have no idea what's going on here... have you tried making the flag frames have a targetname and them triggering them?
might be some hiccup while the map is spawning that the trains have slightly different times? i dunno. really wild guess there.
#11030 posted by metlslime on 2011/04/24 00:38:12
i watched it for a while, it seemed to start out in sync and then when i had a framerate hiccup due to my antivirus scanner kicking in, that made it get out of sync.
I'm not a quakec expert but I think keeping movers in sync implicitly using just timing like this might be framerate dependant. If so, maybe you can script it so that each frame explicitly triggers the next frame, ensuring that they'd stay in sync (is there a message fired when the train arrives at a path_corner, for example?)
Or maybe they could be func_doors instead of trains, that stay open for 0.1 seconds and have an extremely high "speed", and trigger the next door 0.1 seconds after they are triggered (using delay maybe).
#11031 posted by necros on 2011/04/24 00:52:04
yeah, i'd try out metl's suggestion using doors and trigger_relay daisy chain.
those will be guaranteed to always keep things in time.
Triggers And Targets
#11032 posted by Mike Woodham on 2011/04/25 19:47:44
Should one trigger (a trigger_counter in this case) be able to activate a 'target' and a 'killtarget'?
I am using one to do both but it does not activate both - it will do either/or but not both.
SUB_UseTargets suggests that it should do both?
Mike...
#11033 posted by metlslime on 2011/04/25 19:56:06
I think there is a bug that they can't both work from the same entity.
Create trigger_relay to do the killing part and that should solve it.
OK, Thanks
#11034 posted by Mike Woodham on 2011/04/25 20:13:11
Hax Question
#11035 posted by Tronyn on 2011/04/27 11:22:54
so, clip brushes can't move. anyone got any suggestions for how they... could?
(I have a ladder, func_door, which moves up/sideways, but I want the player to be able to climb it easily (ie normal rapid clip brush stairs) once it is in place. Any ideas?
I Could Leave It As Jump-up-the-ladder
#11036 posted by Tronyn on 2011/04/27 11:24:03
but the player is exposed, and would have to be very careful. And I don't want to piss people off or force them to play a certain way. I do that enough already.
|