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
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
|
/*
Copyright (C) 1997-2001 Id Software, Inc.
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
// Created on 09.12.2003 by RST.
// $Id: Lib.java,v 1.1 2004-07-07 19:59:52 hzi Exp $
package jake2.util;
import java.io.File;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.nio.ByteBuffer;
import java.text.BreakIterator;
import java.util.Arrays;
import java.util.StringTokenizer;
import java.util.Vector;
import jake2.*;
import jake2.client.*;
import jake2.game.*;
import jake2.qcommon.*;
import jake2.render.*;
import jake2.server.*;
public class Lib {
/*
=============
TempVector
This is just a convenience function
for making temporary vectors for function calls
=============
*/
public static float tv_vecs[][] = new float[8][3];
public static int tv_index;
public static float[] tv(float x, float y, float z) {
float[] v;
// use an array so that multiple tempvectors won't collide
// for a while
v = tv_vecs[tv_index];
tv_index = (tv_index++) & 7;
v[0] = x;
v[1] = y;
v[2] = z;
return v;
}
/*
=============
VectorToString
This is just a convenience function
for printing vectors
=============
*/
public static String vtos(float[] v) {
return (int) v[0] + " " + (int) v[1] + " " + (int) v[2];
}
public static String vtofs(float[] v) {
return v[0] + " " + v[1] + " " + v[2];
}
public static String vtofsbeaty(float[] v) {
return Com.sprintf("%8.2f %8.2f %8.2f", new Vargs().add(v[0]).add(v[1]).add(v[2]));
}
public static short rand() {
return (short) (Math.random() * 0x8000);
}
public static float crandom() {
return (float) (Math.random() - 0.5) * 2.0f;
}
public static float random() {
return (float) Math.random();
}
public static float crand() {
return (float) (Math.random() - 0.5) * 2.0f;
}
public static float frand() {
return (float) Math.random();
}
public static int strcmp(String in1, String in2) {
return in1.compareTo(in2);
}
public static int stricmp(String in1, String in2) {
return in1.compareToIgnoreCase(in2);
}
public static boolean strstr(String i1, String i2) {
return (i1.indexOf(i2) != -1);
}
public static int strncmp(String in1, String in2, int len) {
int i1 = Math.min(len, in1.length());
int i2 = Math.min(len, in2.length());
if (i1 < i2)
return -1;
if (i1 > i2)
return 1;
for (int n = 0; n < i1; n++) {
char c1 = in1.charAt(n);
char c2 = in2.charAt(n);
if (c1 < c2)
return -1;
if (c1 > c2)
return 1;
}
return 0;
}
public static float atof(String in) {
float res = 0;
try {
res = Float.parseFloat(in);
}
catch (Exception e) {
}
return res;
}
public static int Q_stricmp(String in1, String in2) {
return in1.compareToIgnoreCase(in2);
}
// =================================================================================
public static int atoi(String in) {
try {
return Integer.parseInt(in);
}
catch (Exception e) {
return 0;
}
}
public static float[] atov(String v) {
float[] res = { 0, 0, 0 };
int i1 = v.indexOf(" ");
int i2 = v.indexOf(" ", i1 + 1);
res[0] = atof(v.substring(0, i1));
res[1] = atof(v.substring(i1 + 1, i2));
res[2] = atof(v.substring(i2 + 1, v.length()));
return res;
}
public static int strlen(String in) {
return in.length();
}
public static int strlen(char in[]) {
for (int i = 0; i < in.length; i++)
if (in[i] == 0)
return i;
return in.length;
}
public static int strlen(byte in[]) {
for (int i = 0; i < in.length; i++)
if (in[i] == 0)
return i;
return in.length;
}
public static void strcat(String in, String i) {
in += i;
}
public static void strcpy(char dest[], char src[]) {
for (int i = 0; i < dest.length && i < src.length; i++)
if (src[i] == 0) {
dest[i] = 0;
return;
}
else
dest[i] = src[i];
}
public static void strcpy(byte dest[], byte src[]) {
for (int i = 0; i < dest.length && i < src.length; i++)
if (src[i] == 0) {
dest[i] = 0;
return;
}
else
dest[i] = src[i];
}
public static String readString(RandomAccessFile file, int len) throws IOException {
byte buf[] = new byte[len];
file.read(buf, 0, len);
return new String(buf, 0, strlen(buf));
}
public static String readString(ByteBuffer bb, int len) throws IOException {
byte buf[] = new byte[len];
bb.get(buf);
return new String(buf, 0, strlen(buf));
}
public static String hexdumpfile(ByteBuffer bb, int len) throws IOException {
ByteBuffer bb1 = bb.slice();
byte buf[] = new byte[len];
bb1.get(buf);
return hexDump(buf, len, false);
}
// dump data as hexstring
public static String hexDump(byte data1[], int len, boolean showAddress) {
StringBuffer result = new StringBuffer();
StringBuffer charfield = new StringBuffer();
int i = 0;
while (i < len) {
if ((i & 0xf) == 0) {
if (showAddress) {
String address = Integer.toHexString(i);
address = ("0000".substring(0, 4 - address.length()) + address).toUpperCase();
result.append(address + ": ");
}
}
int v = data1[i];
result.append(hex2(v));
result.append(" ");
charfield.append(readableChar(v));
i++;
// nach dem letzten, newline einfuegen
if ((i & 0xf) == 0) {
result.append(charfield);
result.append("\n");
charfield.setLength(0);
}
// in der Mitte ein Luecke einfuegen ?
else if ((i & 0xf) == 8) {
result.append(" ");
}
}
return result.toString();
}
//formats an hex byte
public static String hex2(int i) {
String val = Integer.toHexString(i & 0xff);
return ("00".substring(0, 2 - val.length()) + val).toUpperCase();
}
public static char readableChar(int i) {
if ((i < 0x20) || (i > 0x7f))
return '.';
else
return (char) i;
}
public static void printv(String in, float arr[]) {
for (int n = 0; n < arr.length; n++) {
Com.Println(in + "[" + n + "]: " + arr[n]);
}
}
public static void memset(byte[] dest, byte c, int len) {
Arrays.fill(dest, 0, len, c);
}
public static void memset(byte[] dest, int c, int len) {
Arrays.fill(dest, 0, len, (byte) c);
}
public static void memcpy(byte[] bs, byte[] bs2, int i) {
System.arraycopy(bs2, 0, bs, 0, i);
}
static byte nullfiller[] = new byte[8192];
public static void fwriteString(String s, int len, RandomAccessFile f) throws IOException {
if (s == null)
return;
int diff = len - s.length();
if (diff > 0) {
f.write(s.getBytes());
f.write(nullfiller, 0, diff);
}
else
f.write(s.getBytes(), 0, len);
}
public static String cut(String in, char c) {
int pos = in.indexOf(c);
if (pos != -1)
return in.substring(0, pos);
return in;
}
public static RandomAccessFile fopen(String name, String mode) {
try {
return new RandomAccessFile(name, mode);
}
catch (Exception e) {
Com.DPrintf("Could not open file:" + name);
return null;
}
}
public static void fclose(RandomAccessFile f) {
try {
f.close();
}
catch (Exception e) {
}
}
public static String freadString(RandomAccessFile f, int len) {
byte buffer[] = new byte[len];
FS.Read(buffer, len, f);
return new String(buffer).trim();
}
public static String rightFrom(String in, char c) {
int pos = in.lastIndexOf(c);
if (pos == -1)
return "";
else if (pos < in.length())
return in.substring(pos + 1, in.length());
return "";
}
public static String leftFrom(String in, char c) {
int pos = in.lastIndexOf(c);
if (pos == -1)
return "";
else if (pos < in.length())
return in.substring(0, pos);
return "";
}
public static String[] linesplit(String in) {
StringTokenizer tk = new StringTokenizer(in, "\r\n");
int count = tk.countTokens();
if (count == 0)
return new String[] {
};
String result[] = new String[count];
for (int i = 0; tk.hasMoreTokens(); i++) {
result[i] = tk.nextToken();
}
return result;
}
public static void main(String[] args) {
System.out.println("testing Lib...");
String linetest = "line 1\r\n line zwo\nline drei\n\r line4\n.line5";
String line[] = linesplit(linetest);
for (int n = 0; n < line.length; n++) {
System.out.println("[" + line[n] + "]");
}
String v = "0.234 1.23423 7.23423";
int i1 = v.indexOf(" ");
int i2 = v.indexOf(" ", i1 + 1);
System.out.println("testing substring...");
System.out.println("[" + v.substring(0, i1) + "]");
System.out.println("[" + v.substring(i1 + 1, i2) + "]");
System.out.println("[" + v.substring(i2 + 1, v.length()) + "]");
System.out.println("rightfrom[" + rightFrom("abcdefg#hijklm", '#') + "]");
System.out.println("leftfrom[" + leftFrom("abcdefghijk#12", '#') + "]");
System.out.println("leftfrom[" + leftFrom("abcdefghi", '#') + "]");
}
public static int rename(String oldn, String newn) {
try {
File f1 = new File(oldn);
File f2 = new File(newn);
f1.renameTo(f2);
return 0;
}
catch (Exception e) {
return 1;
}
return 0;
}
public static byte[] getIntBytes(int c) {
byte b[] = new byte[4];
b[0] = (byte) ((c & 0xff));
b[1] = (byte) ((c >>> 8) & 0xff);
b[2] = (byte) ((c >>> 16) & 0xff);
b[3] = (byte) ((c >>> 24) & 0xff);
return b;
}
public static int getInt(byte b[]) {
return (b[0] & 0xff) | ((b[1] & 0xff) << 8) | ((b[2] & 0xff) << 16) | ((b[3] & 0xff) << 24);
}
public static void sleep(int sec) {
try {
Thread.sleep(sec * 1000);
}
catch (InterruptedException e) {
}
}
public static byte[] clone(byte in[]) {
byte out[] = new byte[in.length];
if (in.length != 0)
System.arraycopy(in, 0, out, 0, in.length);
return out;
}
public static float[] clone(float in[]) {
float out[] = new float[in.length];
if (in.length != 0)
System.arraycopy(in, 0, out, 0, in.length);
return out;
}
public static short[] clone(short in[]) {
short out[] = new short[in.length];
if (in.length != 0)
System.arraycopy(in, 0, out, 0, in.length);
return out;
}
public static long[] clone(long in[]) {
long out[] = new long[in.length];
if (in.length != 0)
System.arraycopy(in, 0, out, 0, in.length);
return out;
}
public static boolean[] clone(boolean in[]) {
boolean out[] = new boolean[in.length];
if (in.length != 0)
System.arraycopy(in, 0, out, 0, in.length);
return out;
}
public static int[] clone(int in[]) {
int out[] = new int[in.length];
if (in.length != 0)
System.arraycopy(in, 0, out, 0, in.length);
return out;
}
public static double[] clone(double in[]) {
double out[] = new double[in.length];
if (in.length != 0)
System.arraycopy(in, 0, out, 0, in.length);
return out;
}
// this works with Strings also.
public static String[] clone(String in[]) {
String out[] = new String[in.length];
if (in.length != 0)
System.arraycopy(in, 0, out, 0, in.length);
return out;
}
}
|