mirror of
https://github.com/DrBeef/JKXR.git
synced 2025-02-05 06:51:02 +00:00
51 lines
1.4 KiB
C
51 lines
1.4 KiB
C
|
/*
|
||
|
===========================================================================
|
||
|
Copyright (C) 2000 - 2013, Raven Software, Inc.
|
||
|
Copyright (C) 2001 - 2013, Activision, Inc.
|
||
|
Copyright (C) 2013 - 2015, OpenJK contributors
|
||
|
|
||
|
This file is part of the OpenJK source code.
|
||
|
|
||
|
OpenJK is free software; you can redistribute it and/or modify it
|
||
|
under the terms of the GNU General Public License version 2 as
|
||
|
published by the Free Software Foundation.
|
||
|
|
||
|
This program is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
GNU General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License
|
||
|
along with this program; if not, see <http://www.gnu.org/licenses/>.
|
||
|
===========================================================================
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
#define MC_BITS_X (16)
|
||
|
#define MC_BITS_Y (16)
|
||
|
#define MC_BITS_Z (16)
|
||
|
#define MC_BITS_VECT (16)
|
||
|
|
||
|
#define MC_SCALE_X (1.0f/64)
|
||
|
#define MC_SCALE_Y (1.0f/64)
|
||
|
#define MC_SCALE_Z (1.0f/64)
|
||
|
|
||
|
|
||
|
// currently 24 (.875)
|
||
|
#define MC_COMP_BYTES (((MC_BITS_X+MC_BITS_Y+MC_BITS_Z+MC_BITS_VECT*9)+7)/8)
|
||
|
|
||
|
void MC_Compress(const float mat[3][4],unsigned char * comp);
|
||
|
void MC_UnCompress(float mat[3][4],const unsigned char * comp);
|
||
|
void MC_UnCompressQuat(float mat[3][4],const unsigned char * comp);
|
||
|
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|