aboutsummaryrefslogtreecommitdiff
path: root/engines/lab/allocroom.cpp
blob: 339ae0b40148e82996708cd4cc4cc1031c7ffef9 (plain)
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
213
214
215
216
217
218
219
220
/* ScummVM - Graphic Adventure Engine
 *
 * ScummVM is the legal property of its developers, whose names
 * are too numerous to list here. Please refer to the COPYRIGHT
 * file distributed with this source distribution.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * 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, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 *
 */

/*
 * This code is based on Labyrinth of Time code with assistance of
 *
 * Copyright (c) 1993 Terra Nova Development
 * Copyright (c) 2004 The Wyrmkeep Entertainment Co.
 *
 */

#include "lab/stddefines.h"
#include "lab/parsetypes.h"

namespace Lab {

/* Have to make sure that ROOMBUFFERSIZE is bigger than the biggest piece of memory
   that we need */
#define ROOMBUFFERSIZE (2 * 20480L)
#define EMPTYROOM      ((uint16) -1)
#define MAXMARKERS     10

extern RoomData *Rooms;
extern uint16 ManyRooms;


typedef struct {
	uint16 RoomNum;
	void *Start0, *End0, *Start1, *End1;
} RoomMarker;



static RoomMarker RoomMarkers[MAXMARKERS];
static void *RoomBuffer = NULL;
static uint16 CurMarker  = 0;
static void *MemPlace = NULL, *NextMemPlace = NULL;
static int32 MemLeftInBuffer = 0L;

/*****************************************************************************/
/* Allocates the memory for the room buffers.                                */
/*****************************************************************************/
bool initRoomBuffer(void) {
	uint16 counter;

	CurMarker = 0;

	if ((RoomBuffer = calloc(ROOMBUFFERSIZE, 1))) {
		MemPlace = RoomBuffer;
		MemLeftInBuffer = ROOMBUFFERSIZE;

		for (counter = 0; counter < MAXMARKERS; counter++)
			RoomMarkers[counter].RoomNum = EMPTYROOM;

		return true;
	} else
		return false;
}




/*****************************************************************************/
/* Frees the memory for the room buffers.                                    */
/*****************************************************************************/
void freeRoomBuffer(void) {
	if (RoomBuffer)
		free(RoomBuffer);
}


/*****************************************************************************/
/* Frees a room's resources.                                                 */
/*****************************************************************************/
static void freeRoom(uint16 RMarker) {
	uint16 RoomNum;

	RoomNum = RoomMarkers[RMarker].RoomNum;

	if (RoomNum != EMPTYROOM) {
		Rooms[RoomNum].NorthView = NULL;
		Rooms[RoomNum].SouthView = NULL;
		Rooms[RoomNum].EastView  = NULL;
		Rooms[RoomNum].WestView  = NULL;
		Rooms[RoomNum].RuleList  = NULL;
		Rooms[RoomNum].RoomMsg   = NULL;
	}

	RoomMarkers[RMarker].RoomNum = EMPTYROOM;
	RoomMarkers[RMarker].Start0  = NULL;
	RoomMarkers[RMarker].End0    = NULL;
	RoomMarkers[RMarker].Start1  = NULL;
	RoomMarkers[RMarker].End1    = NULL;
}

/*****************************************************************************/
/* Gets a chunk of memory from the buffer.                                   */
/*****************************************************************************/
static void *getCurMem(uint16 Size) {
	uint16 counter;
	void *Ptr, *Start0, *Start1, *End0, *End1;

	if (((int32) Size) > MemLeftInBuffer) {
		MemPlace = RoomBuffer;
		MemLeftInBuffer = ROOMBUFFERSIZE;
		NextMemPlace = NULL;
	}

	Ptr = MemPlace;
	MemPlace = (char *)MemPlace + Size;
	MemLeftInBuffer -= Size;

	if (MemPlace > NextMemPlace) {
		NextMemPlace = NULL;

		for (counter = 0; counter < MAXMARKERS; counter++) {
			if (RoomMarkers[counter].RoomNum != EMPTYROOM) {
				Start0 = RoomMarkers[counter].Start0;
				Start1 = RoomMarkers[counter].Start1;
				End0   = RoomMarkers[counter].End0;
				End1   = RoomMarkers[counter].End1;

				if (((Start0 >= Ptr) && (Start0 < MemPlace))  ||
				        ((End0 >= Ptr) && (End0 < MemPlace))    ||
				        ((Ptr >= Start0) && (Ptr <= End0))        ||

				        ((Start1 >= Ptr) && (Start1 < MemPlace))  ||
				        ((End1 >= Ptr) && (End1 < MemPlace))    ||
				        ((Ptr >= Start1) && (Ptr <= End1))) {
					freeRoom(counter);
				} else {
					if (Start0 >= MemPlace)
						if ((NextMemPlace == NULL) || (Start0 < NextMemPlace))
							NextMemPlace = Start0;

					if (Start1 >= MemPlace)
						if ((NextMemPlace == NULL) || (Start1 < NextMemPlace))
							NextMemPlace = Start1;
				}
			}
		}

		if (NextMemPlace == NULL) {
			NextMemPlace = RoomBuffer;
			NextMemPlace = (char *)NextMemPlace + ROOMBUFFERSIZE;
		}
	}

	return Ptr;
}





/*****************************************************************************/
/* Grabs a chunk of memory from the room buffer, and manages it for a        */
/* particular room.                                                          */
/*****************************************************************************/
void allocRoom(void **Ptr, uint16 size, uint16 roomNum) {
	uint16 rMarker;
	bool doit = true;

	if (1 & size)  /* Memory is required to be even aligned */
		size++;

	rMarker = 0;

	while ((rMarker < MAXMARKERS) && doit) {
		if (RoomMarkers[rMarker].RoomNum == roomNum)
			doit = false;
		else
			rMarker++;
	}

	if (rMarker >= MAXMARKERS) {
		rMarker = CurMarker;
		CurMarker++;

		if (CurMarker >= MAXMARKERS)
			CurMarker = 0;

		freeRoom(rMarker);
		RoomMarkers[rMarker].RoomNum = roomNum;
	}

	*Ptr = getCurMem(size);

	if (RoomMarkers[rMarker].Start0 == NULL) {
		RoomMarkers[rMarker].Start0 = *Ptr;
		RoomMarkers[rMarker].End0   = (void *)(((char *)(*Ptr)) + size - 1);
	} else if (*Ptr < RoomMarkers[rMarker].Start0) {
		if (RoomMarkers[rMarker].Start1 == NULL)
			RoomMarkers[rMarker].Start1 = *Ptr;

		RoomMarkers[rMarker].End1 = (void *)(((char *)(*Ptr)) + size - 1);
	} else
		RoomMarkers[rMarker].End0 = (void *)(((char *)(*Ptr)) + size - 1);
}

} // End of namespace Lab