File: LuaContextData.h

package info (click to toggle)
spring 98.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 41,928 kB
  • ctags: 60,665
  • sloc: cpp: 356,167; ansic: 39,434; python: 12,228; java: 12,203; awk: 5,856; sh: 1,719; xml: 997; perl: 405; php: 253; objc: 194; makefile: 72; sed: 2
file content (212 lines) | stat: -rw-r--r-- 4,645 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
/* This file is part of the Spring engine (GPL v2 or later), see LICENSE.html */

#ifndef LUA_CONTEXT_DATA_H
#define LUA_CONTEXT_DATA_H

#include <map>
#include <boost/thread/recursive_mutex.hpp>

#include "LuaShaders.h"
#include "LuaTextures.h"
#include "LuaFBOs.h"
#include "LuaRBOs.h"
#include "LuaDisplayLists.h"
#include "System/EventClient.h"
#include "System/Log/ILog.h"

class CLuaHandle;


//FIXME move to diff file
struct GLMatrixStateTracker {
public:
	MatrixStateData matrixData; // [>0] = stack depth for mode, [0] = matrix mode
	bool listMode; // if creating display list

public:
	GLMatrixStateTracker() : listMode(false) {}

	MatrixStateData PushMatrixState() {
		MatrixStateData md;
		matrixData.swap(md);
		return md;
	}

	MatrixStateData PushMatrixState(bool lm) {
		listMode = lm;
		return PushMatrixState();
	}

	void PopMatrixState(MatrixStateData& md) {
		matrixData.swap(md);
	}

	void PopMatrixState(MatrixStateData& md, bool lm) {
		listMode = lm;
		PopMatrixState(md);
	}

	unsigned int GetMode() const {
		MatrixStateData::const_iterator i = matrixData.find(0);
		return (i == matrixData.end()) ? GL_MODELVIEW : i->second;
	}

	int GetDepth(unsigned int mode) const {
		MatrixStateData::const_iterator i = matrixData.find(mode);
		return (i == matrixData.end()) ? 0 : i->second;
	}

	bool PushMatrix() {
		unsigned int mode = GetMode();
		int depth = GetDepth(mode);
		if (!listMode && depth >= 255)
			return false;
		matrixData[mode] = depth + 1;
		return true;
	}

	bool PopMatrix() {
		unsigned int mode = GetMode();
		int depth = GetDepth(mode);
		if (listMode) {
			matrixData[mode] = depth - 1;
			return true;
		}
		if (depth == 0)
			return false;
		if (depth == 1)
			matrixData.erase(mode);
		else
			matrixData[mode] = depth - 1;
		return true;
	}

	bool SetMatrixMode(int mode) {
		if (mode <= 0)
			return false;
		if (!listMode && mode == GL_MODELVIEW)
			matrixData.erase(0);
		else
			matrixData[0] = mode;
		return true;
	}

	int ApplyMatrixState(MatrixStateData& m) {
		// validate
		for (MatrixStateData::iterator i = m.begin(); i != m.end(); ++i) {
			if (i->first == 0)
				continue;
			int newdepth = GetDepth(i->first) + i->second;
			if (newdepth < 0)
				return -1;
			if (newdepth >= 255)
				return 1;
		}
		// apply
		for (MatrixStateData::iterator i = m.begin(); i != m.end(); ++i) {
			if (i->first == 0) {
				if (i->second == GL_MODELVIEW)
					matrixData.erase(0);
				else
					matrixData[0] = i->second;
				continue;
			}
			int newdepth = GetDepth(i->first) + i->second;
			if (newdepth == 0)
				matrixData.erase(i->first);
			else
				matrixData[i->first] = newdepth;
		}
		return 0;
	}

	const MatrixStateData& GetMatrixState() const {
		return matrixData;
	}

	bool HasMatrixStateError() const {
		return !matrixData.empty();
	}

	void HandleMatrixStateError(int error, const char* errsrc) {
		unsigned int mode = GetMode();

		// dont complain about stack/mode issues if some other error occurred
		// check if the lua code did not restore the matrix mode
		if (error == 0 && mode != GL_MODELVIEW)
			LOG_L(L_ERROR, "%s: OpenGL state check error, matrix mode = %d, please restore mode to GL.MODELVIEW before end", errsrc, mode);

		for (MatrixStateData::iterator i = matrixData.begin(); i != matrixData.end(); ++i) {
			if (i->first == 0)
				continue;
			// check if the lua code fucked up the stack for matrix mode X
			if (error == 0)
				LOG_L(L_ERROR, "%s: OpenGL stack check error, matrix mode = %d, depth = %d, please make sure to pop all matrices before end", errsrc, i->first, i->second);

			glMatrixMode(i->first);

			for (int p = 0; p < i->second; ++p) {
				glPopMatrix();
			}
		}
		glMatrixMode(GL_MODELVIEW);
		matrixData.clear();
	}
};




struct luaContextData {
	luaContextData()
	: owner(NULL)
	, luamutex(NULL)

	, synced(false)
	, allowChanges(false)
	, drawingEnabled(false)

	, running(0)
	, curAllocedBytes(0)
	, maxAllocedBytes(0)

	, fullCtrl(false)
	, fullRead(false)

	, ctrlTeam(CEventClient::NoAccessTeam)
	, readTeam(0)
	, readAllyTeam(0)
	, selectTeam(CEventClient::NoAccessTeam) {}

	CLuaHandle* owner;
	boost::recursive_mutex* luamutex;

	bool synced;
	bool allowChanges;
	bool drawingEnabled;

	int running; //< is currently running? (0: not running; >0: is running)

	unsigned int curAllocedBytes;
	unsigned int maxAllocedBytes;

	// permission rights
	bool fullCtrl;
	bool fullRead;

	int  ctrlTeam;
	int  readTeam;
	int  readAllyTeam;
	int  selectTeam;

	LuaShaders shaders;
	LuaTextures textures;
	LuaFBOs fbos;
	LuaRBOs rbos;
	CLuaDisplayLists displayLists;

	GLMatrixStateTracker glMatrixTracker;
};


#endif // LUA_CONTEXT_DATA_H