-
Notifications
You must be signed in to change notification settings - Fork 3
/
ChangeLog
3135 lines (2376 loc) · 96.6 KB
/
ChangeLog
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
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Commit: 624
Author: Sam Hocevar <[email protected]>
Date: Mon May 9 11:29:30 2011 +0000
doc: fix icons install location.
doc/Makefile.am | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
Commit: 623
Author: Sam Hocevar <[email protected]>
Date: Mon May 9 01:19:59 2011 +0000
build: fix a problem with `--with-assetdir` and make sure the flag
name does not have an `s'.
PACKAGERS | 4 ++--
configure.ac | 12 ++++++------
data/Makefile.am | 10 +++++-----
src/sdlport/Makefile.am | 2 +-
src/sdlport/setup.cpp | 4 ++--
5 files changed, 16 insertions(+), 16 deletions(-)
Commit: 622
Author: Sam Hocevar <[email protected]>
Date: Mon May 9 01:19:55 2011 +0000
doc: add Antti to the list of packagers, and add a warning message when
building a full tarball.
Makefile.am | 7 ++++---
PACKAGERS | 1 +
2 files changed, 5 insertions(+), 3 deletions(-)
Commit: 621
Author: Sam Hocevar <[email protected]>
Date: Mon May 9 01:19:51 2011 +0000
doc: update changelog and various documentation files.
ChangeLog | 4652 ++++++++++++++++++++++++++++++++++++++++---------------------
NEWS | 9 +
README | 76 +-
3 files changed, 3139 insertions(+), 1598 deletions(-)
Commit: 619
Author: Sam Hocevar <[email protected]>
Date: Sun May 8 23:35:56 2011 +0000
game: allow to load and save 15 games instead of 5.
data/art/icons.spe | Bin 178505 -> 201845 bytes
src/loadgame.cpp | 2 +-
2 files changed, 1 insertions(+), 1 deletions(-)
Commit: 618
Author: Sam Hocevar <[email protected]>
Date: Sun May 8 22:55:31 2011 +0000
doc: update the AUTHORS file.
AUTHORS | 34 ++++++++++++++++++++++------------
1 files changed, 22 insertions(+), 12 deletions(-)
Commit: 617
Author: Sam Hocevar <[email protected]>
Date: Sun May 8 22:55:27 2011 +0000
music: open audio device with a better output quality. Even if our
sound samples are still only 8-bit, the MIDI music will benefit from it.
src/sdlport/sound.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Commit: 616
Author: Sam Hocevar <[email protected]>
Date: Sun May 8 22:55:23 2011 +0000
music: make the HMI decoder closer to the global coding style.
src/sdlport/hmi.cpp | 174 +++++++++++++++++++++++++------------------------
src/sdlport/hmi.h | 13 ++++-
src/sdlport/sound.cpp | 2 +-
3 files changed, 102 insertions(+), 87 deletions(-)
Commit: 615
Author: Sam Hocevar <[email protected]>
Date: Sun May 8 22:55:18 2011 +0000
tool: fix a crash in abuse-tool.
TODO | 2 --
src/tool/abuse-tool.cpp | 6 +++---
2 files changed, 3 insertions(+), 5 deletions(-)
Commit: 614
Author: Sam Hocevar <[email protected]>
Date: Sun May 8 22:55:14 2011 +0000
build: add a `--with-assetsdir' configure flag to specify where the
game data should be installed.
PACKAGERS | 11 ++++++++---
configure.ac | 47 ++++++++++++++++++++++++++---------------------
data/Makefile.am | 12 +++++-------
src/sdlport/Makefile.am | 7 ++++---
src/sdlport/setup.cpp | 8 ++------
5 files changed, 45 insertions(+), 40 deletions(-)
Commit: 613
Author: Sam Hocevar <[email protected]>
Date: Sun May 8 21:00:39 2011 +0000
src: remove some unused files and document the remaining few we still have.
TODO | 35 ++-
src/imlib/glview.cpp | 74 ----
src/letters.cpp | 1107 --------------------------------------------------
src/parse.cpp | 168 --------
src/parse.h | 28 --
src/scene.cpp | 716 --------------------------------
src/scene.h | 18 -
src/sdlport/jnet.cpp | 57 ---
src/sdlport/jnet.h | 66 ---
src/status.cpp | 81 ----
src/tester.cpp | 42 --
11 files changed, 27 insertions(+), 2365 deletions(-)
Commit: 612
Author: Sam Hocevar <[email protected]>
Date: Sun May 8 21:00:33 2011 +0000
doc: move icons to the doc/ subdirectory.
Makefile.am | 5 +----
abuse.bmp | Bin 4218 -> 0 bytes
abuse.png | Bin 768 -> 0 bytes
doc/Makefile.am | 5 +++++
doc/abuse.bmp | Bin 0 -> 4218 bytes
doc/abuse.png | Bin 0 -> 768 bytes
6 files changed, 6 insertions(+), 4 deletions(-)
Commit: 611
Author: Sam Hocevar <[email protected]>
Date: Sun May 8 15:33:00 2011 +0000
doc: add more detailed copying information.
COPYING | 354 ++++-----------------------------------------------------
COPYING.GPL | 340 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
COPYING.WTFPL | 14 +++
Makefile.am | 2 +-
4 files changed, 375 insertions(+), 335 deletions(-)
Commit: 610
Author: Sam Hocevar <[email protected]>
Date: Sun May 8 15:32:56 2011 +0000
doc: put manual pages in the doc/ directory.
.gitignore | 4 +-
Makefile.am | 4 +-
abuse-tool.6.in | 56 --------------------
abuse.6.in | 145 ---------------------------------------------------
configure.ac | 7 ++-
doc/Makefile.am | 3 +
doc/abuse-tool.6.in | 56 ++++++++++++++++++++
doc/abuse.6.in | 145 +++++++++++++++++++++++++++++++++++++++++++++++++++
8 files changed, 211 insertions(+), 209 deletions(-)
Commit: 609
Author: Sam Hocevar <[email protected]>
Date: Sun May 8 15:32:52 2011 +0000
build: allow to specify --disable-nonfree to avoid installing non-free data
and build stripped down tarballs.
INSTALL | 29 ++++++++++++-----------------
Makefile.am | 12 +++++++++++-
PACKAGERS | 24 ++++++++++++++++++++++++
configure.ac | 13 +++++++++++++
data/Makefile.am | 31 ++++++++++++++++++-------------
5 files changed, 78 insertions(+), 31 deletions(-)
Commit: 608
Author: Sam Hocevar <[email protected]>
Date: Sun May 8 15:32:49 2011 +0000
build: set package version to 0.8.
configure.ac | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Commit: 607
Author: Sam Hocevar <[email protected]>
Date: Sun May 8 15:32:45 2011 +0000
build: install data in properly named subdirectories.
data/Makefile.am | 16 ++++++++++++++++
1 files changed, 16 insertions(+), 0 deletions(-)
Commit: 606
Author: Sam Hocevar <[email protected]>
Date: Sun May 8 15:32:41 2011 +0000
build: ensure that `make dist' distributes all data files.
Makefile.am | 2 +-
configure.ac | 3 +-
data/Makefile.am | 269 ++++++++++++++++++++++++++++++++++++++++
data/addon/aliens/aliens.al2 | 11 --
data/addon/aliens/aliens.txt | 11 ++
data/addon/leon/leon.bat | 3 -
data/addon/leon/leon.txt | 2 +
data/addon/pong/pong.bat | 3 -
data/addon/pong/pong.txt | 11 ++-
data/addon/pong/pongedit.bat | 3 -
data/addon/twist/readme.txt | 82 +++++++------
data/addon/twist/twist.bat | 3 -
data/addon/twist/twistedit.bat | 3 -
data/addon/twist/twistlev.bat | 3 -
data/levels/mac/mvscr | 22 ----
gamma.lsp | 1 -
16 files changed, 340 insertions(+), 92 deletions(-)
Commit: 605
Author: Sam Hocevar <[email protected]>
Date: Sun May 8 15:32:32 2011 +0000
build: fix errors in the makefiles that prevent `make dist' from working.
src/Makefile.am | 4 +-
src/imlib/Makefile.am | 2 +-
src/imlib/visobj.cpp | 92 -------------------------------------------------
src/imlib/visobj.h | 40 ++++-----------------
4 files changed, 10 insertions(+), 128 deletions(-)
Commit: 604
Author: Sam Hocevar <[email protected]>
Date: Sun May 8 15:32:28 2011 +0000
doc: write a manual page for abuse-tool.
.gitignore | 1 +
Makefile.am | 4 +-
abuse-tool.6.in | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
abuse.6.in | 13 +++++++----
configure.ac | 1 +
5 files changed, 68 insertions(+), 7 deletions(-)
Commit: 603
Author: Sam Hocevar <[email protected]>
Date: Sun May 8 15:32:24 2011 +0000
game: refactor the framerate logic so that it predicts framerate based
on time averages rather than frames per second averages.
src/game.cpp | 24 ++++++++++++------------
1 files changed, 12 insertions(+), 12 deletions(-)
Commit: 602
Author: Sam Hocevar <[email protected]>
Date: Sun May 8 10:39:14 2011 +0000
data: put fRaBs level in the main directory.
[...]
55 files changed, 0 insertions(+), 0 deletions(-)
Commit: 601
Author: Sam Hocevar <[email protected]>
Date: Sun May 8 10:29:51 2011 +0000
build: minor cleanup in the root directory.
Makefile.am | 5 ++-
abuse.bmp | Bin 3126 -> 4218 bytes
abuse.lsp | 62 --------------------------------------------------------
abuse.png | Bin 642 -> 768 bytes
data/abuse.lsp | 2 +-
5 files changed, 4 insertions(+), 65 deletions(-)
Commit: 600
Author: Sam Hocevar <[email protected]>
Date: Sun May 8 10:22:22 2011 +0000
build: add svn:ignore property for abuse-tool.
Commit: 599
Author: Sam Hocevar <[email protected]>
Date: Sun May 8 10:18:35 2011 +0000
data: remove empty directories from the archive.
Commit: 598
Author: Sam Hocevar <[email protected]>
Date: Sun May 8 10:13:33 2011 +0000
data: merge all Mac Abuse files into the main assets.
data-mac/art/back/backgrnd.spe | Bin 35418 -> 0 bytes
data-mac/art/dev.spe | Bin 13481 -> 0 bytes
data-mac/art/endgame.spe | Bin 933739 -> 0 bytes
data-mac/art/fonts.spe | Bin 78231 -> 0 bytes
data-mac/art/frame.spe | Bin 957914 -> 0 bytes
data-mac/art/help.spe | Bin 564104 -> 0 bytes
data-mac/art/icons.spe | Bin 127465 -> 0 bytes
data-mac/art/smoke.spe | Bin 346549 -> 0 bytes
data-mac/art/title.spe | Bin 356357 -> 0 bytes
data/art/back/backgrnd.spe | Bin 35418 -> 69013 bytes
data/art/dev.spe | Bin 13395 -> 13601 bytes
data/art/fonts.spe | Bin 54910 -> 101562 bytes
data/art/fore/endgame.spe | Bin 268139 -> 1138621 bytes
data/art/frame.spe | Bin 107365 -> 1059581 bytes
data/art/help.spe | Bin 320904 -> 384931 bytes
data/art/icons.spe | Bin 75071 -> 178505 bytes
data/art/smoke.spe | Bin 74564 -> 420350 bytes
data/art/title.spe | Bin 539291 -> 831630 bytes
18 files changed, 0 insertions(+), 0 deletions(-)
Commit: 597
Author: Sam Hocevar <[email protected]>
Date: Sun May 8 10:13:21 2011 +0000
data: move level files around.
[...]
116 files changed, 22 insertions(+), 22 deletions(-)
Commit: 596
Author: Sam Hocevar <[email protected]>
Date: Sun May 8 10:13:16 2011 +0000
data: merge the last fRaBs and Mac addons into the main data directory.
[...]
44 files changed, 281 insertions(+), 379 deletions(-)
Commit: 595
Author: Sam Hocevar <[email protected]>
Date: Sun May 8 10:13:12 2011 +0000
data: remove old Mac binaries.
data-mac/Abuse 1.01 | Bin 682439 -> 0 bytes
1 files changed, 0 insertions(+), 0 deletions(-)
Commit: 594
Author: Sam Hocevar <[email protected]>
Date: Sun May 8 10:13:08 2011 +0000
data: merge abuse.lsp from all Abuse versions.
data-frabs/abuse.lsp | 63 --------------------
data-mac/abuse.lsp | 48 ---------------
data/abuse.lsp | 31 ++++++++--
data/addon/twist/lisp/dray.lsp | 11 +---
data/addon/twist/lisp/input.lsp | 123 ---------------------------------------
data/addon/twist/twist.lsp | 3 +-
data/lisp/input.lsp | 86 +++++++++++++++++++++++++--
7 files changed, 108 insertions(+), 257 deletions(-)
Commit: 593
Author: Sam Hocevar <[email protected]>
Date: Sat May 7 16:40:05 2011 +0000
data: remove exact duplicates in the Mac Abuse art and level files.
[...]
82 files changed, 0 insertions(+), 256 deletions(-)
Commit: 592
Author: Sam Hocevar <[email protected]>
Date: Sat May 7 16:39:59 2011 +0000
doc: move Frabs documentation to doc/.
[...]
134 files changed, 6269 insertions(+), 6269 deletions(-)
Commit: 591
Author: Sam Hocevar <[email protected]>
Date: Sat May 7 16:39:49 2011 +0000
doc: add screenshots of the main maps.
[...]
59 files changed, 0 insertions(+), 0 deletions(-)
Commit: 590
Author: Sam Hocevar <[email protected]>
Date: Sat May 7 15:12:10 2011 +0000
data: merge registered data into the main data directory.
[...]
43 files changed, 469 insertions(+), 819 deletions(-)
Commit: 589
Author: Sam Hocevar <[email protected]>
Date: Sat May 7 14:06:03 2011 +0000
data: remove exact duplicate Lisp files, merge all main space Lisp files,
and move most frabs addons to the main data directory.
[...]
440 files changed, 11054 insertions(+), 25281 deletions(-)
Commit: 588
Author: Sam Hocevar <[email protected]>
Date: Sat May 7 14:05:55 2011 +0000
data: move original Abuse files to our main data directory and move
the Bong addon for Abuse Mac in there, too.
[...]
137 files changed, 7320 insertions(+), 7335 deletions(-)
Commit: 587
Author: Sam Hocevar <[email protected]>
Date: Sat May 7 14:05:50 2011 +0000
data: remove the analyser script; its job is finished.
data/analyze.py | 79 -------------------------------------------------------
1 files changed, 0 insertions(+), 79 deletions(-)
Commit: 586
Author: Sam Hocevar <[email protected]>
Date: Fri May 6 17:55:05 2011 +0000
data: create an analyzer script to compare level files.
data/analyze.py | 79 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 79 insertions(+), 0 deletions(-)
Commit: 585
Author: Sam Hocevar <[email protected]>
Date: Fri May 6 17:47:13 2011 +0000
tool: compute and display SPEC item CRCs.
src/Makefile.am | 3 +-
src/crc.cpp | 18 +++++++--------
src/crc.h | 5 ++-
src/tool/abuse-tool.cpp | 53 +++++++++++++++++++++++++++++++++++++++++-----
4 files changed, 60 insertions(+), 19 deletions(-)
Commit: 584
Author: Sam Hocevar <[email protected]>
Date: Thu May 5 22:47:36 2011 +0000
doc: update the TODO list.
TODO | 14 ++++++++++++++
1 files changed, 14 insertions(+), 0 deletions(-)
Commit: 583
Author: Sam Hocevar <[email protected]>
Date: Thu May 5 22:47:28 2011 +0000
data: merge the old Abuse and the Frabs artwork, and a little bit of
the Mac Abuse artwork.
[...]
261 files changed, 263 insertions(+), 537 deletions(-)
Commit: 582
Author: Sam Hocevar <[email protected]>
Date: Thu May 5 22:47:14 2011 +0000
data: remove \r and trailing spaces and tabs from all Lisp sources.
[...]
146 files changed, 2509 insertions(+), 2512 deletions(-)
Commit: 581
Author: Sam Hocevar <[email protected]>
Date: Thu May 5 19:35:12 2011 +0000
data: put all old data in the abuse directory, where the final merging
will take place.
[...]
733 files changed, 40393 insertions(+), 0 deletions(-)
Commit: 579
Author: Sam Hocevar <[email protected]>
Date: Thu May 5 10:36:33 2011 +0000
imlib: refactor the Filter and ColorFilter classes.
[...]
23 files changed, 195 insertions(+), 249 deletions(-)
Commit: 578
Author: Sam Hocevar <[email protected]>
Date: Tue May 3 22:43:26 2011 +0000
game: make the title text scroll both slower and longer.
src/game.cpp | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
Commit: 577
Author: Sam Hocevar <[email protected]>
Date: Tue May 3 13:02:52 2011 +0000
game: get rid of milli_wait() and rewrite the fixed framerate handling.
src/ant.cpp | 4 +-
src/cop.cpp | 2 +-
src/demo.cpp | 2 +-
src/game.cpp | 127 +++++++++++++++++++----------------------------
src/imlib/timing.h | 4 --
src/menu.cpp | 4 +-
src/netcfg.cpp | 6 ++-
src/sdlport/event.cpp | 5 ++-
src/sdlport/timing.cpp | 16 ------
9 files changed, 65 insertions(+), 105 deletions(-)
Commit: 576
Author: Sam Hocevar <[email protected]>
Date: Mon May 2 12:28:20 2011 +0000
game: properly time the fade in and fade out effects, as well as the
introduction scrolling.
src/game.cpp | 56 ++++++++++++++++++++++++++++----------------------------
1 files changed, 28 insertions(+), 28 deletions(-)
Commit: 575
Author: Sam Hocevar <[email protected]>
Date: Mon May 2 11:41:49 2011 +0000
game: merge fade_in and fade_out into a single template.
src/game.cpp | 85 +++++++++++++++++++++++++--------------------------------
1 files changed, 37 insertions(+), 48 deletions(-)
Commit: 574
Author: Sam Hocevar <[email protected]>
Date: Mon May 2 11:41:41 2011 +0000
lol: add the cross-platform Timer class from Lol Engine.
src/Makefile.am | 1 +
src/common.h | 3 +
src/lol/timer.cpp | 162 +++++++++++++++++++++++++++++++++++++++++++++++++++++
src/lol/timer.h | 41 +++++++++++++
4 files changed, 207 insertions(+), 0 deletions(-)
Commit: 573
Author: Sam Hocevar <[email protected]>
Date: Sun May 1 23:21:32 2011 +0000
data: empty abuse-lib and abuse-sfx and add a README note to warn
about they deprecation.
data/icon.ico | Bin 0 -> 766 bytes
1 files changed, 0 insertions(+), 0 deletions(-)
Commit: 572
Author: Sam Hocevar <[email protected]>
Date: Sun May 1 23:14:41 2011 +0000
data: import music files from abuse-data, and remove the ones from
abuse-frabs, they're incomplete.
data/music/abuse00.hmi | Bin 0 -> 6173 bytes
data/music/abuse01.hmi | Bin 0 -> 8136 bytes
data/music/abuse02.hmi | Bin 0 -> 14553 bytes
data/music/abuse03.hmi | Bin 0 -> 8136 bytes
data/music/abuse04.hmi | Bin 0 -> 10550 bytes
data/music/abuse06.hmi | Bin 0 -> 20577 bytes
data/music/abuse08.hmi | Bin 0 -> 32889 bytes
data/music/abuse09.hmi | Bin 0 -> 8684 bytes
data/music/abuse11.hmi | Bin 0 -> 9684 bytes
data/music/abuse13.hmi | Bin 0 -> 9036 bytes
data/music/abuse15.hmi | Bin 0 -> 11490 bytes
data/music/abuse17.hmi | Bin 0 -> 10628 bytes
data/music/intro.hmi | Bin 0 -> 33255 bytes
data/music/playhmp.lsp | 3 +++
data/music/victory.hmi | Bin 0 -> 11490 bytes
15 files changed, 3 insertions(+), 0 deletions(-)
Commit: 570
Author: Sam Hocevar <[email protected]>
Date: Sun May 1 23:04:56 2011 +0000
data: import `netlevel' from both abuse-data and abuse-frabs, giving us
two sets of multiplayer levels.
[...]
32 files changed, 0 insertions(+), 0 deletions(-)
Commit: 569
Author: Sam Hocevar <[email protected]>
Date: Sun May 1 22:56:38 2011 +0000
data: import `register' directory from abuse-data. It's exactly the
same in all other datasets.
data/register/alien.spe | Bin 0 -> 36528 bytes
data/register/alienb.spe | Bin 0 -> 55429 bytes
data/register/ant.lsp | 138 +++++++++++++++++++++++++++++++++++++++++++++
data/register/boss.spe | Bin 0 -> 11822 bytes
data/register/english.lsp | 1 +
data/register/flyer.lsp | 58 +++++++++++++++++++
data/register/galien.spe | Bin 0 -> 39040 bytes
data/register/green2.spe | Bin 0 -> 126448 bytes
data/register/micron.vcd | Bin 0 -> 75 bytes
data/register/people.lsp | 8 +++
data/register/powerup.lsp | 53 +++++++++++++++++
data/register/tiles.lsp | 40 +++++++++++++
data/register/trees.spe | Bin 0 -> 51410 bytes
data/register/trees2.spe | Bin 0 -> 17579 bytes
data/register/weapons.lsp | 128 +++++++++++++++++++++++++++++++++++++++++
15 files changed, 426 insertions(+), 0 deletions(-)
Commit: 568
Author: Sam Hocevar <[email protected]>
Date: Sun May 1 22:54:17 2011 +0000
data: import SFX directory from abuse-mac, and get rid of it in all the
other datasets we have. They are all the same anyway, except the Mac
version has a voice/ subdirectory.
[...]
98 files changed, 0 insertions(+), 0 deletions(-)
Commit: 567
Author: Sam Hocevar <[email protected]>
Date: Sun May 1 22:49:58 2011 +0000
imlib: add explicit enum values for easier source code reading.
src/imlib/specs.h | 46 +++++++++++++++++++++++-----------------------
1 files changed, 23 insertions(+), 23 deletions(-)
Commit: 565
Author: Sam Hocevar <[email protected]>
Date: Sat Apr 30 23:12:21 2011 +0000
core: add more argument types to Min() and Max().
src/common.h | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
Commit: 564
Author: Sam Hocevar <[email protected]>
Date: Sat Apr 30 23:12:15 2011 +0000
tool: fix an off-by-one error in the `put' and `putpcx' commands.
src/tool/abuse-tool.cpp | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Commit: 563
Author: Sam Hocevar <[email protected]>
Date: Fri Apr 29 22:49:15 2011 +0000
lisp: minor refactoring.
src/lisp/lisp.cpp | 42 ++++++++++++------------------------------
1 files changed, 12 insertions(+), 30 deletions(-)
Commit: 562
Author: Sam Hocevar <[email protected]>
Date: Fri Apr 29 22:24:59 2011 +0000
music: fix incorrect music volume set upon restart.
src/game.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Commit: 561
Author: Sam Hocevar <[email protected]>
Date: Fri Apr 29 22:24:57 2011 +0000
lisp: fix a memory leak in the grow stack objets and refactor the class.
src/game.cpp | 4 ---
src/lisp/lisp.cpp | 38 ++++++++++++++++++----------------
src/lisp/lisp_gc.cpp | 17 ++++++---------
src/lisp/lisp_gc.h | 4 +-
src/lisp/stack.h | 54 +++++++++++++++++++++++++-------------------------
5 files changed, 56 insertions(+), 61 deletions(-)
Commit: 560
Author: Sam Hocevar <[email protected]>
Date: Fri Apr 29 22:24:53 2011 +0000
lisp: remove arguments to lisp_init(), they are no longer useful now
that we can dynamically resize everything.
src/game.cpp | 4 ++--
src/lisp/lisp.cpp | 37 ++++++++++++++++++-------------------
src/lisp/lisp.h | 2 +-
3 files changed, 21 insertions(+), 22 deletions(-)
Commit: 559
Author: Sam Hocevar <[email protected]>
Date: Fri Apr 29 22:24:51 2011 +0000
lisp: remove space resizing methods, they're useless now that automatic
grow works.
src/lisp/lisp.cpp | 36 ++----------------------------------
src/loader2.cpp | 1 -
2 files changed, 2 insertions(+), 35 deletions(-)
Commit: 558
Author: Sam Hocevar <[email protected]>
Date: Fri Apr 29 22:24:47 2011 +0000
lisp: some refactoring and code removal in the Lisp GC.
src/lisp/lisp.cpp | 8 ++--
src/lisp/lisp_gc.cpp | 135 +++++++++++++++++++------------------------------
src/lisp/lisp_gc.h | 24 ++++++---
3 files changed, 73 insertions(+), 94 deletions(-)
Commit: 557
Author: Sam Hocevar <[email protected]>
Date: Fri Apr 29 22:24:44 2011 +0000
lisp: fix a crash in the garbage collection of cons_cells lying outside
of main space.
src/lisp/lisp_gc.cpp | 155 ++++++++++++++++++++++++++------------------------
1 files changed, 80 insertions(+), 75 deletions(-)
Commit: 556
Author: Sam Hocevar <[email protected]>
Date: Fri Apr 29 22:24:41 2011 +0000
build: fix a spurious newline in configure.ac.
configure.ac | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Commit: 555
Author: Sam Hocevar <[email protected]>
Date: Fri Apr 29 19:18:23 2011 +0000
ps3: make everything compile on the PS3. Of course, nothing links yet
because so much support is missing.
[...]
209 files changed, 874 insertions(+), 600 deletions(-)
Commit: 554
Author: Sam Hocevar <[email protected]>
Date: Thu Apr 28 23:39:32 2011 +0000
lisp: if the Lisp permanent space grows out of memory, grow the space
during GCs instead of dying.
src/game.cpp | 2 +-
src/lisp/lisp.cpp | 7 +++++--
src/lisp/lisp_gc.cpp | 8 +++++++-
src/lisp/lisp_gc.h | 2 +-
4 files changed, 14 insertions(+), 5 deletions(-)
Commit: 553
Author: Sam Hocevar <[email protected]>
Date: Thu Apr 28 23:39:28 2011 +0000
lisp: remove old debug code.
src/lisp/lisp_gc.cpp | 23 +----------------------
1 files changed, 1 insertions(+), 22 deletions(-)
Commit: 552
Author: Sam Hocevar <[email protected]>
Date: Thu Apr 28 23:15:09 2011 +0000
sdlport: use SDL_Mixer to read samples, and get rid of imlib's readwav.
src/imlib/Makefile.am | 1 -
src/imlib/readwav.cpp | 122 -------------------------------------------------
src/imlib/readwav.h | 18 -------
src/sdlport/sound.cpp | 91 +++++++++++++++---------------------
src/sdlport/sound.h | 9 ++--
5 files changed, 42 insertions(+), 199 deletions(-)
Commit: 551
Author: Sam Hocevar <[email protected]>
Date: Thu Apr 28 23:15:05 2011 +0000
sdlport: make SDL_mixer mandatory. I'm not going to maintain legacy code
that cannot even play music.
configure.ac | 8 +-
src/sdlport/sound.cpp | 216 ++-----------------------------------------------
src/sdlport/sound.h | 8 +--
3 files changed, 13 insertions(+), 219 deletions(-)
Commit: 550
Author: Sam Hocevar <[email protected]>
Date: Thu Apr 28 22:24:47 2011 +0000
tool: implement the `type', `put' and `putpcx' commands.
src/tool/abuse-tool.cpp | 98 ++++++++++++++++++++++++++++++++++++++++++-----
1 files changed, 88 insertions(+), 10 deletions(-)
Commit: 549
Author: Sam Hocevar <[email protected]>
Date: Thu Apr 28 22:24:43 2011 +0000
imlib: bring back the old PCX reading code.
src/imlib/pcxread.cpp | 97 +++++++++++++++++++++++++++++++++++++++++++++++++
src/imlib/pcxread.h | 1 +
2 files changed, 98 insertions(+), 0 deletions(-)
Commit: 548
Author: Sam Hocevar <[email protected]>
Date: Thu Apr 28 22:24:38 2011 +0000
tool: implement the `rename' and `del' commands.
src/imlib/specs.cpp | 5 +--
src/tool/abuse-tool.cpp | 58 +++++++++++++++++++++++++++++++++++++---------
2 files changed, 48 insertions(+), 15 deletions(-)
Commit: 547
Author: Sam Hocevar <[email protected]>
Date: Wed Apr 27 23:56:27 2011 +0000
tool: implement the "getpcx" and "move" commands.
src/tool/abuse-tool.cpp | 57 +++++++++++++++++++++++++++++++++++++++++++++-
1 files changed, 55 insertions(+), 2 deletions(-)
Commit: 546
Author: Sam Hocevar <[email protected]>
Date: Wed Apr 27 23:56:23 2011 +0000
imlib: implement spec_directory::FullyLoad to force loading all
assets into memory.
src/imlib/specs.cpp | 59 +++++++++++++++++++++++++++++++++++++-------------
src/imlib/specs.h | 54 ++++++++++++++++++++++------------------------
2 files changed, 69 insertions(+), 44 deletions(-)
Commit: 545
Author: Sam Hocevar <[email protected]>
Date: Wed Apr 27 23:07:43 2011 +0000
core: fix a few security issues caused by unchecked string operations,
reported in ticket #25.
src/dev.cpp | 3 ++-
src/innet.cpp | 5 ++++-
src/loader2.cpp | 10 +++++-----
3 files changed, 11 insertions(+), 7 deletions(-)
Commit: 544
Author: Sam Hocevar <[email protected]>
Date: Wed Apr 27 23:07:39 2011 +0000
imlib: get rid of fast path loading, it was no longer used. We also
delete the old cache file we put in the user's directory.
src/game.cpp | 17 +++------
src/imlib/specs.cpp | 87 ++------------------------------------------------
2 files changed, 10 insertions(+), 94 deletions(-)
Commit: 543
Author: Sam Hocevar <[email protected]>
Date: Sun Apr 24 08:33:50 2011 +0000
tool: implement `get' in abuse-tool.
src/tool/abuse-tool.cpp | 121 +++++++++++++++++++++++++++++++++++++++++-----
1 files changed, 107 insertions(+), 14 deletions(-)
Commit: 542
Author: Sam Hocevar <[email protected]>
Date: Sun Apr 24 08:33:45 2011 +0000
imlib: do not set the executable flag on files we create.
src/imlib/specs.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Commit: 541
Author: Sam Hocevar <[email protected]>
Date: Sun Apr 24 08:33:40 2011 +0000
imlib: rename TImage to TransImage for readability.
src/cache.h | 2 +-
src/game.cpp | 2 +-
src/game.h | 2 +-
src/go.cpp | 2 +-
src/imlib/Makefile.am | 2 +-
src/imlib/fonts.cpp | 2 +-
src/imlib/fonts.h | 4 +-
src/imlib/supmorph.cpp | 6 +-
src/imlib/supmorph.h | 4 +-
src/imlib/timage.cpp | 361 ----------------------------------------------
src/imlib/timage.h | 72 ---------
src/imlib/transimage.cpp | 361 ++++++++++++++++++++++++++++++++++++++++++++++
src/imlib/transimage.h | 72 +++++++++
src/items.cpp | 8 +-
src/items.h | 6 +-
src/morpher.cpp | 4 +-
src/objects.cpp | 14 +-
src/objects.h | 2 +-
src/scene.cpp | 1 -
src/seq.h | 5 +-
20 files changed, 466 insertions(+), 466 deletions(-)
Commit: 540
Author: Sam Hocevar <[email protected]>
Date: Sun Apr 24 08:33:34 2011 +0000
tool: get rid of the specfile additions and implement a general purpose
SPEC file edition tool.
.gitignore | 1 +
src/Makefile.am | 7 +++-
src/imlib/specs.cpp | 83 ----------------------------------------
src/imlib/specs.h | 2 -
src/sdlport/setup.cpp | 5 --
src/tool/abuse-tool.cpp | 97 +++++++++++++++++++++++++++++++++++++++++++++++
6 files changed, 104 insertions(+), 91 deletions(-)
Commit: 539
Author: Sam Hocevar <[email protected]>
Date: Fri Apr 22 22:48:59 2011 +0000
imlib: implement a small spec file dumper. "abuse -export foo.spe" will
extract the contents of the file and create PCX files from the images.
src/imlib/specs.cpp | 89 +++++++++++++++++++++++++++++++++++++++++++++--
src/imlib/specs.h | 91 ++++++++++++++++++++++++++++---------------------
src/sdlport/setup.cpp | 5 +++
3 files changed, 142 insertions(+), 43 deletions(-)
Commit: 538
Author: Sam Hocevar <[email protected]>
Date: Fri Apr 22 22:48:48 2011 +0000
game: add enough code to handle 15 save slots instead of 5. The artwork
is still missing, though.
src/loadgame.cpp | 49 +++++++++++++++++++++++++++++--------------------
1 files changed, 29 insertions(+), 20 deletions(-)
Commit: 537
Author: Sam Hocevar <[email protected]>
Date: Fri Apr 22 22:48:45 2011 +0000
build: try to autodetect SDL_Mixer upon build.
configure.ac | 14 ++++++++++----
1 files changed, 10 insertions(+), 4 deletions(-)
Commit: 536
Author: Sam Hocevar <[email protected]>
Date: Fri Apr 22 22:48:41 2011 +0000
sdlport: add some error reporting to the new SDL_Mixer features.
src/sdlport/sound.cpp | 51 ++++++++++++++++++++++++++++--------------------
1 files changed, 30 insertions(+), 21 deletions(-)
Commit: 535
Author: Sam Hocevar <[email protected]>
Date: Fri Apr 22 19:14:41 2011 +0000
imlib: fix an old bug in the linked list that used to cause a memory
leak because not all elements were destroyed, but now simply crashes.
src/imlib/linked.cpp | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
Commit: 534
Author: Sam Hocevar <[email protected]>
Date: Fri Apr 22 17:32:17 2011 +0000
imlib: remove a lot of dead code, especially from the linked list and
the WAV reader.
src/clisp.h | 3 +-
src/configuration.cpp | 4 -
src/imlib/convert.cpp | 52 ------------
src/imlib/image.cpp | 16 ++--
src/imlib/jwindow.h | 1 -
src/imlib/linked.cpp | 177 ++++++++++++-----------------------------
src/imlib/linked.h | 99 +++++++----------------
src/imlib/palette.cpp | 6 +-
src/imlib/readwav.cpp | 210 ++++++++++++++++++-------------------------------
src/imlib/readwav.h | 11 +--