source: libcaca/branches/0.2/ChangeLog @ 3174

Last change on this file since 3174 was 243, checked in by Sam Hocevar, 20 years ago
  • 0.2 branch.
File size: 59.5 KB
Line 
1------------------------------------------------------------------------
2r139 | sam | 2003-11-30 18:15:31 +0100 (Sun, 30 Nov 2003) | 2 lines
3Changed paths:
4   M /trunk/ChangeLog
5   M /trunk/NEWS
6   M /trunk/TODO
7   M /trunk/debian/changelog
8   M /trunk/debian/control
9
10  * 0.2 release.
11
12------------------------------------------------------------------------
13r138 | sam | 2003-11-30 18:14:19 +0100 (Sun, 30 Nov 2003) | 3 lines
14Changed paths:
15   M /trunk/examples/view.c
16
17  * examples/view.c:
18    + Removed last endianness issue.
19
20------------------------------------------------------------------------
21r137 | sam | 2003-11-30 17:34:04 +0100 (Sun, 30 Nov 2003) | 5 lines
22Changed paths:
23   M /trunk/examples/view.c
24   M /trunk/src/bitmap.c
25   M /trunk/src/io.c
26
27  * src/io.c:
28    + Removed a useless message.
29  * src/bitmap.c examples/view.c:
30    + Really fixed the endianness issue.
31
32------------------------------------------------------------------------
33r136 | sam | 2003-11-30 16:56:02 +0100 (Sun, 30 Nov 2003) | 5 lines
34Changed paths:
35   M /trunk/src/bitmap.c
36
37  * src/bitmap.c:
38    + Fine-tuned the new renderer.
39    + Fixed warnings.
40    + Changed hardcoded values to macros.
41
42------------------------------------------------------------------------
43r135 | sam | 2003-11-30 16:01:55 +0100 (Sun, 30 Nov 2003) | 11 lines
44Changed paths:
45   M /trunk/configure.ac
46   M /trunk/examples/demo.c
47   M /trunk/examples/view.c
48   M /trunk/src/bitmap.c
49   M /trunk/src/caca.c
50   M /trunk/src/caca.h
51
52  * src/bitmap.c:
53    + Fixed an endianness issue in the byte reader.
54    + Decreased precision in RGB and HSV values to avoid overflows.
55    + New dithering method: 2x2 ordered.
56    + New renderer, with background colour awareness.
57  * configure.ac:
58    + Check for <endian.h>.
59  * examples/demo.c examples/view.c:
60    + Fixed an endianness issue in cacaview.
61    + Adapted code to the additional dithering method.
62
63------------------------------------------------------------------------
64r134 | sam | 2003-11-30 03:11:37 +0100 (Sun, 30 Nov 2003) | 4 lines
65Changed paths:
66   M /trunk/examples/view.c
67   M /trunk/src/bitmap.c
68
69  * src/bitmap.c examples/view.c:
70    + Fixed an endianness issue in caca_draw_bitmap().
71    + Code cleanup.
72
73------------------------------------------------------------------------
74r133 | sam | 2003-11-30 02:18:10 +0100 (Sun, 30 Nov 2003) | 13 lines
75Changed paths:
76   M /trunk/TODO
77   M /trunk/doc/cacaview.1
78   M /trunk/examples/Makefile.am
79   M /trunk/examples/view.c
80   M /trunk/src/caca.c
81
82  * src/caca.c:
83    + Minor change to the dithering names.
84  * TODO:
85    + Added cacaview TODO.
86  * doc/cacaview.1:
87    + Wrote a manpage for cacaview.
88  * examples/Makefile.am:
89    + Moved the -DX_DISPLAY_MISSING=1 here.
90  * examples/view.c:
91    + Capital 'D' cycles through dithering modes in reverse order.
92    + Sleep when there is nothing to do.
93    + Cosmetic code reorganisation.
94
95------------------------------------------------------------------------
96r132 | sam | 2003-11-29 20:35:07 +0100 (Sat, 29 Nov 2003) | 9 lines
97Changed paths:
98   M /trunk/examples/demo.c
99   M /trunk/examples/view.c
100   M /trunk/src/bitmap.c
101   M /trunk/src/caca.c
102   M /trunk/src/caca.h
103
104  * src/caca.c src/caca.h:
105    + Added caca_get_dithering_name().
106  * src/bitmap.c:
107    + Created a new dithering method with an 8x8 ordered matrix.
108    + Replaced the char list with a string for better readability.
109    + Dithering functions now return a value between 0 and 255.
110  * examples/demo.c examples/view.c:
111    + Adapted to use caca_get_dithering_name().
112
113------------------------------------------------------------------------
114r131 | sam | 2003-11-29 19:04:42 +0100 (Sat, 29 Nov 2003) | 3 lines
115Changed paths:
116   M /trunk/src/caca.c
117
118  * src/caca.c:
119    + Test whether ncurses knows xterm-16color before setting $TERM.
120
121------------------------------------------------------------------------
122r130 | sam | 2003-11-29 18:36:00 +0100 (Sat, 29 Nov 2003) | 6 lines
123Changed paths:
124   M /trunk/examples/view.c
125
126  * examples/view.c:
127    + Added top and bottom status lines, like in mutt and slrn.
128    + Added a status string when loading an image or upon error.
129    + Can load multiple files; use 'n' and 'p' for next and previous.
130    + Clip zoom between -48 and +48.
131
132------------------------------------------------------------------------
133r129 | sam | 2003-11-29 17:42:35 +0100 (Sat, 29 Nov 2003) | 2 lines
134Changed paths:
135   M /trunk/src/caca.c
136
137  * Fixed a C99ism.
138
139------------------------------------------------------------------------
140r128 | sam | 2003-11-29 15:41:37 +0100 (Sat, 29 Nov 2003) | 9 lines
141Changed paths:
142   M /trunk/NOTES
143   M /trunk/configure.ac
144   M /trunk/src/caca.c
145   M /trunk/src/graphics.c
146
147  * configure.ac:
148    + Default to ncurses, not slang, because slang only has 128 colour pairs.
149  * src/caca.c:
150    + Disable scrolling to avoid hashmap scrolling optimization code.
151  * src/graphics.c:
152    + Swap fg and bg in the colour pair indexing, so that bg is always
153      right.
154    + Disable alt charset support to exploit my patched slang.
155
156------------------------------------------------------------------------
157r127 | sam | 2003-11-28 21:39:54 +0100 (Fri, 28 Nov 2003) | 10 lines
158Changed paths:
159   M /trunk/NOTES
160   M /trunk/examples/view.c
161   M /trunk/src/bitmap.c
162
163  * src/bitmap.c:
164    + Dither chroma outside of rgb2hsv_default().
165    + Clip fromx and fromy values.
166  * NOTES:
167    + Link to the XTerm control sequences.
168  * examples/view.c:
169    + Draw status bar.
170    + Move with 'h' 'j' 'k' 'l', à la vi.
171    + '?' toggles a help menu.
172
173------------------------------------------------------------------------
174r126 | sam | 2003-11-28 00:18:12 +0100 (Fri, 28 Nov 2003) | 3 lines
175Changed paths:
176   M /trunk/src/bitmap.c
177
178  * src/bitmap.c:
179    + Removed § from the list of default characters due to collisions.
180
181------------------------------------------------------------------------
182r125 | sam | 2003-11-27 23:54:48 +0100 (Thu, 27 Nov 2003) | 6 lines
183Changed paths:
184   A /trunk/debian/caca-utils.mime
185   M /trunk/debian/control
186   M /trunk/debian/rules
187
188  * debian/control:
189    + Removed slang1-dev dependency in caca-utils.
190  * debian/caca-utils.mime debian/rules:
191    + Added a MIME file with low priority.
192    + Added call to dh_installmime.
193
194------------------------------------------------------------------------
195r124 | sam | 2003-11-27 23:29:13 +0100 (Thu, 27 Nov 2003) | 5 lines
196Changed paths:
197   M /trunk/configure.ac
198   M /trunk/src/caca.c
199   M /trunk/src/caca_internals.h
200   M /trunk/src/graphics.c
201
202  * src/caca.c src/graphics.c:
203    + Moved graphics stuff from caca.c to graphics.c.
204    + Added a few kludges: if gnome-terminal or konsole are detected, switch
205      to TERM=xterm-16color to benefit from extended colour palette.
206
207------------------------------------------------------------------------
208r123 | sam | 2003-11-27 22:56:30 +0100 (Thu, 27 Nov 2003) | 13 lines
209Changed paths:
210   M /trunk/NOTES
211   M /trunk/examples/demo.c
212   M /trunk/examples/spritedit.c
213   M /trunk/src/bitmap.c
214   M /trunk/src/caca.c
215   M /trunk/src/caca.h
216   M /trunk/src/graphics.c
217   M /trunk/src/sprite.c
218
219  * NOTES:
220    + Added setab/setaf quotes from the XTerm terminfo.
221    + Proposed a workaround for bright colours on any terminal.
222  * src/caca.c:
223    + 16 colour support for ncurses and conio.
224  * src/graphics.c:
225    + Ported to 16 colour support.
226    + Added a missing <stdio.h> for BUFSIZ.
227    + Disabled vsnprintf under DOS (only vsprintf exists).
228  * examples/:
229    + Don't abort if the caca.txt sprite was not found.
230    + Ported to 16 colour support.
231
232------------------------------------------------------------------------
233r122 | sam | 2003-11-27 14:27:32 +0100 (Thu, 27 Nov 2003) | 2 lines
234Changed paths:
235   M /trunk/NOTES
236
237  * NOTES: more notes about colours.
238
239------------------------------------------------------------------------
240r121 | sam | 2003-11-27 10:43:56 +0100 (Thu, 27 Nov 2003) | 5 lines
241Changed paths:
242   M /trunk/Makefile.am
243   M /trunk/configure.ac
244   M /trunk/examples/Makefile.am
245
246  * configure.ac:
247    + More sensible imlib2 detection, works with cross-compilation.
248  * Makefile.am:
249    + Don't forget to include NOTES to the dist tarball.
250
251------------------------------------------------------------------------
252r120 | sam | 2003-11-27 10:38:16 +0100 (Thu, 27 Nov 2003) | 2 lines
253Changed paths:
254   A /trunk/NOTES
255   M /trunk/README
256   M /trunk/debian/rules
257
258  * NOTES: added information about colour support.
259
260------------------------------------------------------------------------
261r119 | sam | 2003-11-26 22:02:31 +0100 (Wed, 26 Nov 2003) | 2 lines
262Changed paths:
263   M /trunk/configure.ac
264
265  * configure.ac: Added a missing check for <inttypes.h>.
266
267------------------------------------------------------------------------
268r118 | sam | 2003-11-26 21:58:30 +0100 (Wed, 26 Nov 2003) | 2 lines
269Changed paths:
270   M /trunk/src/bitmap.c
271
272  * src/bitmap.c: Support for more colour depths.
273
274------------------------------------------------------------------------
275r115 | sam | 2003-11-24 20:56:04 +0100 (Mon, 24 Nov 2003) | 9 lines
276Changed paths:
277   M /trunk/configure.ac
278   M /trunk/examples/Makefile.am
279   M /trunk/examples/demo.c
280   M /trunk/examples/view.c
281
282  * configure.ac examples/Makefile.am:
283    + Added a check for imlib2-config.
284    + Build cacaview conditionally.
285  * examples/demo.c:
286    + Removed all gdkpixbuf code.
287  * examples/view.c:
288    + Default to ordered dithering.
289    + Make sure the arrows always work even if delta is too small.
290
291------------------------------------------------------------------------
292r114 | sam | 2003-11-24 18:51:40 +0100 (Mon, 24 Nov 2003) | 4 lines
293Changed paths:
294   M /trunk/debian
295   M /trunk/debian/control
296   M /trunk/debian/rules
297
298  * debian/:
299    + New caca-utils package.
300    + Move cacademo, cacaview and caca-spritedit to caca-utils.
301
302------------------------------------------------------------------------
303r113 | sam | 2003-11-24 18:50:14 +0100 (Mon, 24 Nov 2003) | 6 lines
304Changed paths:
305   M /trunk/doc/Makefile.am
306   D /trunk/doc/caca-demo.1
307   A /trunk/doc/cacademo.1 (from /trunk/doc/caca-demo.1:112)
308   A /trunk/doc/cacaview.1
309   M /trunk/examples
310   M /trunk/examples/Makefile.am
311   A /trunk/examples/view.c
312
313  * examples/:
314    + Simple image viewer, cacaview, based on libcaca and imlib2.
315    + Renamed caca-demo into cacademo.
316  * doc/:
317    + Renamed doc/caca-demo.1 into doc/cacademo.1.
318
319------------------------------------------------------------------------
320r112 | sam | 2003-11-23 16:34:35 +0100 (Sun, 23 Nov 2003) | 2 lines
321Changed paths:
322   M /trunk/src/Makefile.am
323   A /trunk/src/bitmap.c (from /trunk/src/blit.c:111)
324   D /trunk/src/blit.c
325
326  * Renamed src/blit.c into src/bitmap.c.
327
328------------------------------------------------------------------------
329r111 | sam | 2003-11-23 04:44:59 +0100 (Sun, 23 Nov 2003) | 5 lines
330Changed paths:
331   M /trunk/examples/demo.c
332   M /trunk/src/caca.c
333   M /trunk/src/caca.h
334   M /trunk/src/io.c
335
336  * src/caca.c:
337    + Mouse initialisation in ncurses.
338  * src/io.c:
339    + Mouse support in ncurses.
340
341------------------------------------------------------------------------
342r110 | sam | 2003-11-22 15:28:36 +0100 (Sat, 22 Nov 2003) | 3 lines
343Changed paths:
344   M /trunk/debian/control
345
346  * debian/control:
347    + libcaca-dev should depend on slang1-dev.
348
349------------------------------------------------------------------------
350r109 | sam | 2003-11-22 15:23:18 +0100 (Sat, 22 Nov 2003) | 3 lines
351Changed paths:
352   M /trunk/debian/Makefile.am
353
354  * debian/Makefile.am:
355    + Added compat and copyright to the distributed files.
356
357------------------------------------------------------------------------
358r108 | sam | 2003-11-22 15:19:36 +0100 (Sat, 22 Nov 2003) | 2 lines
359Changed paths:
360   A /trunk/ChangeLog
361   M /trunk/debian/rules
362
363  * Added a ChangeLog file.
364
365------------------------------------------------------------------------
366r107 | sam | 2003-11-22 15:13:53 +0100 (Sat, 22 Nov 2003) | 3 lines
367Changed paths:
368   M /trunk/examples/Makefile.am
369
370  * examples/Makefile.am:
371    + Compilation fix when libcaca is not available.
372
373------------------------------------------------------------------------
374r106 | sam | 2003-11-22 14:44:02 +0100 (Sat, 22 Nov 2003) | 9 lines
375Changed paths:
376   M /trunk/debian/changelog
377   A /trunk/debian/copyright
378   M /trunk/debian/rules
379   M /trunk/doc/Makefile.am
380   M /trunk/doc/caca-config.1
381   A /trunk/doc/caca-demo.1
382   A /trunk/doc/caca-spritedit.1
383   M /trunk/examples/caca.txt
384
385  * debian/:
386    + Wrote the changelog for the Debian release.
387    + Wrote a copyright file.
388  * doc/:
389    + Wrote manpages for caca-demo and caca-spritedit.
390  * examples/caca.txt:
391    + Centered the sprite handle.
392    + Added a second frame to the sprite.
393
394------------------------------------------------------------------------
395r105 | sam | 2003-11-22 13:53:55 +0100 (Sat, 22 Nov 2003) | 11 lines
396Changed paths:
397   A /trunk/AUTHORS
398   M /trunk/Makefile.am
399   A /trunk/NEWS
400   M /trunk/configure.ac
401   A /trunk/doc
402   A /trunk/doc/Makefile.am
403   A /trunk/doc/caca-config.1
404   A /trunk/doc/doxygen.cfg
405   A /trunk/doc/footer.html
406   A /trunk/doc/header.html
407
408  * AUTHORS NEWS:
409    + Added these mandatory files.
410  * doc/:
411    + Wrote a Doxygen configuration file.
412    + Added a manpage for caca-config(1), borrowed from sdl-config.
413  * configure.ac:
414    + Use new style AC_INIT.
415    + Error out if no library was found.
416    + Added *djgpp* to the list of non-PIC platforms.
417    + Added checks for doxygen and latex.
418
419------------------------------------------------------------------------
420r104 | sam | 2003-11-22 13:51:27 +0100 (Sat, 22 Nov 2003) | 2 lines
421Changed paths:
422   M /trunk/examples/Makefile.am
423   M /trunk/examples/demo.c
424
425  * Disabled gdkpixbuf code.
426
427------------------------------------------------------------------------
428r103 | sam | 2003-11-22 13:45:25 +0100 (Sat, 22 Nov 2003) | 3 lines
429Changed paths:
430   M /trunk/src/blit.c
431   M /trunk/src/box.c
432   M /trunk/src/caca.c
433   M /trunk/src/caca.h
434   M /trunk/src/caca_internals.h
435   M /trunk/src/conic.c
436   M /trunk/src/graphics.c
437   M /trunk/src/io.c
438   M /trunk/src/line.c
439   M /trunk/src/math.c
440   M /trunk/src/sprite.c
441   M /trunk/src/triangle.c
442
443  * src/:
444    + Doxygenated a few things.
445
446------------------------------------------------------------------------
447r102 | sam | 2003-11-21 15:34:07 +0100 (Fri, 21 Nov 2003) | 8 lines
448Changed paths:
449   M /trunk/TODO
450   M /trunk/examples/demo.c
451   M /trunk/src/blit.c
452   M /trunk/src/caca.h
453
454  * TODO:
455    + A few updates.
456  * src/blit.c:
457    + Split blit() into caca_create_bitmap() and caca_draw_bitmap().
458    + Started removing hardcoded bitmask and pitch values.
459  * examples/demo.c:
460    + Do something with mouse clicks.
461
462------------------------------------------------------------------------
463r101 | sam | 2003-11-21 15:14:26 +0100 (Fri, 21 Nov 2003) | 3 lines
464Changed paths:
465   M /trunk/src/io.c
466
467  * src/io.c:
468    + Fixed an off-by-one error in the mouse driver.
469
470------------------------------------------------------------------------
471r100 | sam | 2003-11-20 17:54:04 +0100 (Thu, 20 Nov 2003) | 13 lines
472Changed paths:
473   M /trunk
474   M /trunk/Makefile.am
475   M /trunk/README
476   M /trunk/TODO
477   A /trunk/caca-config.in
478   M /trunk/configure.ac
479   M /trunk/debian
480   A /trunk/debian/compat
481   M /trunk/debian/control
482   M /trunk/debian/rules
483   M /trunk/examples
484   M /trunk/examples/Makefile.am
485   M /trunk/examples/demo.c
486   M /trunk/src/Makefile.am
487
488  * debian/control:
489    + Changed section to libs/libdevel instead of games/games.
490    + Changed package name to libcaca-dev.
491  * debian/rules:
492    + Use debian/compat instead of DH_COMPAT.
493    + Install README, BUGS and TODO into /usr/share/doc.
494  * caca-config.in:
495    + First version of the config script.
496  * configure.ac src/Makefile.am:
497    + Build a static PIC library as well.
498  * README TODO:
499    + Various updates.
500
501------------------------------------------------------------------------
502r99 | sam | 2003-11-19 19:38:49 +0100 (Wed, 19 Nov 2003) | 3 lines
503Changed paths:
504   M /trunk/TODO
505   M /trunk/src/io.c
506
507  * TODO: New stuff to do.
508  * src/io.c: left and right arrow keys were swapped.
509
510------------------------------------------------------------------------
511r98 | sam | 2003-11-19 18:49:43 +0100 (Wed, 19 Nov 2003) | 3 lines
512Changed paths:
513   M /trunk/src/blit.c
514   M /trunk/src/caca.c
515   M /trunk/src/io.c
516
517  * src/io.c:
518    + Fixed a bug in the mouse coordinates reporting.
519
520------------------------------------------------------------------------
521r97 | sam | 2003-11-19 18:32:10 +0100 (Wed, 19 Nov 2003) | 6 lines
522Changed paths:
523   M /trunk/examples/demo.c
524   M /trunk/examples/spritedit.c
525   M /trunk/src/blit.c
526   M /trunk/src/caca.c
527   M /trunk/src/caca.h
528   M /trunk/src/io.c
529
530  * src/io.c:
531    + Renamed sdl_get_key() into sdl_get_event().
532    + Handle mouse clicks.
533  * src/caca.c:
534    + Activate the terminal's mouse handling if supported.
535
536------------------------------------------------------------------------
537r96 | sam | 2003-11-17 17:11:34 +0100 (Mon, 17 Nov 2003) | 8 lines
538Changed paths:
539   M /trunk/examples/Makefile.am
540   M /trunk/src/Makefile.am
541   M /trunk/src/blit.c
542   M /trunk/src/caca.h
543   M /trunk/src/io.c
544
545  * src/io.c src/caca.h:
546    + Interpret escape sequences for F1, F2, left, right, etc.
547  * src/Makefile.am examples/Makefile.am:
548    + Install caca.h in /usr/include.
549    + Do not install example programs.
550  * src/blit.c:
551    + Minor improvements to grayscale colors.
552
553------------------------------------------------------------------------
554r95 | sam | 2003-11-17 11:15:40 +0100 (Mon, 17 Nov 2003) | 2 lines
555Changed paths:
556   D /trunk/.cvsignore
557   D /trunk/autotools/.cvsignore
558
559  * Removed legacy .cvsignore files.
560
561------------------------------------------------------------------------
562r94 | sam | 2003-11-16 18:41:43 +0100 (Sun, 16 Nov 2003) | 6 lines
563Changed paths:
564   M /trunk/examples/demo.c
565   M /trunk/src/blit.c
566   M /trunk/src/caca.h
567
568  * src/blit.c:
569    + Hue calculation now uses integers only.
570    + Dithering is now parametrable. Implemented none, ordered, random.
571  * examples/demo.c:
572    + Added dithering selection.
573
574------------------------------------------------------------------------
575r93 | sam | 2003-11-16 16:20:17 +0100 (Sun, 16 Nov 2003) | 8 lines
576Changed paths:
577   M /trunk/examples/Makefile.am
578   A /trunk/examples/caca.txt
579   M /trunk/examples/demo.c
580   M /trunk/examples/spritedit.c
581   M /trunk/src/blit.c
582   M /trunk/src/caca.c
583   M /trunk/src/caca.h
584   M /trunk/src/caca_internals.h
585   M /trunk/src/graphics.c
586
587  * src/blit.c:
588    + Added caca_set_dithering() (unused yet).
589    + Added random dithering.
590  * src/caca.h:
591    + Renamed legacy EE_* enums to CACA_*.
592  * examples/demo.c examples/caca.txt:
593    + Added a default sprite for libcaca.
594
595------------------------------------------------------------------------
596r92 | sam | 2003-11-16 13:28:29 +0100 (Sun, 16 Nov 2003) | 2 lines
597Changed paths:
598   M /trunk/examples/demo.c
599   M /trunk/examples/spritedit.c
600   M /trunk/src/blit.c
601   M /trunk/src/box.c
602   M /trunk/src/caca.c
603   M /trunk/src/caca.h
604   M /trunk/src/caca_internals.h
605   M /trunk/src/conic.c
606   M /trunk/src/graphics.c
607   M /trunk/src/io.c
608   M /trunk/src/line.c
609   M /trunk/src/math.c
610   M /trunk/src/sprite.c
611   M /trunk/src/triangle.c
612
613  * Changed copyleft to LGPL.
614
615------------------------------------------------------------------------
616r91 | sam | 2003-11-16 13:13:46 +0100 (Sun, 16 Nov 2003) | 3 lines
617Changed paths:
618   M /trunk/Makefile.am
619   M /trunk/configure.ac
620   A /trunk/examples (from /trunk/test:90)
621   M /trunk/examples/Makefile.am
622   D /trunk/libcaca
623   A /trunk/src (from /trunk/libcaca:90)
624   M /trunk/src/line.c
625   D /trunk/test
626
627  * 2nd pass in the libcaca rehandling; moved sources to src/ and examples
628    to examples/.
629
630------------------------------------------------------------------------
631r90 | sam | 2003-11-16 13:07:52 +0100 (Sun, 16 Nov 2003) | 2 lines
632Changed paths:
633   M /trunk/COPYING
634   M /trunk/Makefile.am
635   M /trunk/README
636   M /trunk/TODO
637   M /trunk/bootstrap
638   M /trunk/configure.ac
639   D /trunk/data
640   D /trunk/debian/.cvsignore
641   M /trunk/debian/changelog
642   M /trunk/debian/control
643   M /trunk/debian/rules
644   D /trunk/doc
645   D /trunk/src
646
647  * The big TTYvaders/libcaca split. This is libcaca.
648
649------------------------------------------------------------------------
650r89 | sam | 2003-11-16 12:26:54 +0100 (Sun, 16 Nov 2003) | 8 lines
651Changed paths:
652   M /trunk/configure.ac
653   M /trunk/libcaca/blit.c
654   M /trunk/libcaca/caca.c
655   M /trunk/libcaca/conic.c
656   M /trunk/libcaca/graphics.c
657   M /trunk/src/weapons.c
658
659  * configure.ac:
660    + Added -Wsign-compare to the warning flags.
661  * libcaca/caca.c:
662    + Fixed a signed/unsigned bug that caused infinite waits with
663      ee_set_delay(0).
664  * src/weapons.c libcaca/graphics.c libcaca/blit.c libcaca/conic.c:
665    + Fixed minor signed/unsigned comparison warnings.
666
667------------------------------------------------------------------------
668r88 | sam | 2003-11-16 01:33:35 +0100 (Sun, 16 Nov 2003) | 2 lines
669Changed paths:
670   M /trunk/Makefile.am
671   M /trunk/TODO
672   M /trunk/configure.ac
673   A /trunk/libcaca (from /trunk/libee:87)
674   M /trunk/libcaca/Makefile.am
675   M /trunk/libcaca/blit.c
676   M /trunk/libcaca/box.c
677   A /trunk/libcaca/caca.c (from /trunk/libee/ee.c:87)
678   A /trunk/libcaca/caca.h (from /trunk/libee/ee.h:87)
679   A /trunk/libcaca/caca_internals.h (from /trunk/libee/ee_internals.h:87)
680   M /trunk/libcaca/conic.c
681   D /trunk/libcaca/ee.c
682   D /trunk/libcaca/ee.h
683   D /trunk/libcaca/ee_internals.h
684   M /trunk/libcaca/graphics.c
685   M /trunk/libcaca/io.c
686   M /trunk/libcaca/line.c
687   M /trunk/libcaca/math.c
688   M /trunk/libcaca/sprite.c
689   M /trunk/libcaca/triangle.c
690   D /trunk/libee
691   M /trunk/src/Makefile.am
692   M /trunk/src/aliens.c
693   M /trunk/src/bonus.c
694   M /trunk/src/box.c
695   M /trunk/src/ceo.c
696   M /trunk/src/collide.c
697   M /trunk/src/common.h
698   M /trunk/src/explosions.c
699   M /trunk/src/intro.c
700   M /trunk/src/main.c
701   M /trunk/src/overlay.c
702   M /trunk/src/player.c
703   M /trunk/src/starfield.c
704   M /trunk/src/tunnel.c
705   M /trunk/src/weapons.c
706   M /trunk/test/Makefile.am
707   M /trunk/test/demo.c
708   M /trunk/test/spritedit.c
709
710  * Renamed libee to libcaca. Far less collisions.
711
712------------------------------------------------------------------------
713r87 | sam | 2003-11-16 01:09:09 +0100 (Sun, 16 Nov 2003) | 2 lines
714Changed paths:
715   M /trunk/libee/Makefile.am
716   A /trunk/libee/blit.c
717   M /trunk/libee/ee.h
718   M /trunk/test/Makefile.am
719   M /trunk/test/demo.c
720
721  * Very ugly ee_blit function. Will be polished in a while.
722
723------------------------------------------------------------------------
724r86 | sam | 2003-11-15 13:42:38 +0100 (Sat, 15 Nov 2003) | 10 lines
725Changed paths:
726   M /trunk/libee/ee.c
727   M /trunk/libee/ee.h
728   M /trunk/libee/graphics.c
729   M /trunk/test/demo.c
730
731  * libee/ee.c:
732    + Replaced ee_color_names[] with ee_get_color_name().
733    + Don't oversleep in ee_refresh().
734  * libee/graphics.c:
735    + Implemented ee_printf().
736  * test/demo.c:
737    + If new keypresses are detected, don't wait for the next screen refresh.
738    + Added an fps counter on demos.
739    + Added controls for outlines and drawing boundaries.
740
741------------------------------------------------------------------------
742r85 | sam | 2003-11-15 10:58:20 +0100 (Sat, 15 Nov 2003) | 8 lines
743Changed paths:
744   M /trunk/libee/ee.c
745   M /trunk/libee/ee.h
746   M /trunk/libee/ee_internals.h
747   M /trunk/libee/graphics.c
748   M /trunk/libee/line.c
749
750  * libee/graphics.c:
751    + Correct clipping in ee_putstr() for long strings.
752  * libee/ee.c:
753    + New ee_get_rendertime() call to provide framerate information.
754  * libee/ee.h:
755    + Added const keywords where it was meaningful, despite Slang's blatant
756      omission of such keywords in its prototypes.
757
758------------------------------------------------------------------------
759r84 | sam | 2003-11-14 20:00:07 +0100 (Fri, 14 Nov 2003) | 6 lines
760Changed paths:
761   M /trunk/libee/ee.c
762   M /trunk/src/main.c
763   M /trunk/test/demo.c
764
765  * libee/ee.c:
766    + Implemented correct framerate wait loop.
767    + No framedropping yet.
768  * test/demo.c src/main.c:
769    + Set an arbitrary framerate for demos.
770
771------------------------------------------------------------------------
772r83 | sam | 2003-11-14 19:49:53 +0100 (Fri, 14 Nov 2003) | 2 lines
773Changed paths:
774   M /trunk/src/Makefile.am
775   M /trunk/test/Makefile.am
776
777  * Fixed compilation in an alternate directory.
778
779------------------------------------------------------------------------
780r82 | sam | 2003-11-14 18:02:36 +0100 (Fri, 14 Nov 2003) | 2 lines
781Changed paths:
782   M /trunk/src/box.c
783   M /trunk/src/main.c
784   M /trunk/src/player.c
785   M /trunk/src/starfield.c
786   M /trunk/src/tunnel.c
787   M /trunk/src/weapons.c
788
789  * Sanity checks after each malloc() call.
790
791------------------------------------------------------------------------
792r81 | sam | 2003-11-14 17:55:58 +0100 (Fri, 14 Nov 2003) | 4 lines
793Changed paths:
794   M /trunk/libee/ee.h
795   M /trunk/libee/math.c
796
797  * libee/math.c:
798    + ee_sqrt() now uses unsigned ints.
799    + Avoid overflows in ee_sqrt().
800
801------------------------------------------------------------------------
802r80 | sam | 2003-11-13 18:12:40 +0100 (Thu, 13 Nov 2003) | 2 lines
803Changed paths:
804   M /trunk/src/intro.c
805
806  * src/intro.c: Minor graphical issue on dosemu with ncurses backend.
807
808------------------------------------------------------------------------
809r79 | sam | 2003-11-13 17:45:25 +0100 (Thu, 13 Nov 2003) | 6 lines
810Changed paths:
811   M /trunk/libee/ee.c
812   M /trunk/libee/ee_internals.h
813   M /trunk/libee/graphics.c
814   M /trunk/libee/sprite.c
815
816  * libee/ee.c:
817    + Error checking in ee_init().
818    + Pre-generate the empty line for ee_clear().
819  * libee/sprite.c:
820    + Better error checking in ee_sprite_load().
821
822------------------------------------------------------------------------
823r78 | sam | 2003-11-13 16:41:12 +0100 (Thu, 13 Nov 2003) | 2 lines
824Changed paths:
825   M /trunk/libee/conic.c
826   M /trunk/libee/line.c
827   M /trunk/src/box.c
828
829  * Minor coding style changes.
830
831------------------------------------------------------------------------
832r77 | sam | 2003-11-13 16:37:49 +0100 (Thu, 13 Nov 2003) | 2 lines
833Changed paths:
834   M /trunk/data/Makefile.am
835   D /trunk/data/bar_boss
836   D /trunk/data/bar_fighter
837   A /trunk/data/barboss.txt (from /trunk/data/bar_boss:76)
838   A /trunk/data/barfight.txt (from /trunk/data/bar_fighter:76)
839   D /trunk/data/baz_fighter
840   A /trunk/data/bazfight.txt (from /trunk/data/baz_fighter:76)
841   A /trunk/data/bongem.txt (from /trunk/data/item_gem:76)
842   A /trunk/data/bonheart.txt (from /trunk/data/item_heart:76)
843   D /trunk/data/explosion_medium
844   D /trunk/data/explosion_small
845   D /trunk/data/foo_fighter
846   A /trunk/data/foofight.txt (from /trunk/data/foo_fighter:76)
847   D /trunk/data/item_gem
848   D /trunk/data/item_heart
849   A /trunk/data/ship.txt (from /trunk/data/ship_green:76)
850   D /trunk/data/ship_green
851   D /trunk/data/weapon_bomb
852   D /trunk/data/weapon_fragbomb
853   A /trunk/data/wpnbomb.txt (from /trunk/data/weapon_bomb:76)
854   A /trunk/data/wpnfrag.txt (from /trunk/data/weapon_fragbomb:76)
855   A /trunk/data/xplmed.txt (from /trunk/data/explosion_medium:76)
856   A /trunk/data/xplsmall.txt (from /trunk/data/explosion_small:76)
857   M /trunk/src/aliens.c
858   M /trunk/src/bonus.c
859   M /trunk/src/explosions.c
860   M /trunk/src/intro.c
861   M /trunk/src/player.c
862   M /trunk/src/weapons.c
863   M /trunk/test/demo.c
864
865  * Renamed sprites to < 8+3 names for the DOS port.
866
867------------------------------------------------------------------------
868r76 | sam | 2003-11-13 00:46:58 +0100 (Thu, 13 Nov 2003) | 7 lines
869Changed paths:
870   M /trunk/data/bar_boss
871   M /trunk/data/bar_fighter
872   M /trunk/data/baz_fighter
873   M /trunk/data/explosion_medium
874   M /trunk/data/explosion_small
875   M /trunk/data/foo_fighter
876   M /trunk/data/item_gem
877   M /trunk/data/item_heart
878   M /trunk/data/ship_green
879   M /trunk/data/weapon_bomb
880   M /trunk/data/weapon_fragbomb
881   M /trunk/src/starfield.c
882   M /trunk/test/demo.c
883
884  * test/demo.c:
885    + Removed a spurious '\n' from an ee_putstr().
886  * src/starfield.c:
887    + Fixed starfield color.
888  * data/:
889    + Fixed every sprite's colors.
890
891------------------------------------------------------------------------
892r75 | sam | 2003-11-12 22:18:50 +0100 (Wed, 12 Nov 2003) | 25 lines
893Changed paths:
894   A /trunk/BUGS
895   M /trunk/Makefile.am
896   M /trunk/README
897   M /trunk/TODO
898   M /trunk/libee/Makefile.am
899   M /trunk/libee/box.c
900   M /trunk/libee/conic.c
901   M /trunk/libee/ee.c
902   M /trunk/libee/ee.h
903   A /trunk/libee/ee_internals.h
904   M /trunk/libee/graphics.c
905   M /trunk/libee/io.c
906   M /trunk/libee/line.c
907   M /trunk/libee/math.c
908   M /trunk/libee/sprite.c
909   M /trunk/libee/triangle.c
910   M /trunk/src/Makefile.am
911   M /trunk/src/overlay.c
912   M /trunk/src/weapons.c
913   M /trunk/test/demo.c
914
915  * libee/ee.h:
916    + Added ee_color_names[] containing our 16 color names.
917  * libee/ee.c:
918    + Extended our color set to the full 16 instead of 10.
919    + Precalculate ncurses attributes.
920  * libee/graphics.c:
921    + Clip color value in ee_set_color().
922    + Clip characters in ee_putchar().
923    + Partially clip characters in ee_putstr(), overflows aren't checked yet.
924  * libee/ee_internals.h:
925    + New file to share extern variables within libee.
926
927  * test/demo.c:
928    + Added a simple demo_color() to output all colors.
929    + Replaced four ee_draw_line() with ee_draw_thin_box().
930    + Replaced x1, y1, x2 etc. with xa, ya, xb etc. because <math.h> already
931      defines y1.
932    + Randomized colours from 0 to 15 instead of 1 to 10.
933
934  * src/Makefiles.am:
935    + Added -lm to the ttyvaders linking flags because of the intro.
936
937  * README BUGS TODO:
938    + Updated.
939
940------------------------------------------------------------------------
941r74 | sam | 2003-11-12 19:41:02 +0100 (Wed, 12 Nov 2003) | 7 lines
942Changed paths:
943   M /trunk/README
944   M /trunk/configure.ac
945   M /trunk/libee/ee.c
946   M /trunk/libee/graphics.c
947
948  * README:
949    + Added a note about dos cross-compilation.
950  * configure.ac:
951    + Added a check for ScreenUpdate in <pc.h>.
952  * libee/graphics.c libee/ee.c:
953    + Improved the conio port thanks to ScreenUpdate().
954
955------------------------------------------------------------------------
956r73 | sam | 2003-11-12 17:23:18 +0100 (Wed, 12 Nov 2003) | 2 lines
957Changed paths:
958   M /trunk/configure.ac
959   M /trunk/libee/conic.c
960   M /trunk/libee/ee.c
961   M /trunk/libee/graphics.c
962   M /trunk/libee/io.c
963   M /trunk/libee/line.c
964
965  * MS-DOS port of libee, using <conio.h>.
966
967------------------------------------------------------------------------
968r72 | sam | 2003-11-12 02:48:58 +0100 (Wed, 12 Nov 2003) | 17 lines
969Changed paths:
970   M /trunk/data/foo_fighter
971   M /trunk/libee/box.c
972   M /trunk/libee/ee.h
973   M /trunk/libee/graphics.c
974   M /trunk/libee/line.c
975   M /trunk/libee/sprite.c
976   M /trunk/src/Makefile.am
977   M /trunk/src/aliens.c
978   M /trunk/src/bonus.c
979   M /trunk/src/box.c
980   M /trunk/src/common.h
981   M /trunk/src/explosions.c
982   A /trunk/src/intro.c
983   M /trunk/src/main.c
984   M /trunk/src/overlay.c
985   M /trunk/src/player.c
986   M /trunk/src/starfield.c
987   M /trunk/src/tunnel.c
988   M /trunk/src/weapons.c
989   M /trunk/test/demo.c
990   M /trunk/test/spritedit.c
991
992  * libee/graphics.c:
993    + Renamed ee_color() to ee_set_color(), wrote ee_get_color().
994  * libee/line.c:
995    + Implemented draw_polyline() and draw_thin_polyline().
996  * libee/sprite.c:
997    + Removed the f member of struct ee_sprite.
998    + Implemented ee_get_sprite_{width|height|dx|dy}().
999    + Restore the color fater ee_draw_sprite() is called.
1000  * libee/box.c:
1001    + Fixed a bug causing improper box clipping at the right and the bottom.
1002  * data/foo_fighter:
1003    + Fixed bugs in the sprite.
1004  * src/intro.c:
1005    + Test effects for the future game's intro.
1006  * test/spritedit.c:
1007    + Added stuff to the sprite editor. We can now navigate through frames.
1008
1009------------------------------------------------------------------------
1010r71 | sam | 2003-11-11 11:22:19 +0100 (Tue, 11 Nov 2003) | 13 lines
1011Changed paths:
1012   M /trunk/libee/Makefile.am
1013   A /trunk/libee/box.c
1014   M /trunk/libee/conic.c
1015   M /trunk/libee/ee.h
1016   M /trunk/libee/triangle.c
1017   M /trunk/test/demo.c
1018
1019  * libee/triangle.c:
1020    + Wrote ee_draw_triangle() and ee_draw_thin_triangle().
1021  * libee/box.c:
1022    + Wrote ee_draw_box(), ee_draw_thin_box() and ee_fill_box().
1023  * libee/conic.c:
1024    + Wrote ee_fill_ellipse().
1025    + First attempt at ee_draw_thin_ellipse(), to be reworked.
1026  * test/demo.c:
1027    + Merged demo_lines() and demo_thin_lines().
1028    + Merged demo_triangles() and demo_outlined_triangles().
1029    + Wrote demo_box().
1030    + Use ee_fill_ellipse() in demo_all().
1031
1032------------------------------------------------------------------------
1033r70 | sam | 2003-11-11 09:00:36 +0100 (Tue, 11 Nov 2003) | 5 lines
1034Changed paths:
1035   M /trunk/data/Makefile.am
1036   A /trunk/data/ship_green
1037   M /trunk/src/collide.c
1038   M /trunk/src/main.c
1039   M /trunk/src/player.c
1040   M /trunk/src/weapons.c
1041
1042  * src/weapons.c:
1043    + Use ee_draw_ellipse() instead of ee_draw_circle() to draw the nuke.
1044  * src/player.c:
1045    + Use ee_draw_sprite() to draw our ship.
1046
1047------------------------------------------------------------------------
1048r69 | sam | 2003-11-11 00:38:50 +0100 (Tue, 11 Nov 2003) | 8 lines
1049Changed paths:
1050   M /trunk/libee/Makefile.am
1051   M /trunk/libee/conic.c
1052   M /trunk/libee/ee.c
1053   M /trunk/libee/ee.h
1054   A /trunk/libee/graphics.c (from /trunk/libee/ee.c:68)
1055   M /trunk/libee/io.c
1056   M /trunk/libee/line.c
1057   M /trunk/libee/math.c
1058   M /trunk/libee/sprite.c
1059   M /trunk/libee/triangle.c
1060   M /trunk/src/box.c
1061   M /trunk/src/overlay.c
1062   M /trunk/src/player.c
1063   M /trunk/src/starfield.c
1064   M /trunk/src/tunnel.c
1065   M /trunk/src/weapons.c
1066   M /trunk/test/demo.c
1067
1068  * libee/graphics.c:
1069    + Moved ee_putstr() and ee_putchar() in here.
1070  * libee/ee.h:
1071    + Got rid of ee_goto().
1072    + Moved <slang.h> or <curses.h> into libee.
1073  * Replaced ee_goto()/ee_putstr() pairs with ee_putstr().
1074  * Ditto for ee_putchar().
1075
1076------------------------------------------------------------------------
1077r68 | sam | 2003-11-11 00:04:13 +0100 (Tue, 11 Nov 2003) | 5 lines
1078Changed paths:
1079   M /trunk/data/Makefile.am
1080   M /trunk/src/Makefile.am
1081   M /trunk/test
1082   M /trunk/test/Makefile.am
1083   A /trunk/test/spritedit.c
1084
1085  * test/spritedit.c:
1086    + Placeholder for our upcoming sprite editor.
1087  * src/Makefile.am data/Makefile.am:
1088    + Use AM_CPPFLAGS, not target_CPPFLAGS, so that automake-1.5 can be used.
1089
1090------------------------------------------------------------------------
1091r67 | sam | 2003-11-10 23:43:30 +0100 (Mon, 10 Nov 2003) | 4 lines
1092Changed paths:
1093   M /trunk/data/Makefile.am
1094   A /trunk/data/weapon_fragbomb
1095   M /trunk/src/weapons.c
1096
1097  * src/weapons.c data/weapon_fragbomb:
1098    + Drew the fragbomb sprite.
1099    + Use the fragbomb in src/weapons.c.
1100
1101------------------------------------------------------------------------
1102r66 | sam | 2003-11-10 22:54:11 +0100 (Mon, 10 Nov 2003) | 5 lines
1103Changed paths:
1104   M /trunk/data/Makefile.am
1105   A /trunk/data/weapon_bomb
1106   M /trunk/src/weapons.c
1107
1108  * data/weapon_bomb:
1109    + New bomb sprite.
1110  * src/weapons.c:
1111    + Switched the bomb drawing to use ee_draw_sprite().
1112
1113------------------------------------------------------------------------
1114r65 | sam | 2003-11-10 22:17:47 +0100 (Mon, 10 Nov 2003) | 8 lines
1115Changed paths:
1116   M /trunk/data/Makefile.am
1117   A /trunk/data/explosion_medium
1118   A /trunk/data/explosion_small
1119   M /trunk/libee/sprite.c
1120   M /trunk/src/explosions.c
1121
1122  * libee/sprite.c:
1123    + Made sprite loading more robust.
1124  * src/explosions.c:
1125    + No longer use ee_putchar etc. to draw our sprites, but use
1126      ee_draw_sprite().
1127  * data/:
1128    + Drew explosion_medium and explosion_small sprites.
1129
1130------------------------------------------------------------------------
1131r64 | sam | 2003-11-10 21:43:02 +0100 (Mon, 10 Nov 2003) | 2 lines
1132Changed paths:
1133   M /trunk/libee/conic.c
1134
1135  * libee/conic.c: Clip circles and ellipses.
1136
1137------------------------------------------------------------------------
1138r63 | sam | 2003-11-10 19:29:04 +0100 (Mon, 10 Nov 2003) | 5 lines
1139Changed paths:
1140   M /trunk/libee/conic.c
1141   M /trunk/libee/sprite.c
1142
1143  * libee/sprite.c:
1144    + Added sanity checks in ee_sprite_* functions.
1145  * libee/conic.c:
1146    + Use ellipsepoints() in ee_draw_circle().
1147
1148------------------------------------------------------------------------
1149r62 | sam | 2003-11-10 19:23:23 +0100 (Mon, 10 Nov 2003) | 3 lines
1150Changed paths:
1151   M /trunk/test/demo.c
1152
1153  * test/demo.c:
1154    + Ellipses demo.
1155
1156------------------------------------------------------------------------
1157r61 | sam | 2003-11-10 19:21:36 +0100 (Mon, 10 Nov 2003) | 3 lines
1158Changed paths:
1159   M /trunk/libee/conic.c
1160   M /trunk/libee/ee.h
1161
1162  * libee/conic.c:
1163    + ee_draw_ellipse().
1164
1165------------------------------------------------------------------------
1166r60 | sam | 2003-11-10 16:31:12 +0100 (Mon, 10 Nov 2003) | 2 lines
1167Changed paths:
1168   M /trunk/libee/Makefile.am
1169   D /trunk/libee/circle.c
1170   A /trunk/libee/conic.c (from /trunk/libee/circle.c:58)
1171   M /trunk/libee/line.c
1172
1173  * Renamed libee/circle.c to libee/conic.c because we'll do ellipsis.
1174
1175------------------------------------------------------------------------
1176r59 | sam | 2003-11-10 16:16:38 +0100 (Mon, 10 Nov 2003) | 3 lines
1177Changed paths:
1178   M /trunk/libee/line.c
1179
1180  * libee/line.c:
1181    + Added code comments.
1182
1183------------------------------------------------------------------------
1184r58 | sam | 2003-11-10 15:19:21 +0100 (Mon, 10 Nov 2003) | 4 lines
1185Changed paths:
1186   M /trunk/configure.ac
1187   M /trunk/libee/Makefile.am
1188   M /trunk/src/Makefile.am
1189   M /trunk/test/Makefile.am
1190
1191  * configure.ac:
1192    + Moved optimization flags and warning triggers here.
1193    + Updated the snapshot timestamp.
1194
1195------------------------------------------------------------------------
1196r57 | sam | 2003-11-10 15:13:56 +0100 (Mon, 10 Nov 2003) | 2 lines
1197Changed paths:
1198   M /trunk/test/demo.c
1199
1200  * test/demo.c: Nicer complete demo.
1201
1202------------------------------------------------------------------------
1203r56 | sam | 2003-11-10 10:26:40 +0100 (Mon, 10 Nov 2003) | 11 lines
1204Changed paths:
1205   M /trunk/data/Makefile.am
1206   A /trunk/data/baz_fighter
1207   A /trunk/data/foo_fighter
1208   A /trunk/data/item_gem
1209   A /trunk/data/item_heart
1210   M /trunk/libee/ee.h
1211   M /trunk/libee/sprite.c
1212   M /trunk/src/aliens.c
1213   M /trunk/src/bonus.c
1214   M /trunk/src/box.c
1215
1216  * libee/sprite.c:
1217    + More robust sprite loader.
1218    + Added ee_set_sprite_frame() and ee_get_sprite_frame().
1219    + Free all structures in ee_free_sprite().
1220  * src/aliens.c src/bonus.c:
1221    + Use ee_draw_sprite() instead of our manual sprite rendering.
1222  * src/box.c:
1223    + Use ee_draw_line() instead of the manual equivalent.
1224  * data/:
1225    + Added foo_fighter, baz_fighter, item_gem and item_heart sprites.
1226
1227------------------------------------------------------------------------
1228r55 | sam | 2003-11-10 03:00:52 +0100 (Mon, 10 Nov 2003) | 2 lines
1229Changed paths:
1230   A /trunk/data/Makefile.am
1231
1232  * Oops, forgot data/Makefile.am.
1233
1234------------------------------------------------------------------------
1235r54 | sam | 2003-11-10 03:00:19 +0100 (Mon, 10 Nov 2003) | 5 lines
1236Changed paths:
1237   M /trunk/Makefile.am
1238   M /trunk/configure.ac
1239   A /trunk/data
1240   A /trunk/data/bar_boss
1241   A /trunk/data/bar_fighter
1242   M /trunk/test/demo.c
1243
1244  * test/demo.c:
1245    + Wrote a little sprite demo.
1246  * data/:
1247    + Added bar_fighter (from ttyvaders) and bar_boss (from shapes.txt).
1248
1249------------------------------------------------------------------------
1250r53 | sam | 2003-11-10 02:56:24 +0100 (Mon, 10 Nov 2003) | 4 lines
1251Changed paths:
1252   M /trunk/libee/Makefile.am
1253   M /trunk/libee/ee.h
1254   A /trunk/libee/sprite.c
1255
1256  * libee/sprite.c:
1257    + Beginning of sprite handling within the library.
1258    + Added support to load files.
1259
1260------------------------------------------------------------------------
1261r52 | sam | 2003-11-10 01:27:33 +0100 (Mon, 10 Nov 2003) | 3 lines
1262Changed paths:
1263   M /trunk/test/demo.c
1264
1265  * test/demo.c:
1266    + outlined triangles demo.
1267
1268------------------------------------------------------------------------
1269r51 | sam | 2003-11-10 01:15:02 +0100 (Mon, 10 Nov 2003) | 2 lines
1270Changed paths:
1271   M /trunk/configure.ac
1272   M /trunk/libee/Makefile.am
1273   M /trunk/src/Makefile.am
1274   M /trunk/test/Makefile.am
1275
1276  * Removed CPPFLAGS_slang and CPPFLAGS_ncurses, we now have config.h.
1277
1278------------------------------------------------------------------------
1279r50 | sam | 2003-11-10 00:34:24 +0100 (Mon, 10 Nov 2003) | 4 lines
1280Changed paths:
1281   M /trunk/src/aliens.c
1282   M /trunk/src/bonus.c
1283   M /trunk/src/box.c
1284   M /trunk/src/collide.c
1285   M /trunk/src/explosions.c
1286   M /trunk/src/main.c
1287   M /trunk/src/overlay.c
1288   M /trunk/src/player.c
1289   M /trunk/src/starfield.c
1290   M /trunk/src/tunnel.c
1291   M /trunk/src/weapons.c
1292
1293  * src/*.c:
1294    + Added missing #include "config.h".
1295    + Fixed a nasty bug in ee_rand() calls.
1296
1297------------------------------------------------------------------------
1298r49 | sam | 2003-11-10 00:01:29 +0100 (Mon, 10 Nov 2003) | 3 lines
1299Changed paths:
1300   M /trunk/test/demo.c
1301
1302  * test/demo.c:
1303    + Disabled the pyramid demo and wrote a simple triangles demo.
1304
1305------------------------------------------------------------------------
1306r48 | sam | 2003-11-09 22:36:24 +0100 (Sun, 09 Nov 2003) | 5 lines
1307Changed paths:
1308   M /trunk/libee/Makefile.am
1309   M /trunk/libee/ee.h
1310   A /trunk/libee/triangle.c
1311   M /trunk/test/Makefile.am
1312   M /trunk/test/demo.c
1313
1314  * libee/triangle.c:
1315    + Implemented ee_fill_triangle().
1316  * test/demo.c:
1317    + Triangle demo.
1318
1319------------------------------------------------------------------------
1320r47 | sam | 2003-11-09 20:46:14 +0100 (Sun, 09 Nov 2003) | 5 lines
1321Changed paths:
1322   M /trunk/libee/ee.h
1323   M /trunk/libee/line.c
1324   M /trunk/test/demo.c
1325
1326  * libee/line.c:
1327    + ee_draw_thin_line().
1328  * test/demo.c:
1329    + Added a thin lines demo.
1330
1331------------------------------------------------------------------------
1332r46 | sam | 2003-11-09 19:10:44 +0100 (Sun, 09 Nov 2003) | 2 lines
1333Changed paths:
1334   M /trunk/libee/line.c
1335
1336  * libee/line.c: genericized line drawing for future use.
1337
1338------------------------------------------------------------------------
1339r45 | sam | 2003-11-09 18:45:12 +0100 (Sun, 09 Nov 2003) | 6 lines
1340Changed paths:
1341   M /trunk/test
1342   M /trunk/test/demo.c
1343
1344  * test/demo.c:
1345    + Putpixel demo.
1346    + Draw line demo.
1347    + Draw circle demo.
1348    + Animated radar demo.
1349
1350------------------------------------------------------------------------
1351r44 | sam | 2003-11-09 18:21:43 +0100 (Sun, 09 Nov 2003) | 7 lines
1352Changed paths:
1353   M /trunk/libee/Makefile.am
1354   A /trunk/libee/circle.c (from /trunk/src/weapons.c:42)
1355   M /trunk/libee/ee.h
1356   M /trunk/libee/line.c
1357   M /trunk/src/weapons.c
1358
1359  * src/weapons.c:
1360    + Removed draw_circle, use ee_draw_circle instead.
1361  * libee/circle.c:
1362    + New ee_draw_circle function.
1363  * libee/line.c:
1364    + Changed an internal function's name.
1365
1366------------------------------------------------------------------------
1367r43 | sam | 2003-11-09 17:34:23 +0100 (Sun, 09 Nov 2003) | 2 lines
1368Changed paths:
1369   M /trunk/libee
1370   M /trunk/libee/Makefile.am
1371   M /trunk/libee/ee.h
1372   A /trunk/libee/line.c
1373
1374  * libee/line.c: Implemented ee_draw_line.
1375
1376------------------------------------------------------------------------
1377r42 | sam | 2003-11-09 14:52:40 +0100 (Sun, 09 Nov 2003) | 5 lines
1378Changed paths:
1379   M /trunk/libee/ee.c
1380   M /trunk/libee/ee.h
1381   M /trunk/test/demo.c
1382
1383  * libee/ee.c:
1384    + got rid of DELAY.
1385  * test/demo.c:
1386    + Minor animation effect.
1387
1388------------------------------------------------------------------------
1389r41 | sam | 2003-11-09 14:51:37 +0100 (Sun, 09 Nov 2003) | 2 lines
1390Changed paths:
1391   M /trunk/libee/math.c
1392
1393  * libee/math.c: fixed a thinko in ee_rand().
1394
1395------------------------------------------------------------------------
1396r40 | sam | 2003-11-09 14:32:04 +0100 (Sun, 09 Nov 2003) | 8 lines
1397Changed paths:
1398   M /trunk/libee/Makefile.am
1399   M /trunk/libee/ee.c
1400   M /trunk/libee/ee.h
1401   A /trunk/libee/io.c (from /trunk/libee/ee.c:37)
1402   A /trunk/libee/math.c
1403   M /trunk/src/Makefile.am
1404   M /trunk/src/aliens.c
1405   M /trunk/src/collide.c
1406   M /trunk/src/common.h
1407   M /trunk/src/explosions.c
1408   M /trunk/src/main.c
1409   D /trunk/src/math.c
1410   M /trunk/src/starfield.c
1411   M /trunk/src/tunnel.c
1412   M /trunk/src/weapons.c
1413
1414  * libee/io.c:
1415    + Moved ee_get_key() here.
1416  * libee/math.c:
1417    + Moved r00t() here and renamed it to ee_sqrt().
1418    + Moved GET_RAND() here and renamed it to ee_rand().
1419  * src/math.c:
1420    + Removed this deprecated file.
1421
1422------------------------------------------------------------------------
1423r39 | sam | 2003-11-09 14:16:19 +0100 (Sun, 09 Nov 2003) | 2 lines
1424Changed paths:
1425   M /trunk/src/aliens.c
1426   M /trunk/src/bonus.c
1427   M /trunk/src/box.c
1428   M /trunk/src/ceo.c
1429   M /trunk/src/collide.c
1430   M /trunk/src/common.h
1431   M /trunk/src/explosions.c
1432   M /trunk/src/main.c
1433   M /trunk/src/math.c
1434   M /trunk/src/overlay.c
1435   M /trunk/src/player.c
1436   M /trunk/src/starfield.c
1437   M /trunk/src/tunnel.c
1438   M /trunk/src/weapons.c
1439
1440  * Coding style everywhere.
1441
1442------------------------------------------------------------------------
1443r38 | sam | 2003-11-09 14:02:34 +0100 (Sun, 09 Nov 2003) | 5 lines
1444Changed paths:
1445   M /trunk/libee/Makefile.am
1446   M /trunk/test/Makefile.am
1447   A /trunk/test/demo.c
1448
1449  * libee/Makefile.am, test/Makefile.am:
1450    + Added more compiler warning flags.
1451  * test/demo.c:
1452    + Small demo for libee.
1453
1454------------------------------------------------------------------------
1455r37 | sam | 2003-11-09 14:01:44 +0100 (Sun, 09 Nov 2003) | 2 lines
1456Changed paths:
1457   M /trunk/libee/ee.c
1458
1459  * libee/ee.c: Fixed a compilation warning.
1460
1461------------------------------------------------------------------------
1462r36 | sam | 2003-11-09 13:48:09 +0100 (Sun, 09 Nov 2003) | 2 lines
1463Changed paths:
1464   M /trunk/libee/ee.c
1465
1466  * libee/ee.c: Exact line fill in ee_clear().
1467
1468------------------------------------------------------------------------
1469r35 | sam | 2003-11-09 13:40:53 +0100 (Sun, 09 Nov 2003) | 2 lines
1470Changed paths:
1471   M /trunk/libee/Makefile.am
1472   M /trunk/libee/ee.c
1473   A /trunk/libee/ee.h
1474   M /trunk/src/Makefile.am
1475   M /trunk/src/aliens.c
1476   M /trunk/src/bonus.c
1477   M /trunk/src/box.c
1478   M /trunk/src/ceo.c
1479   M /trunk/src/common.h
1480   M /trunk/src/explosions.c
1481   M /trunk/src/main.c
1482   M /trunk/src/overlay.c
1483   M /trunk/src/player.c
1484   M /trunk/src/starfield.c
1485   M /trunk/src/tunnel.c
1486   M /trunk/src/weapons.c
1487
1488  * libee is now standalone.
1489
1490------------------------------------------------------------------------
1491r34 | sam | 2003-11-09 13:02:42 +0100 (Sun, 09 Nov 2003) | 2 lines
1492Changed paths:
1493   M /trunk/Makefile.am
1494   M /trunk/configure.ac
1495   M /trunk/libee
1496   A /trunk/libee/Makefile.am
1497   M /trunk/src/Makefile.am
1498   A /trunk/test
1499   A /trunk/test/Makefile.am
1500
1501  * libee is now (almost) standalone.
1502
1503------------------------------------------------------------------------
1504r33 | sam | 2003-11-09 12:26:08 +0100 (Sun, 09 Nov 2003) | 7 lines
1505Changed paths:
1506   M /trunk/doc/shapes.txt
1507   A /trunk/libee
1508   A /trunk/libee/ee.c (from /trunk/src/graphics.c:31)
1509   M /trunk/src/Makefile.am
1510   M /trunk/src/ceo.c
1511   M /trunk/src/common.h
1512   D /trunk/src/graphics.c
1513   M /trunk/src/main.c
1514
1515  * libee/ee.c:
1516    + First file in libee, from src/graphics.c.
1517    + Disable cursor upon initialisation.
1518    + Added delay code for constant framerate.
1519  * src/common.h:
1520    + Minor compilation fix for latest ncurses.
1521
1522------------------------------------------------------------------------
1523r32 | sam | 2003-11-06 22:40:53 +0100 (Thu, 06 Nov 2003) | 2 lines
1524Changed paths:
1525   M /trunk/bootstrap
1526
1527  * bootstrap: always remove autom4te.cache.
1528
1529------------------------------------------------------------------------
1530r31 | sam | 2003-10-02 03:08:13 +0200 (Thu, 02 Oct 2003) | 2 lines
1531Changed paths:
1532   M /trunk
1533   M /trunk/autotools
1534   M /trunk/bootstrap
1535   M /trunk/configure.ac
1536   M /trunk/debian
1537   M /trunk/src
1538   M /trunk/src/aliens.c
1539   M /trunk/src/bonus.c
1540   M /trunk/src/box.c
1541   M /trunk/src/ceo.c
1542   M /trunk/src/collide.c
1543   M /trunk/src/common.h
1544   M /trunk/src/explosions.c
1545   M /trunk/src/graphics.c
1546   M /trunk/src/main.c
1547   M /trunk/src/math.c
1548   M /trunk/src/overlay.c
1549   M /trunk/src/player.c
1550   M /trunk/src/starfield.c
1551   M /trunk/src/tunnel.c
1552   M /trunk/src/weapons.c
1553
1554  * Fixed keywords, ignore, and lots of tiny SVN things.
1555
1556------------------------------------------------------------------------
1557r30 | sam | 2003-02-09 12:17:40 +0100 (Sun, 09 Feb 2003) | 3 lines
1558Changed paths:
1559   M /trunk/TODO
1560   M /trunk/src/Makefile.am
1561   A /trunk/src/box.c
1562   M /trunk/src/common.h
1563   M /trunk/src/main.c
1564   M /trunk/src/overlay.c
1565
1566  * support for boxes
1567  * application: pause box
1568
1569------------------------------------------------------------------------
1570r29 | sam | 2003-01-06 13:22:58 +0100 (Mon, 06 Jan 2003) | 3 lines
1571Changed paths:
1572   M /trunk/TODO
1573   M /trunk/src/collide.c
1574
1575  * cosmetic code changes.
1576  * fixed a bug in the tunnel munching.
1577
1578------------------------------------------------------------------------
1579r28 | sam | 2002-12-23 17:44:28 +0100 (Mon, 23 Dec 2002) | 3 lines
1580Changed paths:
1581   M /trunk/README
1582   M /trunk/TODO
1583   M /trunk/configure.ac
1584   M /trunk/src/weapons.c
1585
1586  * fixed the ncurses build.
1587  * replaced '?\239?\191?\189' with ':' in the fragbomb tail because it's not ASCII.
1588
1589------------------------------------------------------------------------
1590r27 | sam | 2002-12-23 17:21:38 +0100 (Mon, 23 Dec 2002) | 6 lines
1591Changed paths:
1592   M /trunk/configure.ac
1593   M /trunk/src/collide.c
1594   M /trunk/src/common.h
1595   M /trunk/src/graphics.c
1596   M /trunk/src/main.c
1597   M /trunk/src/overlay.c
1598   M /trunk/src/player.c
1599
1600  * new timestamp for a new snapshot.
1601  * lots of sanity checks in collide.c.
1602  * moved usleep() to graphics.c.
1603  * added random key generator in the dummy driver.
1604  * cosmetic changes in the energy bars.
1605
1606------------------------------------------------------------------------
1607r26 | sam | 2002-12-23 16:06:13 +0100 (Mon, 23 Dec 2002) | 4 lines
1608Changed paths:
1609   M /trunk/src/Makefile.am
1610   M /trunk/src/common.h
1611   M /trunk/src/main.c
1612   A /trunk/src/overlay.c
1613   M /trunk/src/player.c
1614
1615  * better handling of special weapon timeout.
1616  * the bomb is now part of the standard fire button effect.
1617  * overlay for life and special weapon jauges.
1618
1619------------------------------------------------------------------------
1620r25 | sam | 2002-12-23 14:46:27 +0100 (Mon, 23 Dec 2002) | 3 lines
1621Changed paths:
1622   M /trunk/src/aliens.c
1623   M /trunk/src/collide.c
1624   M /trunk/src/common.h
1625   M /trunk/src/main.c
1626   M /trunk/src/player.c
1627
1628  * aliens are now named foo, bar and baz.
1629  * beginning of life jauges.
1630
1631------------------------------------------------------------------------
1632r24 | sam | 2002-12-23 14:13:04 +0100 (Mon, 23 Dec 2002) | 2 lines
1633Changed paths:
1634   M /trunk/src/common.h
1635   M /trunk/src/main.c
1636   M /trunk/src/player.c
1637
1638  * ship has vx and vy.
1639
1640------------------------------------------------------------------------
1641r23 | sam | 2002-12-23 13:47:36 +0100 (Mon, 23 Dec 2002) | 2 lines
1642Changed paths:
1643   M /trunk/TODO
1644   M /trunk/src/main.c
1645   M /trunk/src/tunnel.c
1646
1647  * cosmetic change: reworked draw_tunnel.
1648
1649------------------------------------------------------------------------
1650r22 | sam | 2002-12-23 13:03:31 +0100 (Mon, 23 Dec 2002) | 3 lines
1651Changed paths:
1652   M /trunk/src/main.c
1653   M /trunk/src/tunnel.c
1654
1655  * lasers are now twice as fast.
1656  * walls are now filled, and displayed on top of aliens.
1657
1658------------------------------------------------------------------------
1659r21 | sam | 2002-12-23 11:06:27 +0100 (Mon, 23 Dec 2002) | 5 lines
1660Changed paths:
1661   M /trunk/configure.ac
1662   M /trunk/src/Makefile.am
1663   M /trunk/src/ceo.c
1664   M /trunk/src/common.h
1665   M /trunk/src/graphics.c
1666   M /trunk/src/main.c
1667   M /trunk/src/tunnel.c
1668
1669  * added support for --disable-slang.
1670  * fixed an overflow in the tunnel update code.
1671  * fragbomb is now 'f', not 'd'.
1672  * added a missing call to init_bonus().
1673
1674------------------------------------------------------------------------
1675r20 | sam | 2002-12-23 10:28:37 +0100 (Mon, 23 Dec 2002) | 5 lines
1676Changed paths:
1677   M /trunk/TODO
1678   M /trunk/src/collide.c
1679   M /trunk/src/common.h
1680   M /trunk/src/main.c
1681   M /trunk/src/starfield.c
1682   M /trunk/src/tunnel.c
1683   M /trunk/src/weapons.c
1684
1685  * the beam now digs the tunnel.
1686  * the starfield is now an array of stars.
1687  * fixed wall rendering (offset issues and disappearing left wall).
1688  * 32 seekers on fragbomb explosion, not 16.
1689
1690------------------------------------------------------------------------
1691r19 | sam | 2002-12-23 00:39:15 +0100 (Mon, 23 Dec 2002) | 3 lines
1692Changed paths:
1693   M /trunk/src/weapons.c
1694
1695  * seekers and homing bombs react more quickly.
1696  * 16 seekers on fragbomb explosion instead of 12.
1697
1698------------------------------------------------------------------------
1699r18 | sam | 2002-12-23 00:01:35 +0100 (Mon, 23 Dec 2002) | 3 lines
1700Changed paths:
1701   M /trunk/src/math.c
1702   M /trunk/src/weapons.c
1703
1704  * fixed a segfault when the target seeker speed was zero.
1705  * factorized the seeker generation on fragbomb explosion.
1706
1707------------------------------------------------------------------------
1708r17 | sam | 2002-12-22 23:36:42 +0100 (Sun, 22 Dec 2002) | 2 lines
1709Changed paths:
1710   M /trunk/src/Makefile.am
1711   M /trunk/src/common.h
1712   A /trunk/src/math.c
1713   M /trunk/src/weapons.c
1714
1715  * Removed the dependency on <math.h>. We don't need no stinking sqrt!
1716
1717------------------------------------------------------------------------
1718r16 | sam | 2002-12-22 23:17:41 +0100 (Sun, 22 Dec 2002) | 3 lines
1719Changed paths:
1720   M /trunk/doc/shapes.txt
1721   M /trunk/src/aliens.c
1722   M /trunk/src/ceo.c
1723   M /trunk/src/collide.c
1724   M /trunk/src/common.h
1725   M /trunk/src/main.c
1726   M /trunk/src/weapons.c
1727
1728  * dead aliens don't explode in the collision loop but in their update loop.
1729  * new super weapon, the fragmentation bomb.
1730
1731------------------------------------------------------------------------
1732r15 | sam | 2002-12-22 20:08:35 +0100 (Sun, 22 Dec 2002) | 2 lines
1733Changed paths:
1734   M /trunk/.cvsignore
1735   M /trunk/Makefile.am
1736   A /trunk/autotools
1737   A /trunk/autotools/.cvsignore
1738   A /trunk/autotools/Makefile.am
1739   M /trunk/bootstrap
1740   M /trunk/configure.ac
1741   M /trunk/debian/.cvsignore
1742   M /trunk/src/Makefile.am
1743
1744  * Moved generated autotools files to the autotools/ directory.
1745
1746------------------------------------------------------------------------
1747r14 | sam | 2002-12-22 19:44:12 +0100 (Sun, 22 Dec 2002) | 2 lines
1748Changed paths:
1749   M /trunk/src/aliens.c
1750   M /trunk/src/bonus.c
1751   M /trunk/src/ceo.c
1752   M /trunk/src/collide.c
1753   M /trunk/src/common.h
1754   M /trunk/src/explosions.c
1755   M /trunk/src/graphics.c
1756   M /trunk/src/main.c
1757   M /trunk/src/player.c
1758   M /trunk/src/starfield.c
1759   M /trunk/src/tunnel.c
1760   M /trunk/src/weapons.c
1761
1762  * I think I fucked up the $Id tags on my previous commit.
1763
1764------------------------------------------------------------------------
1765r13 | sam | 2002-12-22 19:42:32 +0100 (Sun, 22 Dec 2002) | 3 lines
1766Changed paths:
1767   A /trunk/COPYING
1768   M /trunk/src/aliens.c
1769   M /trunk/src/bonus.c
1770   M /trunk/src/ceo.c
1771   M /trunk/src/collide.c
1772   M /trunk/src/common.h
1773   M /trunk/src/explosions.c
1774   M /trunk/src/graphics.c
1775   M /trunk/src/main.c
1776   M /trunk/src/player.c
1777   M /trunk/src/starfield.c
1778   M /trunk/src/tunnel.c
1779   M /trunk/src/weapons.c
1780
1781  * added the COPYING file (GPLv2).
1782  * added GPL headers to source files.
1783
1784------------------------------------------------------------------------
1785r12 | sam | 2002-12-22 19:40:36 +0100 (Sun, 22 Dec 2002) | 2 lines
1786Changed paths:
1787   M /trunk/src/Makefile.am
1788   A /trunk/src/ceo.c
1789   M /trunk/src/common.h
1790   M /trunk/src/main.c
1791
1792  * tab == hotkey for CEO alert.
1793
1794------------------------------------------------------------------------
1795r11 | sam | 2002-12-18 19:44:47 +0100 (Wed, 18 Dec 2002) | 2 lines
1796Changed paths:
1797   M /trunk/TODO
1798   M /trunk/doc/shapes.txt
1799   M /trunk/src/aliens.c
1800
1801  * 3rd alien type.
1802
1803------------------------------------------------------------------------
1804r10 | sam | 2002-12-18 19:12:28 +0100 (Wed, 18 Dec 2002) | 2 lines
1805Changed paths:
1806   D /trunk/Makefile
1807
1808  * Scrapped Makefile.
1809
1810------------------------------------------------------------------------
1811r9 | sam | 2002-12-18 19:11:54 +0100 (Wed, 18 Dec 2002) | 2 lines
1812Changed paths:
1813   M /trunk/Makefile
1814   A /trunk/README
1815   A /trunk/TODO
1816
1817  * README and TODO files.
1818
1819------------------------------------------------------------------------
1820r8 | sam | 2002-12-18 14:29:31 +0100 (Wed, 18 Dec 2002) | 2 lines
1821Changed paths:
1822   M /trunk/Makefile
1823   M /trunk/configure.ac
1824   M /trunk/doc/shapes.txt
1825   M /trunk/src/collide.c
1826   M /trunk/src/weapons.c
1827
1828  * the bomb's head is now white
1829
1830------------------------------------------------------------------------
1831r7 | sam | 2002-12-15 18:16:45 +0100 (Sun, 15 Dec 2002) | 3 lines
1832Changed paths:
1833   M /trunk/doc/shapes.txt
1834   M /trunk/src/aliens.c
1835   M /trunk/src/collide.c
1836   M /trunk/src/common.h
1837   M /trunk/src/main.c
1838   M /trunk/src/weapons.c
1839
1840  * new weapon: bomb.
1841  * beam now collides with aliens.
1842
1843------------------------------------------------------------------------
1844r6 | sam | 2002-12-15 06:03:55 +0100 (Sun, 15 Dec 2002) | 2 lines
1845Changed paths:
1846   M /trunk/doc/shapes.txt
1847   M /trunk/src/common.h
1848   M /trunk/src/main.c
1849   M /trunk/src/weapons.c
1850
1851  * 'beam' weapon.
1852
1853------------------------------------------------------------------------
1854r5 | sam | 2002-12-15 04:41:32 +0100 (Sun, 15 Dec 2002) | 10 lines
1855Changed paths:
1856   M /trunk/Makefile
1857   M /trunk/configure.ac
1858   M /trunk/debian/changelog
1859   M /trunk/debian/control
1860   M /trunk/debian/rules
1861   M /trunk/doc/shapes.txt
1862   M /trunk/src/Makefile.am
1863   M /trunk/src/aliens.c
1864   A /trunk/src/bonus.c
1865   M /trunk/src/collide.c
1866   M /trunk/src/common.h
1867   M /trunk/src/explosions.c
1868   M /trunk/src/graphics.c
1869   M /trunk/src/main.c
1870   M /trunk/src/player.c
1871   M /trunk/src/starfield.c
1872   M /trunk/src/tunnel.c
1873   M /trunk/src/weapons.c
1874
1875  * real Debian package files.
1876  * two new types of aliens. only one rules.
1877  * removed gfx_write in favor of gfx_putchar and gfx_putstr.
1878  * added bonuses at alien death. they do nothing yet.
1879  * seeker missiles. 'b' to test.
1880  * weapon resolution is now 16*char. needs to be generalized.
1881  * fixed the supernova bugs. center could collide with the tunnel, and
1882    the last frame was badly displayed.
1883  * lots of cleanups everywhere.
1884
1885------------------------------------------------------------------------
1886r4 | sam | 2002-12-13 21:50:00 +0100 (Fri, 13 Dec 2002) | 2 lines
1887Changed paths:
1888   M /trunk/.cvsignore
1889   M /trunk/Makefile
1890   A /trunk/Makefile.am
1891   D /trunk/aliens.c
1892   A /trunk/bootstrap
1893   D /trunk/collide.c
1894   D /trunk/common.h
1895   A /trunk/configure.ac
1896   A /trunk/debian
1897   A /trunk/debian/.cvsignore
1898   A /trunk/debian/Makefile.am
1899   A /trunk/debian/changelog
1900   A /trunk/debian/control
1901   A /trunk/debian/rules
1902   A /trunk/doc
1903   A /trunk/doc/shapes.txt
1904   D /trunk/explosions.c
1905   D /trunk/graphics.c
1906   D /trunk/main.c
1907   D /trunk/player.c
1908   D /trunk/shapes.txt
1909   A /trunk/src
1910   A /trunk/src/.cvsignore
1911   A /trunk/src/Makefile.am
1912   A /trunk/src/aliens.c
1913   A /trunk/src/collide.c
1914   A /trunk/src/common.h
1915   A /trunk/src/explosions.c
1916   A /trunk/src/graphics.c
1917   A /trunk/src/main.c
1918   A /trunk/src/player.c
1919   A /trunk/src/starfield.c
1920   A /trunk/src/tunnel.c
1921   A /trunk/src/weapons.c
1922   D /trunk/starfield.c
1923   D /trunk/tunnel.c
1924   D /trunk/weapons.c
1925
1926  * autotoolificationized the whole thing.
1927
1928------------------------------------------------------------------------
1929r3 | sam | 2002-12-13 20:27:16 +0100 (Fri, 13 Dec 2002) | 4 lines
1930Changed paths:
1931   M /trunk/collide.c
1932   M /trunk/common.h
1933   M /trunk/explosions.c
1934   M /trunk/main.c
1935   M /trunk/player.c
1936   M /trunk/weapons.c
1937
1938  * moved nuke from explosions to weapons.
1939  * used a cool Bresenham algorithm to draw the nuke circles.
1940  * nuke collides with aliens.
1941
1942------------------------------------------------------------------------
1943r2 | sam | 2002-12-13 20:24:53 +0100 (Fri, 13 Dec 2002) | 2 lines
1944Changed paths:
1945   A /trunk/.cvsignore
1946
1947  * .cvsignore file.
1948
1949------------------------------------------------------------------------
1950r1 | sam | 2002-12-13 20:23:07 +0100 (Fri, 13 Dec 2002) | 3 lines
1951Changed paths:
1952   A /branches
1953   A /trunk
1954   A /trunk/Makefile
1955   A /trunk/aliens.c
1956   A /trunk/collide.c
1957   A /trunk/common.h
1958   A /trunk/explosions.c
1959   A /trunk/graphics.c
1960   A /trunk/main.c
1961   A /trunk/player.c
1962   A /trunk/shapes.txt
1963   A /trunk/starfield.c
1964   A /trunk/tunnel.c
1965   A /trunk/weapons.c
1966
1967  * First commit. Scrolling works, some weaponry, controls, tunnel blowing,
1968    the nuke is still ugly, almost no collision detection. Nice demo :)
1969
1970------------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.