
Static Is No Weapon Model, But
#1355 posted by
madfox on 2016/06/17 23:17:21
When I made the static entity for a
convoybelt the hardest part was to make the cell_ammu blocks correspond to each other.
When they all four made the simultaneously movements and I had it right counting on the framenumbers the different engines all made their own movements.
Framegrouping helped, but as each engine treated it accordingly strange effects was the result.

Dwere
#1356 posted by
Preach on 2016/06/18 17:50:02
I'd go with designing your models with GLQuake in mind, for two reasons. The first is that so many more ports are based on glquake, and they're so much more widely used, that they've become the de facto standard now - even if the software vertex placements came first. Secondly, the software renderer has so many approximations and wobbles when it comes to alias models that it's not going to benefit from that level of care and attention.
As your screenshot seems to be going for a pixel-art look, I wondered if you could try doubling the scale of your skin. So each "pixel" on the visible skin would actually be a 2x2 block of pixels. Sure, you've effectively wasted 300% memory compared to the original, but the GL and Software renderings will be more alike. As a bonus, it might look less "muddy" for people not using nearest neighbour in the GL world.
#1357 posted by
dwere on 2016/06/18 18:27:43
DirectQ and Darkplaces are using the original way of interpreting tex coords, so it's not that simple.
As for your second suggestion - IIRC, the software renderer can't work with skins taller than 128, so I'd have to redo a lot of things. In any case, I'd rather not resort to something like this.
Thanks for your thoughts anyway.

Skin Height
I believe the limit is 192?

Might Be Worth Double Checking
#1359 posted by
ericw on 2016/06/18 20:58:38
regarding max mdl skin height.
MAX_LBM_HEIGHT appears to be 480 in winquake/glquake,
here.
Dosquake had a lower limit iirc.

Skin Limits
#1360 posted by
Preach on 2016/06/18 21:11:12
The limits for skins:
In DOSQuake the max is 200px (so 128px is the tallest power-of-two, the largest sensible size)
In Winquake, that gets bumped to 480px (so 256px is the largest sensible size)
I don't think you need to worry about DOSQuake, I'm pretty sure all the custom software engines start from a base of Winquake at least. For reference, Quoth has included models with 256 pixel tall skins since the first release and nobody has ever complained that it causes a crash.
Bit more of a pain that there are non-software engines emulating the old behaviour. For darkplaces you have the option of creating MD3 copies of your models, with UVs that match the GL versions. Which only leaves DirectQ...
Does anyone still use DirectQ? I stopped using it about 6 month after I joined func_

DQ
#1363 posted by
killpixel on 2016/06/18 21:55:05
I stopped using it once development/support ceased. I would like to see quakespasm implement the HUD options that DQ had.
DQII was great, would love to see a final build with some of the loose ends tied up.

Quake Trees
#1364 posted by
madfox on 2016/07/06 02:10:35
I remember a request for tree static entities.
I am using some in my new map so
they may be also in others interest.
Quake trees

Lazy Bone
#1366 posted by
madfox on 2016/07/06 21:23:27
forest
<a href=""http://home.kpn.nl/lo2kf8/tree1.jpg">for</a>
<a href=""http://home.kpn.nl/lo2kf8/tree2.jpg">the trees</a>

Arbitrary
#1368 posted by
madfox on 2016/07/06 21:28:34
For some reasons statics that are under 1000verts ans 2000 tris won't show up in fitzquake.
Like these trees, there's one that shuts down fiztquake immediately when added to the progs.
It's just the same as the others but it won't fit.

Has Anyone Tried Sprites For Trees In Nilla Quake?
#1369 posted by
killpixel on 2016/07/06 21:30:57
if not for the entire tree, just the foliage?
The trunk looks quite nice in those pics, but those leaves aren't so hot.
old sprite tree test
#1370 posted by
Kinn on 2016/07/06 21:44:36
I guess I'll just leave this here:
http://www.celephais.net/board/view_thread.php?id=60831&start=994
Would be nice if more engines supported it :}
#1371 posted by
Izhido on 2016/07/06 21:48:33
Just one fairy sprite and you'll be able to recreate Ocarina in full :)

Killpixel
I like those...
Madfox, the trunks are ok but the leaves being giant squares don't seem to look right to me. I think what you've created would look good if there was masked texture support (where you put a { before the texture).
#1375 posted by
killpixel on 2016/07/06 22:50:43
#1372 - Thanks! full-on sprite trees probably aren't appropriate for vanilla quake, aesthetically speaking.
#1373 - those look nice, are the trunks simply brushes? that map reminds of something out of spyro.

Full Sprite Tree
#1376 posted by
necros on 2016/07/07 01:33:22
Doesn't look that good. Can't be lit and breaks down when you're close.

Convert Quake 1 Models To Skeletal - Keep Anims
#1377 posted by
Qmaster on 2016/07/25 04:15:55
Has anyone done the conversion of the Quake 1 mdl files into a skeletal animation format? The idea would be to use skeletal animation skinned to a rig that would maintain a fairly close match to the original animations, for use in engines that don't support vertex morph animation.
#1378 posted by
Izhido on 2016/07/25 04:36:11
Thre are engines that do not support changing the values of the vertices of a model? Odd, to say the least...

Q1 Models
#1379 posted by
madfox on 2016/07/25 05:02:09
I converted several Q1 models into an animation studio by using a redrawn base model of (let's say) a death22 pose frame of a monster.
This is done by using a skeletal base bone and attached it over the new base frame.
From that point I can change it into any pose and export it into any commen format. obj,3ds etc.
So far so good.
I'm not familiar with vertex morph animation.