| 870 | } |
| 871 | |
| 872 | void afxCamera::writePacketData(GameConnection *connection, BitStream *bstream) |
| 873 | { |
| 874 | // Update client regardless of status flags. |
| 875 | Parent::writePacketData(connection, bstream); |
| 876 | |
| 877 | Point3F pos; mObjToWorld.getColumn(3, &pos); |
| 878 | bstream->setCompressionPoint(pos); // SET COMPRESSION POINT |
| 879 | mathWrite(*bstream, pos); // SND POS |
| 880 | bstream->write(mRot.x); // SND X ROT |
| 881 | bstream->write(mRot.z); // SND Z ROT |
| 882 | |
| 883 | if (bstream->writeFlag(mCam_dirty)) |
| 884 | { |
| 885 | mathWrite(*bstream, mCam_offset); // SND CAM_OFFSET |
| 886 | mathWrite(*bstream, mCoi_offset); // SND COI_OFFSET |
| 887 | bstream->write(mCam_distance); |
| 888 | bstream->write(mCam_angle); |
| 889 | mCam_dirty = false; |
| 890 | } |
| 891 | |
| 892 | U32 writeMode = mMode; |
| 893 | Point3F writePos = mPosition; |
| 894 | S32 gIndex = -1; |
| 895 | if (mMode == OrbitObjectMode) |
| 896 | { |
| 897 | gIndex = bool(mOrbitObject) ? connection->getGhostIndex(mOrbitObject): -1; |
| 898 | if(gIndex == -1) |
| 899 | { |
| 900 | writeMode = OrbitPointMode; |
| 901 | mOrbitObject->getWorldBox().getCenter(&writePos); |
| 902 | } |
| 903 | } |
| 904 | |
| 905 | bstream->writeRangedU32(writeMode, CameraFirstMode, CameraLastMode); // SND MODE |
| 906 | if (writeMode == ThirdPersonMode) |
| 907 | { |
| 908 | bstream->write(mThird_person_snap_s > 0); // SND SNAP |
| 909 | if (mThird_person_snap_s > 0) |
| 910 | mThird_person_snap_s--; |
| 911 | } |
| 912 | |
| 913 | if (writeMode == OrbitObjectMode || writeMode == OrbitPointMode) |
| 914 | { |
| 915 | bstream->write(mMinOrbitDist); // SND ORBIT MIN DIST |
| 916 | bstream->write(mMaxOrbitDist); // SND ORBIT MAX DIST |
| 917 | bstream->write(mCurOrbitDist); // SND ORBIT CURR DIST |
| 918 | if(writeMode == OrbitObjectMode) |
| 919 | { |
| 920 | bstream->writeFlag(mObservingClientObject); // SND OBSERVING CLIENT OBJ |
| 921 | bstream->writeInt(gIndex, NetConnection::GhostIdBitSize); // SND ORBIT OBJ |
| 922 | } |
| 923 | if (writeMode == OrbitPointMode) |
| 924 | bstream->writeCompressedPoint(writePos); // WRITE COMPRESSION POINT |
| 925 | } |
| 926 | } |
| 927 | |
| 928 | void afxCamera::readPacketData(GameConnection *connection, BitStream *bstream) |
| 929 | { |
nothing calls this directly
no test coverage detected