Hodo33 Posted October 30, 2018 Share Posted October 30, 2018 I have implemented the door resource from Joshua Jewell later modified by Jeff Loveless. It has been working fine but I get occasional crash in bitstream.cpp void BitStream::writeBits(S32 bitCount, const void *bitPtr) where bitCount has no value therefore -> crashFrom the Door.cpp file bstream->writeBits( 32, &rotation ); not sure how it would fail.So the question is should I change this over to a writeFloat since rotation is a float value? In the engine (3.8) there is only one other place writeBits is even used so is that being depricated in favor of a writeFloat ?Not sure how that mechanism works other than to save net traffic sending only the number of bits needed and ignoring the lower part of the mantissa ... anyone guide me here?Thanks... Quote Link to comment Share on other sites More sharing options...
LoLJester Posted October 30, 2018 Share Posted October 30, 2018 Although, I don't know about this resource, yes, I think you could do that too. But, if rotation is a vector of type VectorF/Point3F, then you would have to pass each value of the vector (rotation.x, rotation.y, rotation.z) individually as a float. Quote Link to comment Share on other sites More sharing options...
Hodo33 Posted October 30, 2018 Author Share Posted October 30, 2018 It is declared as a F32. As I said the function writeBits and readBits is in the engine but only used in one place other than this door code so I was curious why it is not used and should I change it .. thanks for the reply... Quote Link to comment Share on other sites More sharing options...
LoLJester Posted November 1, 2018 Share Posted November 1, 2018 I would change it and see if the same error persists.What's the error that you get? Quote Link to comment Share on other sites More sharing options...
JeffR Posted November 5, 2018 Share Posted November 5, 2018 It currently only gets used with ShapeBase's mesh hiding via passing in a BitVector.Idea being you can have a list of bits(to signify which submeshes are shown or hidden) and quickly network it down as a set(among other possible uses).In it's current state, it could probably considered a pretty specialized function now. I'd guess that the original resource used it because it was more common at the time.If it's a F32, then I'd just suggest what LOLJester said. Used write/readFloat and that should take care of it. Quote Link to comment Share on other sites More sharing options...
Hodo33 Posted November 6, 2018 Author Share Posted November 6, 2018 Thanks for the input, makes sense.So write float has a bit count parameter what part is being truncated if less than 32? single precision float = 1 sign, 7 exponent, 24 mantissa yes?The float in question is a rotation ( I assume normalized 0 - 1 or radian) does the engine lerp the rotation ? Not sure how that mechanism works..Thanks for any help Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.