forked from bmx-ng/bcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.bmx
407 lines (333 loc) · 9.89 KB
/
config.bmx
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
' Copyright (c) 2013-2016 Bruce A Henderson
'
' Based on the public domain Monkey "trans" by Mark Sibly
'
' This software is provided 'as-is', without any express or implied
' warranty. In no event will the authors be held liable for any damages
' arising from the use of this software.
'
' Permission is granted to anyone to use this software for any purpose,
' including commercial applications, and to alter it and redistribute it
' freely, subject to the following restrictions:
'
' 1. The origin of this software must not be misrepresented; you must not
' claim that you wrote the original software. If you use this software
' in a product, an acknowledgment in the product documentation would be
' appreciated but is not required.
'
' 2. Altered source versions must be plainly marked as such, and must not be
' misrepresented as being the original software.
'
' 3. This notice may not be removed or altered from any source
' distribution.
'
SuperStrict
Import BRL.LinkedList
Import BRL.Map
Import BRL.FileSystem
Import "options.bmx"
Import "base.stringhelper.bmx"
' debugging help
Const DEBUG:Int = False
Const ABORT_ON_NULL:Int = True
Const PROFILER:Int = False
Const DEBUGSTOP_ON_ERROR:Int = False
Global ENV_LANG$
Global _errInfo$
Global _errStack:TList = New TList
' bytes offset to the first field
Global OBJECT_BASE_OFFSET:Int = 8
' 4 bytes on 32-bit, 8 bytes on 64-bit
Global POINTER_SIZE:Int = 4
Global _symbols$[]=[ "..","[]",":*",":/",":+",":-",":|",":&",":~~",":shr",":shl",":sar",":mod"]
Global _symbols_map$[]=[ "..","[]","*=","/=","+=","-=","|=","&=","^=",">>=", "<<=",">>=","%=" ]
Function PushErr( errInfo$ )
_errStack.AddLast _errInfo
_errInfo=errInfo
End Function
Function PopErr()
_errInfo=String(_errStack.RemoveLast())
End Function
Function Err( err$ )
If DEBUGSTOP_ON_ERROR Then
DebugStop ' useful for debugging!
End If
Throw "Compile Error: "+err + "~n" + _errInfo + "~n"
End Function
Function Warn( err$ )
'If DEBUGSTOP_ON_ERROR Then
' DebugStop ' useful for debugging!
'End If
Print "Compile Warning: "+err + "~n" + _errInfo + "~n"
End Function
Function FormatError:String(path:String, line:Int, char:Int)
Return "[" + path + ";" + line + ";" + char + "]"
End Function
Function InternalErr()
If DEBUGSTOP_ON_ERROR Then
DebugStop ' useful for debugging!
End If
Throw "Internal Error.~n" + _errInfo + "~n"
End Function
Function IsSpace:Int( ch:Int )
Return ch<=Asc(" ") Or ch=$A0 ' NO-BREAK SPACE (U+00A0)
End Function
Function IsDigit:Int( ch:Int )
Return ch>=Asc("0") And ch<=Asc("9")
End Function
Function IsAlpha:Int( ch:Int )
Return (ch>=Asc("A") And ch<=Asc("Z")) Or (ch>=Asc("a") And ch<=Asc("z"))
End Function
Function IsBinDigit:Int( ch:Int )
Return ch=Asc("0") Or ch=Asc("1")
End Function
Function IsHexDigit:Int( ch:Int )
Return IsDigit(ch) Or (ch>=Asc("A") And ch<=Asc("F")) Or (ch>=Asc("a") And ch<=Asc("f"))
End Function
Function Todo()
Err "TODO!"
End Function
Function IsStandardFunc:Int(func:String)
func = func.ToLower()
Global funcs:String = ";isalnum;isalpha;isascii;isblank;iscntrl;isdigit;isgraph;islower;isprint;ispunct;isspace;isupper;isxdigit;" + ..
"strlen;_wgetenv;_wputenv;"
Return funcs.Find(func) > 0
End Function
Function mapSymbol:String(sym:String)
For Local i:Int = 0 Until _symbols.length
If sym = _symbols[i] Then
Return _symbols_map[i]
End If
Next
Return sym
End Function
'enquote depending on ENV_LANG
'
Function LangEnquote$( str$ )
str=EscapeString(str)
' str=str.Replace( "~0","\0" ) 'Fix me?
For Local i:Int=0 Until str.Length
If str[i]>=32 And str[i]<128 Continue
Local t$,n:Int=str[i]
While n
Local c:Int=(n&15)+48
If c>=58 c:+97-58
t=Chr( c )+t
n=(n Shr 4) & $0fffffff
Wend
If Not t t="0"
If ENV_LANG = "cpp" Then
'Case "cpp"
t="~q~q\x"+t+"~q~q"
Else
t="\u"+("0000"+t)[-4..]
End If
str=str[..i]+t+str[i+1..]
i:+t.Length-1
Next
str="~q"+str+"~q"
If ENV_LANG="cpp" str="L"+str
Return str
End Function
Function EscapeString$(str$)
str=str.Replace( "\","\\" )
str=str.Replace( "~q","\~q" )
str=str.Replace( "~n","\n" )
str=str.Replace( "~r","\r" )
str=str.Replace( "~t","\t" )
Return str
End Function
Function BmxEnquote$( str$ )
str=str.Replace( "~~","~~~~" )
str=str.Replace( "~q","~~q" )
str=str.Replace( "~n","~~n" )
str=str.Replace( "~r","~~r" )
str=str.Replace( "~t","~~t" )
str=str.Replace( "~0","~~0" )
str="~q"+str+"~q"
Return str
End Function
Function BmxUnquote$( str$, unicodeConvert:Int = False )
If str.length = 1 Or str[str.length - 1] <> Asc("~q") Then
Err "Expecting expression but encountered malformed string literal"
End If
str=str[1..str.Length-1]
If unicodeConvert Then
Local pos:Int = str.Find("~~")
While pos <> -1
If pos + 1 < str.length Then
If str[pos + 1] >= Asc("1") And str[pos + 1] <= Asc("9") Then
Local p2:Int = str.Find("~~", pos + 1)
If p2 <> -1 Then
Local s:String = Chr(str[pos + 1.. p2].ToInt())
str = str[..pos] + s + str[p2 + 1..]
End If
End If
End If
pos = str.Find("~~", pos + 1)
Wend
End If
str=str.Replace( "~~~~","~~z" ) 'a bit dodgy - uses bad esc sequence ~z
str=str.Replace( "~~q","~q" )
str=str.Replace( "~~n","~n" )
str=str.Replace( "~~r","~r" )
str=str.Replace( "~~t","~t" )
str=str.Replace( "~~0","~0" )
str=str.Replace( "~~z","~~" )
Return str
End Function
Type TStack Extends TList
Method Push(obj:Object)
AddFirst(obj)
End Method
Method Length:Int()
Return count()
End Method
Method Get:Object(index:Int)
Return ValueAtIndex(index)
End Method
Method Pop:Object()
Return RemoveFirst()
End Method
End Type
Type TStringList Extends TList
Method Join:String(s:String)
Local arr:String[] = New String[count()]
Local index:Int
For Local t:String = EachIn Self
arr[index] = t
index :+ 1
Next
Return s.Join(arr)
End Method
End Type
Type TKeyValue
Field key:Object
Field value:Object
Method Create:TKeyValue(key:Object,value:Object)
Self.key = key
Self.value = value
Return Self
End Method
Method Compare:Int(other:Object)
If Not TKeyValue(other) Return 0
Return key.Compare(TKeyValue(other).key)
End Method
End Type
Type TUnorderedMap
Field list:TList = New TList
Field map:TMap = New TMap
Field valuesList:TList = New TList
Method Insert( key:Object,value:Object )
list.AddLAst(New TKeyValue.Create(key, value))
valuesList.AddLast(value)
map.Insert(key, value)
End Method
Method Keys:TList()
Local klist:TList = New TList
For Local kv:TKeyValue = EachIn list
klist.AddLast(kv.key)
Next
Return klist
End Method
Method Values:TList()
'Local vlist:TList = New TList
'For Local kv:TKeyValue = EachIn list
' vlist.AddLast(kv.value)
'Next
Return valuesList
End Method
Method Contains:Int( key:Object )
Return map.Contains(key)
End Method
Method ValueForKey:Object( key:Object )
Return map.ValueForKey(key)
End Method
End Type
Function MakeKeywords:String()
Local keywords:String
keywords :+ "import brl.classes~n"
keywords :+ "Asc%(v$)=~qbrl_blitz_keywords_asc~q~n"
keywords :+ "Sgn#(v#)=~qbrl_blitz_keywords_sgn~q~n"
keywords :+ "Chr$(v%)=~qbrl_blitz_keywords_chr~q~n"
keywords :+ "Len%(v:Object)=~qbrl_blitz_keywords_len~q~n"
keywords :+ "Min%(v1%,v2%)=~qbrl_blitz_keywords_min~q~n"
keywords :+ "Max%(v1%,v2%)=~qbrl_blitz_keywords_max~q~n"
'keywords :+ "SizeOf%(v%)=~qbrl_blitz_keywords_sizeof~q~n"
'keywords :+ "Incbin(v$)=~qbrl_blitz_keywords_incbin~q~n"
keywords :+ "IncbinPtr@*(v$)=~qbbIncbinPtr~q~n"
keywords :+ "IncbinLen%(v$)=~qbbIncbinLen~q~n"
Return keywords
End Function
Function FilePath:String(path:String)
Local baseDir:String = ExtractDir(path)
Local bmxDir:String = baseDir + "/.bmx"
If FileType(bmxDir) <> FILETYPE_DIR Then
Throw "Missing : " + bmxDir
End If
Return bmxDir
End Function
Function BuildHeaderName:String(path:String)
If opt_buildtype = BUILDTYPE_MODULE Then
path = opt_modulename + "_" + StripDir(path)
Else
Local dir:String = ExtractDir(path).ToLower().Replace("/.bmx","")
dir = dir[dir.findLast("/") + 1..]
If dir.EndsWith(".mod") Then
dir = dir.Replace(".mod", "")
End If
Local file:String = StripDir(path).ToLower()
path = dir + "_" + file
End If
Return TStringHelper.Sanitize(path, , True)
End Function
Rem
bbdoc: Get the header file name from a given module ident, optionally with include path.
End Rem
Function ModuleHeaderFromIdent:String(ident:String, includePath:Int = False)
Local ns:String = ident[..ident.find(".")]
Local name:String = ident[ident.find(".") + 1..]
Local file:String = name + ".bmx" + FileMung() + ".h"
If includePath Then
file = ns + ".mod/" + name + ".mod/.bmx/" + file
End If
Return file
End Function
Function HeaderFile:String(path:String, mung:String)
Local fileDir:String = FilePath(path)
Local file:String = StripDir(path)
Return fileDir + "/" + file + mung + ".h"
End Function
Function OutputFilePath:String(path:String, mung:String, suffix:String, bmxDir:Int = False)
Local fileDir:String = FilePath(path)
If bmxDir Then
fileDir :+ "/.bmx"
End If
Local file:String = StripDir(path)
Return fileDir + "/" + file + mung + "." + suffix
End Function
Function FileMung:String(makeApp:Int = False)
Local m:String = "."
If makeApp Then
Select opt_apptype
Case APPTYPE_CONSOLE
m :+ "console."
Case APPTYPE_GUI
m :+ "gui."
End Select
End If
If opt_release Then
m :+ "release"
Else
m :+ "debug"
End If
If opt_threaded Then
m :+ ".mt"
End If
m :+ "." + opt_platform
m :+ "." + opt_arch
Return m
End Function
Function HeaderComment:String()
' TODO
End Function