]> 4ch.mooo.com Git - 16.git/blob - src/lib/16_mm.h
wwwwwwwww
[16.git] / src / lib / 16_mm.h
1 /* Catacomb Apocalypse Source Code
2  * Copyright (C) 1993-2014 Flat Rock Software
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19 // ID_MM.H
20
21 #ifndef __16_EXMM__
22 #define __16_EXMM__
23
24 #include <string.h>
25 #include <malloc.h>
26 #include "src/lib/16_head.h"
27 //++++mh        #include "src/lib/16_in.h"
28
29 #ifdef __DEBUG__                // 1 == Debug/Dev  ;  0 == Production/final
30 #define OUT_OF_MEM_MSG  "MM_GetPtr: Out of memory!\nYou were short :%ld bytes"
31 #else
32 #define OUT_OF_MEM_MSG  "\npee\n"
33 #endif
34
35
36 #define SAVENEARHEAP    0x400           // space to leave in data segment
37 #define SAVEFARHEAP             0                       // space to leave in far heap
38
39 #define BUFFERSIZE              0x1000          // miscelanious, allways available buffer
40
41 #define MAXBLOCKS               600
42
43
44 //--------
45
46 #define EMS_INT                 0x67
47
48 #define EMS_STATUS              0x40
49 #define EMS_GETFRAME    0x41
50 #define EMS_GETPAGES    0x42
51 #define EMS_ALLOCPAGES  0x43
52 #define EMS_MAPPAGE             0x44
53 #define EMS_FREEPAGES   0x45
54 #define EMS_VERSION             0x46
55
56 //--------
57
58 #define XMS_VERSION             0x00
59
60 #define XMS_ALLOCHMA    0x01
61 #define XMS_FREEHMA             0x02
62
63 #define XMS_GENABLEA20  0x03
64 #define XMS_GDISABLEA20 0x04
65 #define XMS_LENABLEA20  0x05
66 #define XMS_LDISABLEA20 0x06
67 #define XMS_QUERYA20    0x07
68
69 #define XMS_QUERYREE    0x08
70 #define XMS_ALLOC               0x09
71 #define XMS_FREE                0x0A
72 #define XMS_MOVE                0x0B
73 #define XMS_LOCK                0x0C
74 #define XMS_UNLOCK              0x0D
75 #define XMS_GETINFO             0x0E
76 #define XMS_RESIZE              0x0F
77
78 #define XMS_ALLOCUMB    0x10
79 #define XMS_FREEUMB             0x11
80
81 //==========================================================================
82 //I hope this is correct!
83 //__segment                seg;
84 typedef void __based(__self) * memptr; //__based(seg) * memptr;
85
86 typedef struct
87 {
88         dword   nearheap,farheap/*,hugeheap*/,EMSmem,XMSmem,mainmem;
89 } mminfotype;
90
91 //==========================================================================
92
93 /*extern        mminfotype      mminfo;
94 extern  memptr          bufferseg;
95 extern  boolean         mmerror;*/
96
97 extern  void            (* beforesort) (void);
98 extern  void            (* aftersort) (void);
99 extern void             (* XMSaddr) (void);             // far pointer to XMS driver
100
101 //==========================================================================
102
103 /*
104 =============================================================================
105
106                                                         LOCAL INFO
107
108 =============================================================================
109 */
110
111 #define LOCKBIT         0x80    // if set in attributes, block cannot be moved
112 #define PURGEBITS       3               // 0-3 level, 0= unpurgable, 3= purge first
113 #define PURGEMASK       0xfffc
114 #define BASEATTRIBUTES  0       // unlocked, non purgable
115
116 #define MAXUMBS         10
117
118 typedef struct mmblockstruct
119 {
120         unsigned        start,length;
121         unsigned        attributes;
122         memptr          *useptr;        // pointer to the segment start
123         struct mmblockstruct far *next;
124 } mmblocktype;
125
126
127 typedef struct
128 {
129         memptr bufferseg;
130         boolean         mmstarted, bombonerror, mmerror;
131         //void  huge *hugeheap;
132         void huge/*far*/        *farheap;
133         void            *nearheap;
134         unsigned        totalEMSpages,freeEMSpages,EMSpageframe,EMSpagesmapped,EMShandle;
135         unsigned int EMSVer;
136         unsigned        numUMBs,UMBbase[MAXUMBS];
137         mmblocktype     huge mmblocks[MAXBLOCKS],huge *mmhead,huge *mmfree,huge *mmrover,huge *mmnew;
138 } mminfo_t;
139
140
141 //#define GETNEWBLOCK {if(!(mmnew=mmfree))Quit("MM_GETNEWBLOCK: No free blocks!");mmfree=mmfree->next;}
142 //#define GETNEWBLOCK {if(!mmfree)MML_ClearBlock();mmnew=mmfree;mmfree=mmfree->next;}
143 //#define FREEBLOCK(x) {*x->useptr=NULL;x->next=mmfree;mmfree=x;}
144
145 /*
146 =============================================================================
147
148                                                  GLOBAL VARIABLES
149
150 =============================================================================
151 */
152
153 /*static mminfotype     mminfo;
154 static memptr           bufferseg;
155
156 static void             (* beforesort) (void);
157 static void             (* aftersort) (void);*/
158
159 /*
160 =============================================================================
161
162                                                  LOCAL VARIABLES
163
164 =============================================================================
165 */
166
167 /*static void huge      *hugeheap;
168 static void far *farheap;
169 static void             *nearheap;
170
171 static mmblocktype      far mmblocks[MAXBLOCKS]
172                         ,far *mmhead,far *mmfree,far *mmrover,far *mmnew;
173
174
175 static unsigned totalEMSpages,freeEMSpages,EMSpageframe,EMSpagesmapped,EMShandle;
176 static unsigned int EMSVer;
177
178 static void             (* XMSaddr) (void);             // far pointer to XMS driver
179
180 static unsigned numUMBs,UMBbase[MAXUMBS];*/
181
182 //==========================================================================
183
184 boolean MML_CheckForEMS(void);
185 unsigned MML_SetupEMS(mminfo_t *mm);
186 void MML_ShutdownEMS(mminfo_t *mm);
187 unsigned MM_MapEMS(mminfo_t *mm);
188 boolean MML_CheckForXMS(mminfo_t *mm);
189 void MML_SetupXMS(mminfo_t *mm, mminfotype *mmi);
190 void MML_ShutdownXMS(mminfo_t *mm);
191 void MML_UseSpace(unsigned segstart, unsigned seglength, mminfo_t *mm);
192 void MML_ClearBlock(mminfo_t *mm);
193
194 void MM_Startup(mminfo_t *mm, mminfotype *mmi);
195 void MM_Shutdown(mminfo_t *mm);
196
197 void MM_GetPtr(memptr *baseptr,dword size, mminfo_t *mm, mminfotype *mmi);
198 void MM_FreePtr(memptr *baseptr, mminfo_t *mm);
199 void MM_SetPurge(memptr *baseptr, int purge, mminfo_t *mm);
200 void MM_SetLock(memptr *baseptr, boolean locked, mminfo_t *mm);
201 void MM_SortMem(mminfo_t *mm);
202 void MM_ShowMemory(mminfo_t *mm);
203 dword MM_UnusedMemory(mminfo_t *mm);
204 dword MM_TotalFree(mminfo_t *mm);
205 void MM_Report(mminfo_t *mm, mminfotype *mmi);
206 int MM_EMSVer(void);
207 void MM_BombOnError(boolean bomb, mminfo_t *mm);
208 void MM_GetNewBlock(mminfo_t *mm);
209 void MM_FreeBlock(mmblocktype *x, mminfo_t *mm);
210
211 //==========================================================================
212
213 #endif