File: vecmath.h

package info (click to toggle)
freespace2 24.2.0%2Brepack-1
  • links: PTS, VCS
  • area: non-free
  • in suites: forky, sid
  • size: 43,716 kB
  • sloc: cpp: 595,001; ansic: 21,741; python: 1,174; sh: 457; makefile: 248; xml: 181
file content (57 lines) | stat: -rw-r--r-- 1,273 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//
//

#ifndef FS2_OPEN_VECMATH_H
#define FS2_OPEN_VECMATH_H

#include "globalincs/pstypes.h"
#include "scripting/ade.h"
#include "scripting/ade_api.h"
#include "math/vecmat.h"

namespace scripting {
namespace api {

DECLARE_ADE_OBJ(l_Vector, vec3d);

//WMC - Due to the exorbitant times required to store matrix data,
//I initially store the matrix in this struct.
enum class MatrixState {
	Fine,
	MatrixOutOfdate,
	AnglesOutOfDate
};
struct matrix_h {
 private:
	MatrixState status;

	matrix mtx;
	angles ang;

	//WMC - Call these to make sure what you want
	//is up to date
	void ValidateAngles();

	void ValidateMatrix();
 public:
	matrix_h();
	explicit matrix_h(const matrix* in);
	explicit matrix_h(const angles* in);
	explicit matrix_h(const vec3d *fvec, const vec3d *uvec = nullptr, const vec3d *rvec = nullptr);

	angles* GetAngles();

	matrix* GetMatrix();

	void SetStatus(MatrixState n_status);

	static void serialize(lua_State* /*L*/, const scripting::ade_table_entry& /*tableEntry*/, const luacpp::LuaValue& value, ubyte* data, int& packet_size);
	static void deserialize(lua_State* /*L*/, const scripting::ade_table_entry& /*tableEntry*/, char* data_ptr, ubyte* data, int& offset);
};

DECLARE_ADE_OBJ(l_Matrix, matrix_h);

}
}

#endif //FS2_OPEN_VECMATH_H