#12067 posted by necros on 2012/07/29 02:16:00
if you are using path_corners as the target of teleport triggers, you have to do some extra work because the info_teleport_destination entity does this stuff automatically.
Instead of setting angle, you have to set mangle to a vector with y being the angle you want to be facing.
So if you wanted angle to be 90, you must set mangle to '0 90 '.
#12068 posted by necros on 2012/07/29 02:22:26
er... well, should be '0 90 0'.
Afaik
#12069 posted by madfox on 2012/07/29 02:27:24
Oh me, info_teleport_destination.
Of course, I was so involved in getting waypoints done, that I just forgot and try to use path_corners for teleporting.
In this case it worked, but I'm such a typo.
#12070 posted by necros on 2012/07/29 06:34:26
Is there a command in any quake engine that will output like a manifest of all precached sounds and models?
I'm thinking something that can be parsed and then used to copy files out of a dev folder into a release folder.
Necros
#12071 posted by Mike Woodham on 2012/07/29 09:20:10
I'm not sure if i am reading you right, but if you are looking to make sure that you have removed all unnecessary sounds and models from the pak before release, then I use TexPad to search-all-files for "precache" targeting the folder with all the qc modules in. The output is the form of 'boss.qc(271): precache_model ("progs/boss.mdl");' which I then copy/paste into Excel and use a parsing formula to extract the 'progs/boss.mdl' bit i.e. the bits between the quotes, remove duplicates (built-in command), alpha-sort that column, and then go through each folder in turn to remove all unnecessary entries. It sounds long-winded but only takes a few seconds really.
I have no doubt that you could do that all from within TexPad as it has a macro recorder included, and also allows you to run other programs: I use it for all qc work - editing the modules and then running the compilers from within TexPad using the Run command. Aguire put me on to it many years ago.
#12072 posted by necros on 2012/07/29 09:23:21
Thanks, but what I meant was actually the opposite. An engine command that, after loading the map, displays every precached sound and model in use to the console so I can condump it and parse it so I can cherry pick only sounds and models needed for a specific map for packaging in a pak file.
#12073 posted by negke on 2012/07/29 09:31:44
Darkplaces has the modellist command which does that. Not sure about other engines.
Fitzquake
#12074 posted by Preach on 2012/07/29 10:57:30
fitz has mcache, soundlist and imagelist which I believe do what you want between them
Fantastic
#12075 posted by necros on 2012/07/29 19:15:48
that's exactly what I was looking for! :)
Radiant Texture Load Problem
#12076 posted by wakey on 2012/08/01 15:02:02
hope that kind fit's here.
The problem is, Radiant refuses to load external textures if in q1-mapping mode.
I wrote a own gamepack for a project i joined.
The engine they use utilizes q1 map format and can load both external textures and .wad's.
For mapping i would prefer to use external ones, so i just have to drop them into the folder, and not have to compile a wad everytime i want to try out a new texture fast.
But as soon as you tell the Radiant to do maps in q1 format, he only shows wad's, and refuses to load anything else.
Messed around with the gamepacks .game file trying to figure out how i could workaround this, with no success yet.
Does anybody know a way how to do this?
thx
PS: i'm using Radiant 1.5
Solved
#12077 posted by wakey on 2012/08/01 23:39:13
used the q3.game file as template, now i have some sort of hybrid mode.
But the next problem arises -.-'
The engine currently loads textures directly from /textures folder (like it would be a wad),
but ignores subfolder's.
But the Radiant now only loads files from subfolders.
Does anyone see a way to workaround this?
Marksurfaces
#12078 posted by necros on 2012/08/02 22:25:37
did we ever figure out what these are? And if so, how can I reduce them?
Necros:
#12079 posted by metlslime on 2012/08/03 01:29:40
Reducing surfaces will also reduce marksurfaces.
Surfaces are every single world polygon you see when you turn on r_drawflat in winquake or fitzquake-based engines.
I think the crash is only when the world model has too many marksurfaces, because the brush entities don't use marksurfaces for rendering (as a result, they won't try to access an index out of bounds.)
So, you could use func_walls to reduce marksurfaces in the world. This won't change the bsp marksurface count, but it should prevent an engine crash.
#12080 posted by necros on 2012/08/03 01:55:35
Reducing surfaces will also reduce marksurfaces.
So reducing cuts on faces then? Surface/Face that's the same thing right? Or are surfaces collections of coplanar faces or something?
So, you could use func_walls to reduce marksurfaces in the world.
So I would be seeing marksurfaces over 65535? Cause I have many func_walls already and as soon as marksurfaces go over 65k the engine crashes. I figured it was a hard limit, unlike the old 32k limit where you could go over a little without any problems.
Oh...
#12081 posted by metlslime on 2012/08/03 02:35:15
Yeah if you are going over the 65k limit then func walls won't help.
BUT, you could use external bsp files (since they have their own marksurfaces array.)
And yes, faces are the same as surfaces in this case.
#12082 posted by necros on 2012/08/03 03:13:39
yep, been converting most of the ceilings into external bsps. I would convert some outdoor stuff too, but unfortunately I'm using a lightning flash effect so that's out of the question. :(
Oh well, at least the map is fully playable. It'll just have to be light on details.
Bsp2 Enables A 130k Limit
#12083 posted by RickyT33 on 2012/08/03 03:44:06
I'm sure you could get set up. Infact RMQ demo3 has SDK, tools etc.
Yes.
#12084 posted by Drew on 2012/08/03 05:19:22
Someone set him up.
#12085 posted by necros on 2012/08/03 05:30:01
nah, I don't want to be bound to a single engine. I hate that this map only works in fitzquake variants as it is. :\
Idle Sounds
#12086 posted by sock on 2012/08/05 20:47:35
Does anyone know of any extra idle sounds that have been created for the original quake monsters?
Sock
#12087 posted by Spirit on 2012/08/05 21:55:16
Search for "urinating" on http://www.wired.com/wired/archive/4.08/id_pr.html
Apart from that, nope. Sadly American did not remember that nor have the sound.
Umm
#12088 posted by sock on 2012/08/05 22:04:46
I am not sure how that link helps, I was talking about the idle.wav files for each monster. I was wondering if any mod had done any updates to these? added more?
#12089 posted by necros on 2012/08/05 22:07:18
heh, I yelled a bit for the quoth death guards. I sound like a dork though. :P
Light Shifts
#12090 posted by madfox on 2012/08/14 04:16:11
As I am working on my map for some time there occure strange blackouts in the lightning.
I can�t seem to find a reason for it, like adding a bad brush somewhere and the brush turns total black.
Putting a light near won�t help.
It isn�t the brush because first it was right.
http://members.home.nl/gimli/shift.jpg
#12091 posted by necros on 2012/08/14 04:40:14
It's just a light artifact, not much you can do beyond rebuilding the area differently.
barring that, you can make that face a skip texture and then place an identical brush as a func_illusionary overtop of it.
|