File: GroundBlockingObjectMap.h

package info (click to toggle)
spring 106.0%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 55,316 kB
  • sloc: cpp: 543,954; ansic: 44,800; python: 12,575; java: 12,201; awk: 5,889; sh: 1,796; asm: 1,546; xml: 655; perl: 405; php: 211; objc: 194; makefile: 76; sed: 2
file content (193 lines) | stat: -rw-r--r-- 5,329 bytes parent folder | download | duplicates (3)
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
/* This file is part of the Spring engine (GPL v2 or later), see LICENSE.html */

#ifndef GROUNDBLOCKINGOBJECTMAP_H
#define GROUNDBLOCKINGOBJECTMAP_H

#include <array>
#include <vector>

#include "Sim/Objects/SolidObject.h"
#include "System/creg/creg_cond.h"
#include "System/float3.h"

class CGroundBlockingObjectMap
{
	CR_DECLARE_STRUCT(CGroundBlockingObjectMap)

private:
	template<typename T, uint32_t S = 8> struct ArrayCell {
	public:
		CR_DECLARE_STRUCT(ArrayCell)

		void Clear() {
			arr.fill(nullptr);

			numObjs = 0;
			vecIndx = 0; // point to dummy
		}

		bool InsertUnique(T* o) { return (!Contains(o) && Insert(o)); }
		bool Insert(T* o) {
			if (Full())
				return false;

			arr[numObjs++] = o;
			return true;
		}

		bool Erase(T* o) {
			const auto ae = arr.begin() + numObjs;
			const auto it = std::find(arr.begin(), ae, o);

			if (it == ae)
				return false;

			*it = arr[--numObjs];
			arr[numObjs] = nullptr;
			return true;
		}

		bool Empty() const { return (numObjs == 0); }
		bool Full() const { return (numObjs == S); }
		bool Contains(const T* o) const {
			const auto ab = arr.begin();
			const auto ae = arr.begin() + numObjs;

			return (std::find(ab, ae, o) != ae);
		}

		T* operator [] (size_t i) const { return arr[i]; }

		uint32_t GetNumObjs() const { return numObjs; }
		uint32_t GetVecIndx() const { return vecIndx; }
		uint32_t SetVecIndx(uint32_t i) { return (vecIndx = i); }
	
	private:
		uint32_t numObjs = 0;
		uint32_t vecIndx = 0;

		std::array<T*, S> arr;
	};

	typedef ArrayCell<CSolidObject> ArrCell;
	typedef std::vector<CSolidObject*> VecCell;

public:
	struct BlockingMapCell {
	public:
		BlockingMapCell() = delete;
		BlockingMapCell(const ArrCell& ac, const VecCell* vc): arrCell(ac), vecCell(vc) {
		}

		VecCell::value_type operator [] (size_t i) const {
			assert(i < size());
			assert(i < arrCell.GetNumObjs() || (i - arrCell.GetNumObjs()) < vecCell[ arrCell.GetVecIndx() ].size());

			return ((i < arrCell.GetNumObjs())? arrCell[i]: vecCell[ arrCell.GetVecIndx() ][ i - arrCell.GetNumObjs() ]);
		}

		size_t size() const { return (arrCell.GetNumObjs() + vsize()); }
		size_t vsize() const { return ((arrCell.Full())? vecCell[ arrCell.GetVecIndx() ].size(): 0); }

		bool empty() const { return (arrCell.Empty()); }

	private:
		const ArrCell& arrCell;
		const VecCell* vecCell;
	};


	void Init(unsigned int numSquares) {
		arrCells.resize(numSquares);
		vecCells.reserve(32);
		vecIndcs.reserve(32);

		// add dummy
		if (vecCells.empty())
			vecCells.emplace_back();
	}
	void Kill() {
		// reuse inner vectors when reloading
		// vecCells.clear();
		for (auto& v: arrCells) {
			v.Clear();
		}
		for (auto& v: vecCells) {
			v.clear();
		}

		vecIndcs.clear();
	}

	unsigned int CalcChecksum() const;

	void AddGroundBlockingObject(CSolidObject* object);
	void AddGroundBlockingObject(CSolidObject* object, const YardMapStatus& mask);
	void RemoveGroundBlockingObject(CSolidObject* object);

	void OpenBlockingYard(CSolidObject* object);
	void CloseBlockingYard(CSolidObject* object);
	bool CanOpenYard(const CSolidObject* object) const { return CheckYard(object, YARDMAP_YARDINV); }
	bool CanCloseYard(const CSolidObject* object) const { return CheckYard(object, YARDMAP_YARD); }


	// these retrieve either the first object in
	// a given cell, or NULL if the cell is empty
	CSolidObject* GroundBlocked(int x, int z) const;
	CSolidObject* GroundBlocked(const float3& pos) const;

	// same as GroundBlocked(), but does not bounds-check mapSquare
	CSolidObject* GroundBlockedUnsafe(unsigned int mapSquare) const {
		const BlockingMapCell& cell = GetCellUnsafeConst(mapSquare);

		if (cell.empty())
			return nullptr;

		return cell[0];
	}


	bool GroundBlocked(int x, int z, const CSolidObject* ignoreObj) const;
	bool GroundBlocked(const float3& pos, const CSolidObject* ignoreObj) const;

	bool ObjectInCell(unsigned int mapSquare, const CSolidObject* obj) const {
		if (mapSquare >= arrCells.size())
			return false;

		const ArrCell& ac = GetArrCell(mapSquare);
		const VecCell* vc = nullptr;

		if (ac.Contains(obj))
			return true;

		return (((vc = &GetVecCell(mapSquare)) != &vecCells[0]) && (std::find(vc->begin(), vc->end(), obj) != vc->end()));
	}


	BlockingMapCell GetCellUnsafeConst(const float3& pos) const;
	BlockingMapCell GetCellUnsafeConst(unsigned int mapSquare) const {
		assert(mapSquare < arrCells.size());
		// avoid vec-cell lookup unless needed
		return {GetArrCell(mapSquare), vecCells.data()};
	}

private:
	bool CheckYard(const CSolidObject* yardUnit, const YardMapStatus& mask) const;

	const ArrCell& GetArrCell(unsigned int mapSquare) const { return           arrCells[mapSquare]               ; }
	      ArrCell& GetArrCell(unsigned int mapSquare)       { return           arrCells[mapSquare]               ; }
	const VecCell& GetVecCell(unsigned int mapSquare) const { return vecCells[ arrCells[mapSquare].GetVecIndx() ]; }
	      VecCell& GetVecCell(unsigned int mapSquare)       { return vecCells[ arrCells[mapSquare].GetVecIndx() ]; }

	bool CellInsertUnique(unsigned int sqr, CSolidObject* o);
	bool CellErase(unsigned int sqr, CSolidObject* o);

private:
	std::vector<ArrCell> arrCells;
	std::vector<VecCell> vecCells;
	std::vector<uint32_t> vecIndcs;
};

extern CGroundBlockingObjectMap groundBlockingObjectMap;

#endif