1 | 'function.sbp
|
---|
2 |
|
---|
3 |
|
---|
4 | #ifndef _INC_FUNCTION
|
---|
5 | #define _INC_FUNCTION
|
---|
6 |
|
---|
7 |
|
---|
8 | Const _System_PI = 3.14159265358979323846264
|
---|
9 | Const _System_LOG2 = 0.6931471805599453094172321214581765680755
|
---|
10 | Const _System_SQRT2 = 1.41421356237309504880168872421
|
---|
11 | Const _System_Log_N = 7 As Long
|
---|
12 |
|
---|
13 |
|
---|
14 | #require <Classes/System/Math.ab>
|
---|
15 |
|
---|
16 |
|
---|
17 | '------------- サポート関数の定義 -------------
|
---|
18 |
|
---|
19 | Function ldexp(x As Double, n As Long) As Double
|
---|
20 | If x = 0 Then
|
---|
21 | ldexp = 0
|
---|
22 | Exit Function
|
---|
23 | End If
|
---|
24 | Dim pSrc = VarPtr(x) As *QWord
|
---|
25 | Dim pDest = VarPtr(ldexp) As *QWord
|
---|
26 | n += (pSrc[0] >> 52) As DWord And &h7FF
|
---|
27 | pDest[0] = n << 52 Or (pSrc[0] And &h800FFFFFFFFFFFFF)
|
---|
28 | End Function
|
---|
29 |
|
---|
30 | Function frexp(x As Double, ByRef n As Long) As Double
|
---|
31 | If x = 0 Then
|
---|
32 | n = 0
|
---|
33 | frexp = 0
|
---|
34 | Exit Function
|
---|
35 | End If
|
---|
36 |
|
---|
37 | Dim pSrc = VarPtr(x) As *QWord
|
---|
38 | Dim pDest = VarPtr(frexp) As *QWord
|
---|
39 | n = ((pSrc[0] >> 52) As DWord And &h7FF) - 1022
|
---|
40 | pDest[0] = (pSrc[0] And &h800FFFFFFFFFFFFF) Or &h3FE0000000000000
|
---|
41 | End Function
|
---|
42 |
|
---|
43 | Function frexp(x As Single, ByRef n As Long) As Single
|
---|
44 | If x = 0 Then
|
---|
45 | n = 0
|
---|
46 | frexp = 0
|
---|
47 | Exit Function
|
---|
48 | End If
|
---|
49 |
|
---|
50 | Dim pSrc As *DWord, pDest As *DWord
|
---|
51 | pSrc = VarPtr(x) As *DWord
|
---|
52 | pDest = VarPtr(frexp) As *DWord
|
---|
53 | n = ((pSrc[0] >> 23) And &hFF) - 126
|
---|
54 | pDest[0] = (pSrc[0] And &h807FFFFF) Or &h7E000000
|
---|
55 | End Function
|
---|
56 |
|
---|
57 | Function ipow(x As Double, n As Long) As Double
|
---|
58 | Dim abs_n As Long
|
---|
59 | Dim r = 1 As Double
|
---|
60 |
|
---|
61 | abs_n=Abs(n) As Long
|
---|
62 | While abs_n<>0
|
---|
63 | If abs_n and 1 Then r *= x
|
---|
64 | x = x * x
|
---|
65 | abs_n >>= 1 ' abs_n \= 2
|
---|
66 | Wend
|
---|
67 |
|
---|
68 | If n>=0 Then
|
---|
69 | ipow=r
|
---|
70 | Else
|
---|
71 | ipow=1/r
|
---|
72 | End If
|
---|
73 | End Function
|
---|
74 |
|
---|
75 | Function pow(x As Double, y As Double) As Double
|
---|
76 | If -LONG_MAX<=y and y<=LONG_MAX and y=CDbl(Int(y)) Then
|
---|
77 | pow=ipow(x,y As Long)
|
---|
78 | Exit Function
|
---|
79 | End If
|
---|
80 |
|
---|
81 | If x>0 Then
|
---|
82 | pow=Exp(y*Log(x))
|
---|
83 | Exit Function
|
---|
84 | End If
|
---|
85 |
|
---|
86 | If x<>0 or y<=0 Then
|
---|
87 | 'error
|
---|
88 | End If
|
---|
89 |
|
---|
90 | pow=0
|
---|
91 | End Function
|
---|
92 |
|
---|
93 | #ifdef _WIN64
|
---|
94 |
|
---|
95 | Function _System_GetNaN() As Double
|
---|
96 | SetQWord(VarPtr(_System_GetNaN) As *QWord, &H7FF8000000000000)
|
---|
97 | End Function
|
---|
98 |
|
---|
99 | Function _System_GetInf(sign As Boolean) As Double
|
---|
100 | Dim s = 0 As QWord
|
---|
101 | If sign Then s = 1 << 63
|
---|
102 | SetQWord(VarPtr(_System_GetInf) As *QWord, &h7FF0000000000000 Or s)
|
---|
103 | End Function
|
---|
104 |
|
---|
105 | #else
|
---|
106 |
|
---|
107 | Function _System_GetNaN() As Double
|
---|
108 | Dim p As *DWord
|
---|
109 | p = VarPtr(_System_GetNaN) As *DWord
|
---|
110 | p[0] = 0
|
---|
111 | p[1] = &H7FF80000
|
---|
112 | End Function
|
---|
113 |
|
---|
114 | Function _System_GetInf(sign As Boolean) As Double
|
---|
115 | Dim s = 0 As DWord
|
---|
116 | If sign Then s = (1 As DWord) << 31
|
---|
117 | Dim p As *DWord
|
---|
118 | p = VarPtr(_System_GetInf) As *DWord
|
---|
119 | p[0] = 0
|
---|
120 | p[1] = &h7FF00000 Or s
|
---|
121 | End Function
|
---|
122 |
|
---|
123 | #endif
|
---|
124 |
|
---|
125 | ' xの符号だけをyのものにした値を返す。
|
---|
126 | ' 引数 x 元となる絶対値
|
---|
127 | ' 引数 y 元となる符号
|
---|
128 | Function CopySign(x As Double, y As Double) As Double
|
---|
129 | SetQWord(VarPtr(CopySign), (GetQWord(VarPtr(x)) And &h7fffffffffffffff) Or (GetQWord(VarPtr(y)) And &h8000000000000000))
|
---|
130 | End Function
|
---|
131 |
|
---|
132 | Function CopySign(x As Single, y As Single) As Single
|
---|
133 | SetDWord(VarPtr(CopySign), (GetDWord(VarPtr(x)) And &h7fffffff) Or (GetDWord(VarPtr(y)) And &h80000000))
|
---|
134 | End Function
|
---|
135 |
|
---|
136 | Function _System_SetSign(x As Double, isNegative As Long) As Double
|
---|
137 | #ifdef _WIN64
|
---|
138 | SetQWord(AddressOf(CopySign), (GetQWord(VarPtr(x)) And &h7fffffffffffffff) Or (isNegative << 63))
|
---|
139 | #else
|
---|
140 | SetDWord(AddressOf(CopySign), GetDWord(VarPtr(x)))
|
---|
141 | SetDWord(AddressOf(CopySign) + SizeOf (DWord), GetQWord(VarPtr(x) + SizeOf (DWord)) And &h7fffffff Or (isNegative << 31))
|
---|
142 | #endif
|
---|
143 | End Function
|
---|
144 |
|
---|
145 | Const RAND_MAX=&H7FFFFFFF
|
---|
146 | Dim _System_RndNext=1 As DWord
|
---|
147 |
|
---|
148 | Function rand() As Long
|
---|
149 | _System_RndNext = _System_RndNext * 1103515245 + 12345
|
---|
150 | rand = _System_RndNext >> 1
|
---|
151 | End Function
|
---|
152 |
|
---|
153 | Sub srand(dwSeek As DWord)
|
---|
154 | _System_RndNext = dwSeek
|
---|
155 | End Sub
|
---|
156 |
|
---|
157 |
|
---|
158 | '------------- ここからBasic標準関数の定義 -------------
|
---|
159 |
|
---|
160 |
|
---|
161 | '------------------
|
---|
162 | ' データ型変換関数
|
---|
163 | '------------------
|
---|
164 |
|
---|
165 | Function CDbl(number As Double) As Double
|
---|
166 | CDbl=number
|
---|
167 | End Function
|
---|
168 |
|
---|
169 | Function _CUDbl(number As QWord) As Double
|
---|
170 | _CUDbl=number As Double
|
---|
171 | End Function
|
---|
172 |
|
---|
173 | Function CDWord(num As Double) As DWord
|
---|
174 | CDWord=num As DWord
|
---|
175 | End Function
|
---|
176 |
|
---|
177 | Function CInt(number As Double) As Long
|
---|
178 | CInt=number As Long
|
---|
179 | End Function
|
---|
180 |
|
---|
181 | Function CSng(number As Double) As Single
|
---|
182 | CSng=number As Single
|
---|
183 | End Function
|
---|
184 |
|
---|
185 | #ifdef _WIN64
|
---|
186 | Function Fix(number As Double) As Long
|
---|
187 | Fix=number As Long
|
---|
188 | End Function
|
---|
189 | #else
|
---|
190 | 'Fix関数はコンパイラに組み込まれている
|
---|
191 | 'Function Fix(number As Double) As Long
|
---|
192 | #endif
|
---|
193 |
|
---|
194 | Function Int(number As Double) As Long
|
---|
195 | Int=Fix(number)
|
---|
196 | If number<0 Then
|
---|
197 | If number<Fix(number) Then Int=Int-1
|
---|
198 | End If
|
---|
199 | End Function
|
---|
200 |
|
---|
201 |
|
---|
202 | '-------------------------------------
|
---|
203 | ' ポインタ関数(コンパイラに組み込み)
|
---|
204 | '-------------------------------------
|
---|
205 |
|
---|
206 | 'Function GetDouble(p As DWord) As Double
|
---|
207 | 'Function GetSingle(p As DWord) As Single
|
---|
208 | 'Function GetDWord(p As DWord) As DWord
|
---|
209 | 'Function GetWord(p As DWord) As Word
|
---|
210 | 'Function GetByte(p As DWord) As Byte
|
---|
211 | 'Sub SetDouble(p As DWord, dblData As Double)
|
---|
212 | 'Sub SetSingle(p As DWord, fltData As Single)
|
---|
213 | 'Sub SetDWord(p As DWord, dwData As DWord)
|
---|
214 | 'Sub SetWord(p As DWord, wData As Word)
|
---|
215 | 'Sub SetByte(p As DWord, byteData As Byte)
|
---|
216 |
|
---|
217 |
|
---|
218 | '----------
|
---|
219 | ' 算術関数
|
---|
220 | '----------
|
---|
221 |
|
---|
222 | Function Abs(number As Double) As Double
|
---|
223 | 'Abs = Math.Abs(number)
|
---|
224 | If number < 0 then
|
---|
225 | return -number
|
---|
226 | Else
|
---|
227 | return number
|
---|
228 | End If
|
---|
229 | End Function
|
---|
230 |
|
---|
231 | Function Exp(x As Double) As Double
|
---|
232 | Exp = Math.Exp(x)
|
---|
233 | End Function
|
---|
234 |
|
---|
235 | Function Log(x As Double) As Double
|
---|
236 | Log = Math.Log(x)
|
---|
237 | End Function
|
---|
238 |
|
---|
239 | Function Log1p(x As Double) As Double
|
---|
240 | If x < -1 Or IsNaN(x) Then
|
---|
241 | Log1p = _System_GetNaN()
|
---|
242 | ElseIf x = 0 Then
|
---|
243 | x = 0
|
---|
244 | ElseIf IsInf(x) Then
|
---|
245 | Log1p = x
|
---|
246 | Else
|
---|
247 | Log1p = _System_Log1p(x)
|
---|
248 | End If
|
---|
249 | End Function
|
---|
250 |
|
---|
251 | Function _System_Log1p(x As Double) As Double
|
---|
252 | Dim s = 0 As Double
|
---|
253 | Dim i = 7 As Long
|
---|
254 | While i >= 1
|
---|
255 | Dim t = (i * x) As Double
|
---|
256 | s = t / (2 + t / (2 * i + 1 + s))
|
---|
257 | i--
|
---|
258 | Wend
|
---|
259 | Return x / (1 + s)
|
---|
260 | End Function
|
---|
261 |
|
---|
262 | Function Sgn(number As Double) As Long
|
---|
263 | Sgn = Math.Sign(number)
|
---|
264 | End Function
|
---|
265 |
|
---|
266 | Function Sqr(number As Double) As Double
|
---|
267 | Sqr = Math.Sqrt(number)
|
---|
268 | End Function
|
---|
269 |
|
---|
270 | Function Atn(number As Double) As Double
|
---|
271 | Atn = Math.Atan(number)
|
---|
272 | End Function
|
---|
273 |
|
---|
274 | Function _Support_tan(x As Double, ByRef k As Long) As Double
|
---|
275 | Dim i As Long
|
---|
276 | Dim t As Double, x2 As Double
|
---|
277 |
|
---|
278 | If x>=0 Then
|
---|
279 | k=Fix(x/(_System_PI/2)+0.5)
|
---|
280 | Else
|
---|
281 | k=Fix(x/(_System_PI/2)-0.5)
|
---|
282 | End If
|
---|
283 |
|
---|
284 | x=(x-(CDbl(3217)/CDbl(2048))*k)+4.4544551033807686783083602485579e-6*k
|
---|
285 |
|
---|
286 | x2=x*x
|
---|
287 | t=0
|
---|
288 |
|
---|
289 | For i=19 To 3 Step -2
|
---|
290 | t=x2/(i-t)
|
---|
291 | Next
|
---|
292 |
|
---|
293 | _Support_tan=x/(1-t)
|
---|
294 | End Function
|
---|
295 |
|
---|
296 | Function Atn2(y As Double, x As Double) As Double
|
---|
297 | Atn2 = Math.Atan2(y, x)
|
---|
298 | End Function
|
---|
299 |
|
---|
300 | Function Sin(number As Double) As Double
|
---|
301 | Sin = Math.Sin(number)
|
---|
302 | End Function
|
---|
303 |
|
---|
304 | Function Cos(number As Double) As Double
|
---|
305 | Cos = Math.Cos(number)
|
---|
306 | End Function
|
---|
307 |
|
---|
308 | Function Tan(number As Double) As Double
|
---|
309 | Tan = Math.Tan(number)
|
---|
310 | End Function
|
---|
311 |
|
---|
312 | Function IsNaN(ByVal x As Double) As Boolean
|
---|
313 | Dim p As *DWord
|
---|
314 | p = VarPtr(x) As *DWord
|
---|
315 | IsNaN = False
|
---|
316 | If (p[1] And &H7FF00000) = &H7FF00000 Then
|
---|
317 | If (p[0] <> 0) Or ((p[1] And &HFFFFF) <> 0) Then
|
---|
318 | IsNaN = True
|
---|
319 | End If
|
---|
320 | End If
|
---|
321 | End Function
|
---|
322 |
|
---|
323 | Function IsInf(x As Double) As Boolean
|
---|
324 | Dim p As *DWord, nan As Double
|
---|
325 | p = VarPtr(x) As *DWord
|
---|
326 | p[1] And= &h7fffffff
|
---|
327 | nan = _System_GetInf(False)
|
---|
328 | IsInf = (memcmp(p As *Byte, VarPtr(nan), SizeOf (Double)) = 0)
|
---|
329 | End Function
|
---|
330 |
|
---|
331 | Function IsNaNOrInf(x As Double) As Boolean
|
---|
332 | IsNaNOrInf = IsFinite(x)
|
---|
333 | End Function
|
---|
334 |
|
---|
335 | Function IsFinite(x As Double) As Boolean
|
---|
336 | Dim p As *DWord, nan As Double
|
---|
337 | p = VarPtr(x) As *DWord
|
---|
338 | ' p[1] And= &h7ffe0000
|
---|
339 | p[1] And= &H7FF00000
|
---|
340 | p[0] = 0
|
---|
341 | nan = _System_GetInf(/*x,*/ False)
|
---|
342 | IsFinite = (memcmp(p As BytePtr, VarPtr(nan), SizeOf (Double)) = 0)
|
---|
343 | End Function
|
---|
344 |
|
---|
345 | Const RAND_UNIT = (1.0 / (LONG_MAX + 1.0))
|
---|
346 | Function Rnd() As Double
|
---|
347 | Rnd = RAND_UNIT * rand()
|
---|
348 | End Function
|
---|
349 |
|
---|
350 | Const HIDWORD(qw) = (((qw As QWord) >> 32) And &HFFFFFFFF) As DWord
|
---|
351 | Const LODWORD(qw) = ((qw As QWord) And &HFFFFFFFF) As DWord
|
---|
352 |
|
---|
353 | Const MAKEDWORD(l, h) = (((l As DWord) And &HFFFF) Or (((h As DWord) And &HFFFF) << 16)) As DWord
|
---|
354 | Const MAKEQWORD(l, h) = (((l As QWord) And &HFFFFFFFF) Or (((h As QWord) And &HFFFFFFFF) << 32)) As QWord
|
---|
355 |
|
---|
356 | '------------
|
---|
357 | ' 文字列関数
|
---|
358 | '------------
|
---|
359 |
|
---|
360 | Function Asc(buf As *StrChar) As StrChar
|
---|
361 | Asc = buf[0]
|
---|
362 | End Function
|
---|
363 |
|
---|
364 | Function Chr$(code As StrChar) As String
|
---|
365 | Chr$ = ZeroString(1)
|
---|
366 | Chr$[0] = code
|
---|
367 | End Function
|
---|
368 |
|
---|
369 | #ifndef __STRING_IS_NOT_UNICODE
|
---|
370 | Function AscW(s As *WCHAR) As UCSCHAR
|
---|
371 | If s.Length = 0 Then
|
---|
372 | AscW = 0
|
---|
373 | Else
|
---|
374 | If _System_IsSurrogatePair(s[0], s[1]) Then
|
---|
375 | AscW = ((s[0] And &h3FF) As DWord << 10) Or (s[1] And &h3FF)
|
---|
376 | Else
|
---|
377 | AscW = s[0]
|
---|
378 | End If
|
---|
379 | End If
|
---|
380 | End Function
|
---|
381 |
|
---|
382 | Function ChrW(c As UCSCHAR) As String
|
---|
383 | If c <= &hFFFF Then
|
---|
384 | ChrW.ReSize(1)
|
---|
385 | ChrW[0] = c As WCHAR
|
---|
386 | ElseIf c < &h10FFFF Then
|
---|
387 | ChrW.ReSize(2)
|
---|
388 | ChrW[0] = &hD800 Or (c >> 10)
|
---|
389 | ChrW[1] = &hDC00 Or (c And &h3FF)
|
---|
390 | Else
|
---|
391 | ' OutOfRangeException
|
---|
392 | End If
|
---|
393 | End Function
|
---|
394 | #endif
|
---|
395 |
|
---|
396 | Function Date$() As String
|
---|
397 | Dim st As SYSTEMTIME
|
---|
398 | GetLocalTime(st)
|
---|
399 |
|
---|
400 | 'year
|
---|
401 | Date$=Str$(st.wYear)
|
---|
402 |
|
---|
403 | 'month
|
---|
404 | If st.wMonth<10 Then
|
---|
405 | Date$=Date$+"/0"
|
---|
406 | Else
|
---|
407 | Date$=Date$+"/"
|
---|
408 | End If
|
---|
409 | Date$=Date$+Str$(st.wMonth)
|
---|
410 |
|
---|
411 | 'day
|
---|
412 | If st.wDay<10 Then
|
---|
413 | Date$=Date$+"/0"
|
---|
414 | Else
|
---|
415 | Date$=Date$+"/"
|
---|
416 | End If
|
---|
417 | Date$=Date$+Str$(st.wDay)
|
---|
418 | End Function
|
---|
419 |
|
---|
420 | Dim _System_HexadecimalTable[&h10] = [&h30, &h31, &h32, &h33, &h34, &h35, &h36, &h37, &h38, &h39, &h41, &h42, &h43, &h44, &h45, &h46] As Byte
|
---|
421 |
|
---|
422 | Function _System_Hex(x As DWord, zeroSuppress As Boolean) As String
|
---|
423 | Dim s[7] As StrChar
|
---|
424 | Dim i As Long
|
---|
425 | For i = 0 To ELM(Len (s) \ SizeOf (StrChar))
|
---|
426 | s[i] = _System_HexadecimalTable[x >> 28] As StrChar
|
---|
427 | x <<= 4
|
---|
428 | Next
|
---|
429 | If zeroSuppress Then
|
---|
430 | Dim i As Long
|
---|
431 | For i = 0 To 6
|
---|
432 | If s[i] <> &h30 Then 'Asc("0")
|
---|
433 | Exit For
|
---|
434 | End If
|
---|
435 | Next
|
---|
436 | Return New String(VarPtr(s[i]) As *StrChar, Len (s) \ SizeOf (StrChar) - i)
|
---|
437 | Else
|
---|
438 | Return New String(s As *StrChar, Len (s) \ SizeOf (StrChar))
|
---|
439 | End If
|
---|
440 | End Function
|
---|
441 |
|
---|
442 | Function Hex$(x As DWord) As String
|
---|
443 | Hex$ = _System_Hex(x, True)
|
---|
444 | End Function
|
---|
445 |
|
---|
446 | Function Hex$(x As QWord) As String
|
---|
447 | Hex$ = _System_Hex(HIDWORD(x), True) + _System_Hex(LODWORD(x), False)
|
---|
448 | End Function
|
---|
449 |
|
---|
450 | Function InStr(StartPos As Long, buf1 As String, buf2 As String) As Long
|
---|
451 | Dim i As Long, i2 As Long, i3 As Long
|
---|
452 |
|
---|
453 | Dim len1 = buf1.Length
|
---|
454 | Dim len2 = buf2.Length
|
---|
455 |
|
---|
456 | If len2=0 Then
|
---|
457 | InStr=StartPos
|
---|
458 | Exit Function
|
---|
459 | End If
|
---|
460 |
|
---|
461 | StartPos--
|
---|
462 | If StartPos<0 Then
|
---|
463 | 'error
|
---|
464 | InStr=0
|
---|
465 | Exit Function
|
---|
466 | End If
|
---|
467 |
|
---|
468 | i=StartPos:InStr=0
|
---|
469 | While i<=len1-len2
|
---|
470 | i2=i:i3=0
|
---|
471 | Do
|
---|
472 | If i3=len2 Then
|
---|
473 | InStr=i+1
|
---|
474 | Exit Do
|
---|
475 | End If
|
---|
476 | If buf1[i2]<>buf2[i3] Then Exit Do
|
---|
477 |
|
---|
478 | i2++
|
---|
479 | i3++
|
---|
480 | Loop
|
---|
481 | If InStr Then Exit While
|
---|
482 | i++
|
---|
483 | Wend
|
---|
484 | End Function
|
---|
485 |
|
---|
486 | Function Left$(buf As String, length As Long) As String
|
---|
487 | Left$ = ZeroString(length)
|
---|
488 | memcpy(StrPtr(Left$), StrPtr(buf), SizeOf (StrChar) * length)
|
---|
489 | End Function
|
---|
490 |
|
---|
491 | Function Mid$(buf As String, StartPos As Long)(ReadLength As Long) As String
|
---|
492 | Dim length As Long
|
---|
493 |
|
---|
494 | StartPos--
|
---|
495 | If StartPos<0 Then
|
---|
496 | 'error
|
---|
497 | 'Debug
|
---|
498 | Exit Function
|
---|
499 | End If
|
---|
500 |
|
---|
501 | length=Len(buf)
|
---|
502 | If length<=StartPos Then Exit Function
|
---|
503 |
|
---|
504 | If ReadLength=0 Then
|
---|
505 | ReadLength=length-StartPos
|
---|
506 | End If
|
---|
507 |
|
---|
508 | If ReadLength>length-StartPos Then
|
---|
509 | ReadLength=length-StartPos
|
---|
510 | End If
|
---|
511 |
|
---|
512 | Mid$=ZeroString(ReadLength)
|
---|
513 | memcpy(StrPtr(Mid$), VarPtr(buf.Chars[StartPos]), SizeOf (StrChar) * ReadLength)
|
---|
514 | End Function
|
---|
515 |
|
---|
516 | Function Oct$(num As DWord) As String
|
---|
517 | Dim i As DWord, i2 As DWord
|
---|
518 |
|
---|
519 | For i=10 To 1 Step -1
|
---|
520 | If (num\CDWord(8^i)) And &H07 Then
|
---|
521 | Exit For
|
---|
522 | End If
|
---|
523 | Next
|
---|
524 |
|
---|
525 | Oct$=ZeroString(i+1)
|
---|
526 | i2=0
|
---|
527 | Do
|
---|
528 | Oct$[i2] = &h30 +((num \ CDWord(8 ^ i)) And &H07) As StrChar ' &h30 = Asc("0")
|
---|
529 | If i=0 Then Exit Do
|
---|
530 | i--
|
---|
531 | i2++
|
---|
532 | Loop
|
---|
533 | End Function
|
---|
534 |
|
---|
535 | Function Right$(buf As String, length As Long) As String
|
---|
536 | Dim i As Long
|
---|
537 |
|
---|
538 | i=Len(buf)
|
---|
539 | If i>length Then
|
---|
540 | Right$=ZeroString(length)
|
---|
541 | memcpy(StrPtr(Right$), VarPtr(buf.Chars[i-length]), SizeOf (StrChar) * length)
|
---|
542 | Else
|
---|
543 | Right$=buf
|
---|
544 | End If
|
---|
545 | End Function
|
---|
546 |
|
---|
547 | Function Space$(length As Long) As String
|
---|
548 | Return New String(&h20 As StrChar, length)
|
---|
549 | End Function
|
---|
550 |
|
---|
551 | Dim _System_ecvt_buffer[16] As StrChar
|
---|
552 | Sub _ecvt_support(count As Long)
|
---|
553 | Dim i As Long
|
---|
554 | If _System_ecvt_buffer[count]=9 Then
|
---|
555 | _System_ecvt_buffer[count]=0
|
---|
556 | If count=0 Then
|
---|
557 | For i=16 To 1 Step -1
|
---|
558 | _System_ecvt_buffer[i]=_System_ecvt_buffer[i-1]
|
---|
559 | Next
|
---|
560 | _System_ecvt_buffer[0]=1
|
---|
561 | Else
|
---|
562 | _ecvt_support(count-1)
|
---|
563 | End If
|
---|
564 | Else
|
---|
565 | _System_ecvt_buffer[count]++
|
---|
566 | End If
|
---|
567 | End Sub
|
---|
568 | Function _ecvt(value As Double, count As Long, ByRef dec As Long, ByRef sign As Long) As *StrChar
|
---|
569 | Dim i As Long, i2 As Long
|
---|
570 |
|
---|
571 | _ecvt=_System_ecvt_buffer
|
---|
572 |
|
---|
573 | '値が0の場合
|
---|
574 | If value = 0 Then
|
---|
575 | _System_FillChar(_System_ecvt_buffer, count As SIZE_T, &H30 As StrChar)
|
---|
576 | _System_ecvt_buffer[count] = 0
|
---|
577 | dec = 0
|
---|
578 | sign = 0
|
---|
579 | Exit Function
|
---|
580 | End If
|
---|
581 |
|
---|
582 | '符号の判断(同時に符号を取り除く)
|
---|
583 | If value < 0 Then
|
---|
584 | sign = 1
|
---|
585 | value = -value
|
---|
586 | Else
|
---|
587 | sign = 0
|
---|
588 | End If
|
---|
589 |
|
---|
590 | '正規化
|
---|
591 | dec = 1
|
---|
592 | While value < 0.999999999999999 'value<1
|
---|
593 | value *= 10
|
---|
594 | dec--
|
---|
595 | Wend
|
---|
596 | While 9.99999999999999 <= value '10<=value
|
---|
597 | value /= 10
|
---|
598 | dec++
|
---|
599 | Wend
|
---|
600 |
|
---|
601 | For i=0 To count-1
|
---|
602 | _System_ecvt_buffer[i] = Int(value) As StrChar
|
---|
603 |
|
---|
604 | value = (value-CDbl(Int(value))) * 10
|
---|
605 | Next
|
---|
606 | _System_ecvt_buffer[i] = 0
|
---|
607 |
|
---|
608 | i--
|
---|
609 | If value >= 5 Then
|
---|
610 | '切り上げ処理
|
---|
611 | _ecvt_support(i)
|
---|
612 | End If
|
---|
613 |
|
---|
614 | For i=0 To ELM(count)
|
---|
615 | _System_ecvt_buffer[i] += &H30
|
---|
616 | Next
|
---|
617 | _System_ecvt_buffer[i] = 0
|
---|
618 | End Function
|
---|
619 |
|
---|
620 | Function Str$(dbl As Double) As String
|
---|
621 | If IsNaN(dbl) Then
|
---|
622 | Return "NaN"
|
---|
623 | ElseIf IsInf(dbl) Then
|
---|
624 | If dbl > 0 Then
|
---|
625 | Return "Infinity"
|
---|
626 | Else
|
---|
627 | Return "-Infinity"
|
---|
628 | End If
|
---|
629 | End If
|
---|
630 | Dim dec As Long, sign As Long
|
---|
631 | Dim buffer[32] As StrChar, temp As *StrChar
|
---|
632 | Dim i As Long, i2 As Long, i3 As Long
|
---|
633 |
|
---|
634 | '浮動小数点を文字列に変換
|
---|
635 | temp = _ecvt(dbl, 15, dec, sign)
|
---|
636 |
|
---|
637 | i=0
|
---|
638 |
|
---|
639 | '符号の取り付け
|
---|
640 | If sign Then
|
---|
641 | buffer[i] = Asc("-")
|
---|
642 | i++
|
---|
643 | End If
|
---|
644 |
|
---|
645 | If dec>15 Then
|
---|
646 | '指数表示(桁が大きい場合)
|
---|
647 | buffer[i] = temp[0]
|
---|
648 | i++
|
---|
649 | buffer[i] = Asc(".")
|
---|
650 | i++
|
---|
651 | memcpy(VarPtr(buffer[i]), VarPtr(temp[1]), SizeOf (StrChar) * 14)
|
---|
652 | i += 14
|
---|
653 | buffer[i] = Asc("e")
|
---|
654 | i++
|
---|
655 | _stprintf(VarPtr(buffer[i]), "+%03d", dec - 1)
|
---|
656 |
|
---|
657 | Return MakeStr(buffer)
|
---|
658 | End If
|
---|
659 |
|
---|
660 | If dec < -3 Then
|
---|
661 | '指数表示(桁が小さい場合)
|
---|
662 | buffer[i] = temp[0]
|
---|
663 | i++
|
---|
664 | buffer[i] = Asc(".")
|
---|
665 | i++
|
---|
666 | memcpy(VarPtr(buffer[i]), VarPtr(temp[1]), SizeOf (StrChar) * 14)
|
---|
667 | i+=14
|
---|
668 | buffer[i] = Asc("e")
|
---|
669 | i++
|
---|
670 | _stprintf(VarPtr(buffer[i]), "+%03d", dec - 1)
|
---|
671 |
|
---|
672 | Return MakeStr(buffer)
|
---|
673 | End If
|
---|
674 |
|
---|
675 | '整数部
|
---|
676 | i2=dec
|
---|
677 | i3=0
|
---|
678 | If i2>0 Then
|
---|
679 | While i2>0
|
---|
680 | buffer[i]=temp[i3]
|
---|
681 | i++
|
---|
682 | i3++
|
---|
683 | i2--
|
---|
684 | Wend
|
---|
685 | buffer[i]=Asc(".")
|
---|
686 | i++
|
---|
687 | Else
|
---|
688 | buffer[i]=&H30
|
---|
689 | i++
|
---|
690 | buffer[i]=Asc(".")
|
---|
691 | i++
|
---|
692 |
|
---|
693 | i2=dec
|
---|
694 | While i2<0
|
---|
695 | buffer[i]=&H30
|
---|
696 | i++
|
---|
697 | i2++
|
---|
698 | Wend
|
---|
699 | End If
|
---|
700 |
|
---|
701 | '小数部
|
---|
702 | While i3<15
|
---|
703 | buffer[i]=temp[i3]
|
---|
704 | i++
|
---|
705 | i3++
|
---|
706 | Wend
|
---|
707 |
|
---|
708 | While buffer[i-1]=&H30
|
---|
709 | i--
|
---|
710 | Wend
|
---|
711 | If buffer[i-1]=Asc(".") Then i--
|
---|
712 |
|
---|
713 | buffer[i]=0
|
---|
714 | Return MakeStr(buffer)
|
---|
715 | End Function
|
---|
716 |
|
---|
717 | Function Str$(value As Int64) As String
|
---|
718 | Dim temp[255] As Char
|
---|
719 | _sntprintf(temp, Len (temp) \ SizeOf (Char), "%I64d", value)
|
---|
720 | Str$ = New String( temp )
|
---|
721 | End Function
|
---|
722 |
|
---|
723 | Function String$(num As Long, buf As String) As String
|
---|
724 | Dim dwStrPtr As DWord
|
---|
725 | Dim length As Long
|
---|
726 |
|
---|
727 | length=Len(buf)
|
---|
728 |
|
---|
729 | 'バッファ領域を確保
|
---|
730 | String$=ZeroString(length*num)
|
---|
731 |
|
---|
732 | '文字列をコピー
|
---|
733 | Dim i As Long
|
---|
734 | For i=0 To num-1
|
---|
735 | memcpy(VarPtr(String$.Chars[i*length]), StrPtr(buf), SizeOf (StrChar) * length)
|
---|
736 | Next
|
---|
737 | End Function
|
---|
738 |
|
---|
739 | Function Time$() As String
|
---|
740 | Dim st As SYSTEMTIME
|
---|
741 |
|
---|
742 | GetLocalTime(st)
|
---|
743 |
|
---|
744 | 'hour
|
---|
745 | If st.wHour<10 Then
|
---|
746 | Time$="0"
|
---|
747 | End If
|
---|
748 | Time$=Time$+Str$(st.wHour)
|
---|
749 |
|
---|
750 | 'minute
|
---|
751 | If st.wMinute<10 Then
|
---|
752 | Time$=Time$+":0"
|
---|
753 | Else
|
---|
754 | Time$=Time$+":"
|
---|
755 | End If
|
---|
756 | Time$=Time$+Str$(st.wMinute)
|
---|
757 |
|
---|
758 | 'second
|
---|
759 | If st.wSecond<10 Then
|
---|
760 | Time$=Time$+":0"
|
---|
761 | Else
|
---|
762 | Time$=Time$+":"
|
---|
763 | End If
|
---|
764 | Time$=Time$+Str$(st.wSecond)
|
---|
765 | End Function
|
---|
766 |
|
---|
767 | Function Val(buf As *StrChar) As Double
|
---|
768 | Dim i As Long, i2 As Long, i3 As Long, i4 As Long
|
---|
769 | Dim temporary As String
|
---|
770 | Dim TempPtr As *StrChar
|
---|
771 | Dim dbl As Double
|
---|
772 | Dim i64data As Int64
|
---|
773 |
|
---|
774 | Val=0
|
---|
775 |
|
---|
776 | While buf[0]=Asc(" ") or buf[0]=Asc(Ex"\t")
|
---|
777 | buf++
|
---|
778 | Wend
|
---|
779 |
|
---|
780 | If buf[0]=Asc("&") Then
|
---|
781 | temporary = New String( buf )
|
---|
782 | temporary.ToUpper()
|
---|
783 | TempPtr = StrPtr(temporary)
|
---|
784 | If TempPtr(1)=Asc("O") Then
|
---|
785 | '8進数
|
---|
786 | i=2
|
---|
787 | While 1
|
---|
788 | '数字以外の文字の場合は抜け出す
|
---|
789 | i3=TempPtr[i]-&H30
|
---|
790 | If Not (0<=i3 And i3<=7) Then Exit While
|
---|
791 |
|
---|
792 | TempPtr[i]=i3 As StrChar
|
---|
793 | i++
|
---|
794 | Wend
|
---|
795 | i--
|
---|
796 |
|
---|
797 | i64data=1
|
---|
798 | While i>=2
|
---|
799 | Val += ( i64data * TempPtr[i] ) As Double
|
---|
800 |
|
---|
801 | i64data *= &O10
|
---|
802 | i--
|
---|
803 | Wend
|
---|
804 | ElseIf TempPtr(1)=Asc("H") Then
|
---|
805 | '16進数
|
---|
806 | i=2
|
---|
807 | While 1
|
---|
808 | '数字以外の文字の場合は抜け出す
|
---|
809 | i3=TempPtr[i]-&H30
|
---|
810 | If Not(0<=i3 and i3<=9) Then
|
---|
811 | i3=TempPtr[i]-&H41+10
|
---|
812 | If Not(&HA<=i3 and i3<=&HF) Then Exit While
|
---|
813 | End If
|
---|
814 |
|
---|
815 | TempPtr[i]=i3 As StrChar
|
---|
816 | i++
|
---|
817 | Wend
|
---|
818 | i--
|
---|
819 |
|
---|
820 | i64data=1
|
---|
821 | While i>=2
|
---|
822 | Val += (i64data*TempPtr[i]) As Double
|
---|
823 |
|
---|
824 | i64data *= &H10
|
---|
825 | i--
|
---|
826 | Wend
|
---|
827 | End If
|
---|
828 | Else
|
---|
829 | '10進数
|
---|
830 | sscanf(buf,"%lf",VarPtr(Val))
|
---|
831 | End If
|
---|
832 | End Function
|
---|
833 |
|
---|
834 |
|
---|
835 | '--------------
|
---|
836 | ' ファイル関数
|
---|
837 | '--------------
|
---|
838 |
|
---|
839 | Function Eof(FileNum As Long) As Long
|
---|
840 | Dim dwCurrent As DWord, dwEnd As DWord
|
---|
841 |
|
---|
842 | FileNum--
|
---|
843 |
|
---|
844 | dwCurrent=SetFilePointer(_System_hFile(FileNum),0,NULL,FILE_CURRENT)
|
---|
845 | dwEnd=SetFilePointer(_System_hFile(FileNum),0,NULL,FILE_END)
|
---|
846 | SetFilePointer(_System_hFile(FileNum),dwCurrent,NULL,FILE_BEGIN)
|
---|
847 |
|
---|
848 | If dwCurrent>=dwEnd Then
|
---|
849 | Eof=-1
|
---|
850 | Else
|
---|
851 | Eof=0
|
---|
852 | End If
|
---|
853 | End Function
|
---|
854 |
|
---|
855 | Function Lof(FileNum As Long) As Long
|
---|
856 | Lof = GetFileSize(_System_hFile(FileNum-1), 0)
|
---|
857 | End Function
|
---|
858 |
|
---|
859 | Function Loc(FileNum As Long) As Long
|
---|
860 | Dim NowPos As Long, BeginPos As Long
|
---|
861 |
|
---|
862 | FileNum--
|
---|
863 |
|
---|
864 | NowPos=SetFilePointer(_System_hFile(FileNum),0,NULL,FILE_CURRENT)
|
---|
865 | BeginPos=SetFilePointer(_System_hFile(FileNum),0,NULL,FILE_BEGIN)
|
---|
866 | SetFilePointer(_System_hFile(FileNum),NowPos-BeginPos,NULL,FILE_BEGIN)
|
---|
867 |
|
---|
868 | Loc=NowPos-BeginPos
|
---|
869 | End Function
|
---|
870 |
|
---|
871 |
|
---|
872 | '------------------
|
---|
873 | ' メモリ関連の関数
|
---|
874 | '------------------
|
---|
875 |
|
---|
876 | Function malloc(stSize As SIZE_T) As VoidPtr
|
---|
877 | Return _System_pGC->__malloc(stSize,_System_GC_FLAG_NEEDFREE or _System_GC_FLAG_ATOMIC)
|
---|
878 | End Function
|
---|
879 |
|
---|
880 | Function calloc(stSize As SIZE_T) As VoidPtr
|
---|
881 | Return _System_pGC->__malloc(stSize,_System_GC_FLAG_NEEDFREE or _System_GC_FLAG_ATOMIC or _System_GC_FLAG_INITZERO)
|
---|
882 | End Function
|
---|
883 |
|
---|
884 | Function realloc(lpMem As VoidPtr, stSize As SIZE_T) As VoidPtr
|
---|
885 | If lpMem = 0 Then
|
---|
886 | Return malloc(stSize)
|
---|
887 | Else
|
---|
888 | Return _System_pGC->__realloc(lpMem,stSize)
|
---|
889 | End If
|
---|
890 | End Function
|
---|
891 |
|
---|
892 | Sub free(lpMem As VoidPtr)
|
---|
893 | _System_pGC->__free(lpMem)
|
---|
894 | End Sub
|
---|
895 |
|
---|
896 |
|
---|
897 | Function _System_malloc(stSize As SIZE_T) As VoidPtr
|
---|
898 | Return HeapAlloc(_System_hProcessHeap,0,stSize)
|
---|
899 | End Function
|
---|
900 |
|
---|
901 | Function _System_calloc(stSize As SIZE_T) As VoidPtr
|
---|
902 | Return HeapAlloc(_System_hProcessHeap,HEAP_ZERO_MEMORY,stSize)
|
---|
903 | End Function
|
---|
904 |
|
---|
905 | Function _System_realloc(lpMem As VoidPtr, stSize As SIZE_T) As VoidPtr
|
---|
906 | If lpMem = 0 Then
|
---|
907 | Return HeapAlloc(_System_hProcessHeap, 0, stSize)
|
---|
908 | Else
|
---|
909 | Return HeapReAlloc(_System_hProcessHeap, 0, lpMem, stSize)
|
---|
910 | End If
|
---|
911 | End Function
|
---|
912 |
|
---|
913 | Sub _System_free(lpMem As VoidPtr)
|
---|
914 | HeapFree(_System_hProcessHeap,0,lpMem)
|
---|
915 | End Sub
|
---|
916 |
|
---|
917 |
|
---|
918 | '--------
|
---|
919 | ' その他
|
---|
920 | '--------
|
---|
921 |
|
---|
922 | Sub _splitpath(path As PCSTR, drive As PSTR, dir As PSTR, fname As PSTR, ext As PSTR)
|
---|
923 | Dim i As Long, i2 As Long, i3 As Long, length As Long
|
---|
924 | Dim buffer[MAX_PATH] As SByte
|
---|
925 |
|
---|
926 | '":\"をチェック
|
---|
927 | If not(path[1]=&H3A and path[2]=&H5C) Then Exit Sub
|
---|
928 |
|
---|
929 | 'ドライブ名をコピー
|
---|
930 | If drive Then
|
---|
931 | drive[0]=path[0]
|
---|
932 | drive[1]=path[1]
|
---|
933 | drive[2]=0
|
---|
934 | End If
|
---|
935 |
|
---|
936 | 'ディレクトリ名をコピー
|
---|
937 | i=2
|
---|
938 | i2=0
|
---|
939 | Do
|
---|
940 | If IsDBCSLeadByte(path[i]) <> FALSE and path[i + 1] <> 0 Then
|
---|
941 | If dir Then
|
---|
942 | dir[i2]=path[i]
|
---|
943 | dir[i2+1]=path[i+1]
|
---|
944 | End If
|
---|
945 |
|
---|
946 | i += 2
|
---|
947 | i2 += 2
|
---|
948 | Continue
|
---|
949 | End If
|
---|
950 |
|
---|
951 | If path[i]=0 Then Exit Do
|
---|
952 |
|
---|
953 | If path[i]=&H5C Then '"\"記号であるかどうか
|
---|
954 | i3=i2+1
|
---|
955 | End If
|
---|
956 |
|
---|
957 | If dir Then dir[i2]=path[i]
|
---|
958 |
|
---|
959 | i++
|
---|
960 | i2++
|
---|
961 | Loop
|
---|
962 | If dir Then dir[i3]=0
|
---|
963 | i3 += i-i2
|
---|
964 |
|
---|
965 | 'ファイル名をコピー
|
---|
966 | i=i3
|
---|
967 | i2=0
|
---|
968 | i3=-1
|
---|
969 | Do
|
---|
970 | '#ifdef UNICODE
|
---|
971 | ' If _System_IsSurrogatePair(path[i], path[i + 1]) Then
|
---|
972 | '#else
|
---|
973 | If IsDBCSLeadByte(path[i]) <> FALSE and path[i + 1] <> 0 Then
|
---|
974 | '#endif
|
---|
975 | If fname Then
|
---|
976 | fname[i2]=path[i]
|
---|
977 | fname[i2+1]=path[i+1]
|
---|
978 | End If
|
---|
979 |
|
---|
980 | i += 2
|
---|
981 | i2 += 2
|
---|
982 | Continue
|
---|
983 | End If
|
---|
984 |
|
---|
985 | If path[i]=0 Then Exit Do
|
---|
986 |
|
---|
987 | If path[i]=&H2E Then '.'記号であるかどうか
|
---|
988 | i3=i2
|
---|
989 | End If
|
---|
990 |
|
---|
991 | If fname Then fname[i2]=path[i]
|
---|
992 |
|
---|
993 | i++
|
---|
994 | i2++
|
---|
995 | Loop
|
---|
996 | If i3=-1 Then i3=i2
|
---|
997 | If fname Then fname[i3]=0
|
---|
998 | i3 += i-i2
|
---|
999 |
|
---|
1000 | '拡張子名をコピー
|
---|
1001 | If ext Then
|
---|
1002 | If i3 Then
|
---|
1003 | lstrcpy(ext,path+i3)
|
---|
1004 | End If
|
---|
1005 | else ext[0]=0
|
---|
1006 | End If
|
---|
1007 | End Sub
|
---|
1008 |
|
---|
1009 | Function GetBasicColor(ColorCode As Long) As Long
|
---|
1010 | Select Case ColorCode
|
---|
1011 | Case 0
|
---|
1012 | GetBasicColor=RGB(0,0,0)
|
---|
1013 | Case 1
|
---|
1014 | GetBasicColor=RGB(0,0,255)
|
---|
1015 | Case 2
|
---|
1016 | GetBasicColor=RGB(255,0,0)
|
---|
1017 | Case 3
|
---|
1018 | GetBasicColor=RGB(255,0,255)
|
---|
1019 | Case 4
|
---|
1020 | GetBasicColor=RGB(0,255,0)
|
---|
1021 | Case 5
|
---|
1022 | GetBasicColor=RGB(0,255,255)
|
---|
1023 | Case 6
|
---|
1024 | GetBasicColor=RGB(255,255,0)
|
---|
1025 | Case 7
|
---|
1026 | GetBasicColor=RGB(255,255,255)
|
---|
1027 | End Select
|
---|
1028 | End Function
|
---|
1029 |
|
---|
1030 | Function _System_BSwap(x As Word) As Word
|
---|
1031 | Dim src = VarPtr(x) As *Byte
|
---|
1032 | Dim dst = VarPtr(_System_BSwap) As *Byte
|
---|
1033 | dst[0] = src[1]
|
---|
1034 | dst[1] = src[0]
|
---|
1035 | End Function
|
---|
1036 |
|
---|
1037 | Function _System_BSwap(x As DWord) As DWord
|
---|
1038 | Dim src = VarPtr(x) As *Byte
|
---|
1039 | Dim dst = VarPtr(_System_BSwap) As *Byte
|
---|
1040 | dst[0] = src[3]
|
---|
1041 | dst[1] = src[2]
|
---|
1042 | dst[2] = src[1]
|
---|
1043 | dst[3] = src[0]
|
---|
1044 | End Function
|
---|
1045 |
|
---|
1046 | Function _System_BSwap(x As QWord) As QWord
|
---|
1047 | Dim src = VarPtr(x) As *Byte
|
---|
1048 | Dim dst = VarPtr(_System_BSwap) As *Byte
|
---|
1049 | dst[0] = src[7]
|
---|
1050 | dst[1] = src[6]
|
---|
1051 | dst[2] = src[5]
|
---|
1052 | dst[3] = src[4]
|
---|
1053 | dst[4] = src[3]
|
---|
1054 | dst[5] = src[2]
|
---|
1055 | dst[6] = src[1]
|
---|
1056 | dst[7] = src[0]
|
---|
1057 | End Function
|
---|
1058 |
|
---|
1059 | Function _System_HashFromPtr(p As VoidPtr) As Long
|
---|
1060 | #ifdef _WIN64
|
---|
1061 | Dim qw = p As QWord
|
---|
1062 | Return (HIDWORD(qw) Xor LODWORD(qw)) As Long
|
---|
1063 | #else
|
---|
1064 | Return p As Long
|
---|
1065 | #endif
|
---|
1066 | End Function
|
---|
1067 |
|
---|
1068 | '--------
|
---|
1069 | ' 文字列関数その2
|
---|
1070 | '--------
|
---|
1071 | Function _System_IsSurrogatePair(wcHigh As WCHAR, wcLow As WCHAR) As Boolean
|
---|
1072 | If &hD800 <= wcHigh And wcHigh < &hDC00 Then
|
---|
1073 | If &hDC00 <= wcLow And wcLow < &hE000 Then
|
---|
1074 | Return True
|
---|
1075 | End If
|
---|
1076 | End If
|
---|
1077 | Return False
|
---|
1078 | End Function
|
---|
1079 |
|
---|
1080 | Function _System_IsDoubleUnitChar(lead As WCHAR, trail As WCHAR) As Boolean
|
---|
1081 | Return _System_IsSurrogatePair(lead, trail)
|
---|
1082 | End Function
|
---|
1083 |
|
---|
1084 | Function _System_IsDoubleUnitChar(lead As SByte, trail As SByte) As Boolean
|
---|
1085 | Return IsDBCSLeadByte(lead) <> FALSE
|
---|
1086 | End Function
|
---|
1087 |
|
---|
1088 | Sub _System_FillChar(p As PWSTR, n As SIZE_T, c As WCHAR)
|
---|
1089 | Dim i As SIZE_T
|
---|
1090 | For i = 0 To ELM(n)
|
---|
1091 | p[i] = c
|
---|
1092 | Next
|
---|
1093 | End Sub
|
---|
1094 |
|
---|
1095 | Sub _System_FillChar(p As PSTR, n As SIZE_T, c As SByte)
|
---|
1096 | Dim i As SIZE_T
|
---|
1097 | For i = 0 To ELM(n)
|
---|
1098 | p[i] = c
|
---|
1099 | Next
|
---|
1100 | End Sub
|
---|
1101 |
|
---|
1102 | Function _System_ASCII_IsUpper(c As WCHAR) As Boolean
|
---|
1103 | Return c As DWord - &h41 < 26 ' &h41 = Asc("A")
|
---|
1104 | End Function
|
---|
1105 |
|
---|
1106 | Function _System_ASCII_IsUpper(c As SByte) As Boolean
|
---|
1107 | Return _System_ASCII_IsUpper(c As Byte As WCHAR)
|
---|
1108 | End Function
|
---|
1109 |
|
---|
1110 | Function _System_ASCII_IsLower(c As WCHAR) As Boolean
|
---|
1111 | Return c As DWord - &h61 < 26 ' &h61 = Asc("a")
|
---|
1112 | End Function
|
---|
1113 |
|
---|
1114 | Function _System_ASCII_IsLower(c As SByte) As Boolean
|
---|
1115 | Return _System_ASCII_IsLower(c As Byte As WCHAR)
|
---|
1116 | End Function
|
---|
1117 |
|
---|
1118 | Function _System_ASCII_ToLower(c As WCHAR) As WCHAR
|
---|
1119 | If _System_ASCII_IsUpper(c) Then
|
---|
1120 | Return c Or &h20
|
---|
1121 | Else
|
---|
1122 | Return c
|
---|
1123 | End If
|
---|
1124 | End Function
|
---|
1125 |
|
---|
1126 | Function _System_ASCII_ToLower(c As SByte) As SByte
|
---|
1127 | Return _System_ASCII_ToLower(c As Byte As WCHAR) As Byte As SByte
|
---|
1128 | End Function
|
---|
1129 |
|
---|
1130 | Function _System_ASCII_ToUpper(c As WCHAR) As WCHAR
|
---|
1131 | If _System_ASCII_IsLower(c) Then
|
---|
1132 | Return c And (Not &h20)
|
---|
1133 | Else
|
---|
1134 | Return c
|
---|
1135 | End If
|
---|
1136 | End Function
|
---|
1137 |
|
---|
1138 | Function _System_ASCII_ToUpper(c As SByte) As SByte
|
---|
1139 | Return _System_ASCII_ToUpper(c As Byte As WCHAR) As Byte As SByte
|
---|
1140 | End Function
|
---|
1141 |
|
---|
1142 | Function _System_StrCmp(s1 As PCSTR, s2 As PCSTR) As Long
|
---|
1143 | Dim i = 0 As SIZE_T
|
---|
1144 | While s1[i] = s2[i]
|
---|
1145 | If s1[i] = 0 Then
|
---|
1146 | Exit While
|
---|
1147 | End If
|
---|
1148 | i++
|
---|
1149 | Wend
|
---|
1150 | _System_StrCmp = s1[i] - s2[i]
|
---|
1151 | End Function
|
---|
1152 |
|
---|
1153 | Function _System_StrCmp(s1 As PCWSTR, s2 As PCWSTR) As Long
|
---|
1154 | Dim i = 0 As SIZE_T
|
---|
1155 | While s1[i] = s2[i]
|
---|
1156 | If s1[i] = 0 Then
|
---|
1157 | Exit While
|
---|
1158 | End If
|
---|
1159 | i++
|
---|
1160 | Wend
|
---|
1161 | _System_StrCmp = s1[i] - s2[i]
|
---|
1162 | End Function
|
---|
1163 |
|
---|
1164 | Function _System_StrCmpN(s1 As PCSTR, s2 As PCSTR, size As SIZE_T) As Long
|
---|
1165 | Dim i = 0 As SIZE_T
|
---|
1166 | For i = 0 To ELM(size)
|
---|
1167 | _System_StrCmpN = s1[i] - s2[i]
|
---|
1168 | If _System_StrCmpN <> 0 Then
|
---|
1169 | Exit Function
|
---|
1170 | End If
|
---|
1171 | Next
|
---|
1172 | End Function
|
---|
1173 |
|
---|
1174 | Function _System_StrCmpN(s1 As PCWSTR, s2 As PCWSTR, size As SIZE_T) As Long
|
---|
1175 | Dim i = 0 As SIZE_T
|
---|
1176 | For i = 0 To ELM(size)
|
---|
1177 | _System_StrCmpN = s1[i] - s2[i]
|
---|
1178 | If _System_StrCmpN <> 0 Then
|
---|
1179 | Exit Function
|
---|
1180 | End If
|
---|
1181 | Next
|
---|
1182 | End Function
|
---|
1183 |
|
---|
1184 | Function _System_MemChr(s As PCSTR, c As CHAR, size As SIZE_T) As PCSTR
|
---|
1185 | Dim i As SIZE_T
|
---|
1186 | For i = 0 To ELM(size)
|
---|
1187 | If s[i] = c Then
|
---|
1188 | Return VarPtr(s[i])
|
---|
1189 | End If
|
---|
1190 | Next
|
---|
1191 | Return 0
|
---|
1192 | End Function
|
---|
1193 |
|
---|
1194 | Function _System_MemChr(s As PCWSTR, c As WCHAR, size As SIZE_T) As PCWSTR
|
---|
1195 | Dim i As SIZE_T
|
---|
1196 | For i = 0 To ELM(size)
|
---|
1197 | If s[i] = c Then
|
---|
1198 | Return VarPtr(s[i])
|
---|
1199 | End If
|
---|
1200 | Next
|
---|
1201 | Return 0
|
---|
1202 | End Function
|
---|
1203 |
|
---|
1204 | Function _System_MemPBrk(str As PCSTR, cStr As SIZE_T, Chars As PCSTR, cChars As SIZE_T) As PCSTR
|
---|
1205 | Dim i As SIZE_T
|
---|
1206 | For i = 0 To ELM(cStr)
|
---|
1207 | If _System_MemChr(Chars, str[i], cChars) Then
|
---|
1208 | Return VarPtr(str[i])
|
---|
1209 | End If
|
---|
1210 | Next
|
---|
1211 | Return 0
|
---|
1212 | End Function
|
---|
1213 |
|
---|
1214 | Function _System_MemPBrk(str As PCWSTR, cStr As SIZE_T, Chars As PCWSTR, cChars As SIZE_T) As PCWSTR
|
---|
1215 | Dim i As SIZE_T
|
---|
1216 | For i = 0 To ELM(cStr)
|
---|
1217 | If _System_MemChr(Chars, str[i], cChars) Then
|
---|
1218 | Return VarPtr(str[i])
|
---|
1219 | End If
|
---|
1220 | Next
|
---|
1221 | Return 0
|
---|
1222 | End Function
|
---|
1223 |
|
---|
1224 | Function _System_GetHashFromWordArray(p As *Word, n As SIZE_T) As Long
|
---|
1225 | Dim hash = 0 As DWord
|
---|
1226 | Dim i As Long
|
---|
1227 | For i = 0 To ELM(n)
|
---|
1228 | hash = ((hash << 16) + p[i]) Mod &h7fffffff
|
---|
1229 | Next
|
---|
1230 | _System_GetHashFromWordArray = hash As Long
|
---|
1231 | End Function
|
---|
1232 |
|
---|
1233 | Namespace ActiveBasic
|
---|
1234 | Namespace Windows
|
---|
1235 | Function GetPathFromIDList(pidl As LPITEMIDLIST) As String
|
---|
1236 | Dim buf[ELM(MAX_PATH)] As TCHAR
|
---|
1237 | If SHGetPathFromIDList(pidl, buf) Then
|
---|
1238 | Return New String(buf)
|
---|
1239 | Else
|
---|
1240 | Return ""
|
---|
1241 | End If
|
---|
1242 | End Function
|
---|
1243 |
|
---|
1244 | Function GetFolderPath(hwnd As HWND, folder As Long) As String
|
---|
1245 | Dim pidl As LPITEMIDLIST
|
---|
1246 | Dim hr = SHGetSpecialFolderLocation(hwnd, folder, pidl)
|
---|
1247 | If SUCCEEDED(hr) Then
|
---|
1248 | GetFolderPath = GetPathFromIDList(pidl)
|
---|
1249 | CoTaskMemFree(pidl)
|
---|
1250 | Else
|
---|
1251 | GetFolderPath = ""
|
---|
1252 | End If
|
---|
1253 | End Function
|
---|
1254 |
|
---|
1255 | Function GetFolderPath(folder As Long) As String
|
---|
1256 | Return GetFolderPath(0, folder)
|
---|
1257 | End Function
|
---|
1258 | End Namespace
|
---|
1259 | End Namespace
|
---|
1260 |
|
---|
1261 | #endif '_INC_FUNCTION
|
---|