You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

3490 lines
107 KiB

  1. ------------------------------------------------------------------------
  2. r258 | sam | 2004-01-26 11:52:30 +0100 (Mon, 26 Jan 2004) | 5 lines
  3. Changed paths:
  4. M /trunk/configure.ac
  5. M /trunk/debian/changelog
  6. M /trunk/src/caca.c
  7. M /trunk/src/event.c
  8. M /trunk/src/graphics.c
  9. * configure.ac:
  10. + Check for curses.h as well as ncurses.h.
  11. * src/caca.c src/event.c src/graphics.c:
  12. + Include curses.h if ncurses.h was not found.
  13. ------------------------------------------------------------------------
  14. r257 | sam | 2004-01-23 10:20:39 +0100 (Fri, 23 Jan 2004) | 3 lines
  15. Changed paths:
  16. M /trunk/examples/cacaview.c
  17. * examples/cacaview.c:
  18. + Moved statusbar and help menu handling in separate functions.
  19. ------------------------------------------------------------------------
  20. r256 | sam | 2004-01-23 10:15:42 +0100 (Fri, 23 Jan 2004) | 4 lines
  21. Changed paths:
  22. M /trunk/src/caca.c
  23. * src/caca.c:
  24. + Alloc the AllocConsole() call to fail in case the process already has
  25. a console.
  26. ------------------------------------------------------------------------
  27. r255 | sam | 2004-01-21 18:25:18 +0100 (Wed, 21 Jan 2004) | 6 lines
  28. Changed paths:
  29. M /trunk/examples/cacaview.c
  30. * examples/cacaview.c:
  31. + Proper aspect ratio support.
  32. + Finer zoom support.
  33. + Handle mouse clicks as next/prev picture command.
  34. + Removed useless iterations in draw_checkers().
  35. ------------------------------------------------------------------------
  36. r254 | sam | 2004-01-21 14:49:26 +0100 (Wed, 21 Jan 2004) | 8 lines
  37. Changed paths:
  38. M /trunk/THANKS
  39. M /trunk/src/event.c
  40. M /trunk/src/graphics.c
  41. * src/graphics.c:
  42. + Fixed a buffer overflow due to bad signed/unsigned handling.
  43. * src/event.c:
  44. + Disallow zero width or height in the X11 driver.
  45. + Fixed resizing in ncurses and slang.
  46. * THANKS:
  47. + Added the Source Mage maintainer.
  48. ------------------------------------------------------------------------
  49. r253 | sam | 2004-01-18 05:48:09 +0100 (Sun, 18 Jan 2004) | 2 lines
  50. Changed paths:
  51. A /branches/0.8 (from /trunk:252)
  52. M /branches/0.8/ChangeLog
  53. M /trunk/ChangeLog
  54. * 0.8 branch.
  55. ------------------------------------------------------------------------
  56. r252 | sam | 2004-01-18 05:45:28 +0100 (Sun, 18 Jan 2004) | 2 lines
  57. Changed paths:
  58. M /trunk/ChangeLog
  59. M /trunk/NEWS
  60. M /trunk/THANKS
  61. M /trunk/configure.ac
  62. M /trunk/debian/changelog
  63. M /trunk/libcaca.spec
  64. M /trunk/msvc/config.h
  65. * 0.8 release.
  66. ------------------------------------------------------------------------
  67. r251 | sam | 2004-01-18 05:17:35 +0100 (Sun, 18 Jan 2004) | 5 lines
  68. Changed paths:
  69. M /trunk/examples/cacaview.c
  70. M /trunk/src/event.c
  71. M /trunk/src/graphics.c
  72. * src/graphics.c:
  73. + When resizing under X11, copy the old pixmap to the new one.
  74. * examples/cacaview.c:
  75. + Resizing support.
  76. ------------------------------------------------------------------------
  77. r250 | sam | 2004-01-18 05:01:32 +0100 (Sun, 18 Jan 2004) | 5 lines
  78. Changed paths:
  79. M /trunk/src/caca_internals.h
  80. M /trunk/src/event.c
  81. M /trunk/src/graphics.c
  82. * src/event.c:
  83. + Refresh the X11 window when an exposure event is received.
  84. + When resizing the X11 window, start showing extra characters when two
  85. thirds are visible.
  86. ------------------------------------------------------------------------
  87. r249 | sam | 2004-01-17 23:32:39 +0100 (Sat, 17 Jan 2004) | 6 lines
  88. Changed paths:
  89. M /trunk/TODO
  90. M /trunk/examples/cacaview.c
  91. M /trunk/src/caca.h
  92. M /trunk/src/graphics.c
  93. * src/graphics.c:
  94. + Renamed caca_set_title() to caca_set_window_title().
  95. + Implemented caca_get_window_width() and caca_get_window_height().
  96. * examples/cacaview.c:
  97. + Set the window title to cacaview.
  98. ------------------------------------------------------------------------
  99. r248 | sam | 2004-01-14 11:34:20 +0100 (Wed, 14 Jan 2004) | 8 lines
  100. Changed paths:
  101. M /trunk/src/bitmap.c
  102. M /trunk/src/event.c
  103. * src/event.c:
  104. + Make sure the mouse coordinates stay within the screen boundaries even
  105. if the window was resized.
  106. * src/bitmap.c:
  107. + Fixed a buffer underflow in the rendering routine that caused the bottom
  108. and rightmost pixels to be missed in certain conditions.
  109. + Minor speed optimisation.
  110. ------------------------------------------------------------------------
  111. r247 | sam | 2004-01-14 11:32:04 +0100 (Wed, 14 Jan 2004) | 3 lines
  112. Changed paths:
  113. M /trunk/test
  114. M /trunk/test/Makefile.am
  115. A /trunk/test/colors.c (from /trunk/examples/demo.c:243)
  116. * test/colors.c:
  117. + Extracted the colour test from examples/demo.c.
  118. ------------------------------------------------------------------------
  119. r246 | sam | 2004-01-13 23:33:09 +0100 (Tue, 13 Jan 2004) | 5 lines
  120. Changed paths:
  121. M /trunk/src/caca_internals.h
  122. M /trunk/src/event.c
  123. M /trunk/src/graphics.c
  124. M /trunk/test/event.c
  125. * src/graphics.c src/event.c:
  126. + The ncurses and S-Lang drivers properly return CACA_EVENT_RESIZE.
  127. * test/event.c:
  128. + Display CACA_EVENT_RESIZE.
  129. ------------------------------------------------------------------------
  130. r245 | sam | 2004-01-13 22:08:43 +0100 (Tue, 13 Jan 2004) | 3 lines
  131. Changed paths:
  132. M /trunk/configure.ac
  133. M /trunk/msvc/config.h
  134. M /trunk/src/graphics.c
  135. * src/graphics.c:
  136. + Resize handling in the ncurses and slang drivers.
  137. ------------------------------------------------------------------------
  138. r244 | sam | 2004-01-13 21:03:48 +0100 (Tue, 13 Jan 2004) | 8 lines
  139. Changed paths:
  140. M /trunk/examples/aafire.c
  141. M /trunk/src/caca.h
  142. M /trunk/src/caca_internals.h
  143. M /trunk/src/event.c
  144. M /trunk/src/graphics.c
  145. * src/event.c:
  146. + Added the CACA_EVENT_RESIZE event.
  147. + Added caca_get_mouse_x() and caca_get_mouse_y().
  148. * src/graphics.c:
  149. + Window resize handling in the X11 driver.
  150. * examples/aafire.c:
  151. + Fixed a bad assumption in the resize handling code.
  152. ------------------------------------------------------------------------
  153. r243 | sam | 2004-01-13 17:45:45 +0100 (Tue, 13 Jan 2004) | 5 lines
  154. Changed paths:
  155. M /trunk/build-win32
  156. M /trunk/configure.ac
  157. M /trunk/debian/rules
  158. M /trunk/doc/Makefile.am
  159. M /trunk/libcaca.spec
  160. * configure.ac:
  161. + Added --disable-doc to let the user not build documentation.
  162. * build-win32:
  163. + Do not build documentation.
  164. ------------------------------------------------------------------------
  165. r242 | sam | 2004-01-13 16:01:22 +0100 (Tue, 13 Jan 2004) | 7 lines
  166. Changed paths:
  167. M /trunk/THANKS
  168. M /trunk/src/Makefile.am
  169. A /trunk/src/event.c (from /trunk/src/io.c:238)
  170. M /trunk/src/graphics.c
  171. D /trunk/src/io.c
  172. * src/graphics.c:
  173. + Fixed a typo preventing Win32 builds.
  174. * src/event.c:
  175. + Renamed io.c into event.c.
  176. * THANKS:
  177. + Added Gentoo, NetBSD and FreeBSD porters.
  178. ------------------------------------------------------------------------
  179. r241 | sam | 2004-01-13 10:55:32 +0100 (Tue, 13 Jan 2004) | 13 lines
  180. Changed paths:
  181. M /trunk/Makefile.am
  182. M /trunk/configure.ac
  183. M /trunk/examples/aafire.c
  184. M /trunk/examples/cacaview.c
  185. A /trunk/msvc
  186. A /trunk/msvc/Makefile.am
  187. A /trunk/msvc/cacaball.vcproj
  188. A /trunk/msvc/cacademo.vcproj
  189. A /trunk/msvc/cacafire.vcproj
  190. A /trunk/msvc/cacamoir.vcproj
  191. A /trunk/msvc/cacaplas.vcproj
  192. A /trunk/msvc/cacaview.vcproj
  193. A /trunk/msvc/config.h
  194. A /trunk/msvc/libcaca.sln
  195. A /trunk/msvc/libcaca.vcproj
  196. M /trunk/src/caca.c
  197. M /trunk/src/graphics.c
  198. M /trunk/src/time.c
  199. * configure.ac:
  200. + Check for sys/times.h and unistd.h.
  201. + Added calls to AC_C_CONST and AC_C_INLINE.
  202. * src/time.c src/graphics.c:
  203. + Fixes for MSVC compilation warnings.
  204. + Additional sanity checks in the Win32 driver.
  205. * src/caca.c:
  206. + Use raw()/noraw() in the curses driver instead of cbreak().
  207. * msvc/libcaca.sln:
  208. + Added an MSVC solution.
  209. * examples/aafire.c:
  210. + Slightly reduced the maximum cacafire framerate.
  211. ------------------------------------------------------------------------
  212. r240 | sam | 2004-01-12 18:30:09 +0100 (Mon, 12 Jan 2004) | 5 lines
  213. Changed paths:
  214. M /trunk/NOTES
  215. M /trunk/examples/cacaview.c
  216. M /trunk/src/caca.h
  217. M /trunk/src/graphics.c
  218. * src/graphics.c:
  219. + Implemented caca_set_title() for X11 and Win32.
  220. * examples/cacaview.c:
  221. + Use caca_set_title() to set the window title to "cacaview".
  222. ------------------------------------------------------------------------
  223. r239 | sam | 2004-01-12 17:22:35 +0100 (Mon, 12 Jan 2004) | 2 lines
  224. Changed paths:
  225. M /trunk/Makefile.am
  226. M /trunk/autotools/Makefile.am
  227. M /trunk/debian/Makefile.am
  228. M /trunk/doc/Makefile.am
  229. M /trunk/examples/Makefile.am
  230. M /trunk/src/Makefile.am
  231. M /trunk/test/Makefile.am
  232. * Fixed $Id in all Makefile.am files.
  233. ------------------------------------------------------------------------
  234. r238 | sam | 2004-01-12 17:21:34 +0100 (Mon, 12 Jan 2004) | 3 lines
  235. Changed paths:
  236. M /trunk/Makefile.am
  237. M /trunk/autotools/Makefile.am
  238. A /trunk/build-win32
  239. M /trunk/debian/Makefile.am
  240. M /trunk/doc/Makefile.am
  241. M /trunk/examples/Makefile.am
  242. M /trunk/src/Makefile.am
  243. M /trunk/test/Makefile.am
  244. * build-win32:
  245. + Win32 cross-compilation script.
  246. ------------------------------------------------------------------------
  247. r237 | sam | 2004-01-12 16:28:27 +0100 (Mon, 12 Jan 2004) | 5 lines
  248. Changed paths:
  249. M /trunk/NEWS
  250. M /trunk/debian/control
  251. M /trunk/debian/rules
  252. M /trunk/doc/Makefile.am
  253. M /trunk/doc/cacademo.1
  254. M /trunk/examples
  255. M /trunk/examples/Makefile.am
  256. D /trunk/examples/cacacirc.c
  257. A /trunk/examples/cacamoir.c (from /trunk/examples/cacacirc.c:236)
  258. M /trunk/libcaca.spec
  259. * examples/cacamoir.c:
  260. + Renamed cacacirc to cacamoir.
  261. * libcaca.spec debian/ doc/:
  262. + Added cacamoir to the distributed files.
  263. ------------------------------------------------------------------------
  264. r236 | sam | 2004-01-12 15:25:46 +0100 (Mon, 12 Jan 2004) | 8 lines
  265. Changed paths:
  266. M /trunk/examples
  267. M /trunk/examples/Makefile.am
  268. M /trunk/examples/cacaball.c
  269. A /trunk/examples/cacacirc.c
  270. M /trunk/examples/cacaplas.c
  271. * examples/cacaballs.c:
  272. + Bigger metaballs, less metaballs.
  273. + Rotating palette.
  274. * examples/cacaplas.c:
  275. + Slightly decreased speed.
  276. * examples/cacacirc.c:
  277. + New effect.
  278. ------------------------------------------------------------------------
  279. r235 | sam | 2004-01-12 15:01:40 +0100 (Mon, 12 Jan 2004) | 3 lines
  280. Changed paths:
  281. M /trunk/configure.ac
  282. M /trunk/src/time.c
  283. * configure.ac:
  284. + Better win32 check for Sleep().
  285. ------------------------------------------------------------------------
  286. r234 | sam | 2004-01-11 19:09:01 +0100 (Sun, 11 Jan 2004) | 5 lines
  287. Changed paths:
  288. M /trunk/configure.ac
  289. M /trunk/examples/cacaview.c
  290. M /trunk/src/time.c
  291. * configure.ac src/time.c:
  292. + Look for Sleep in -lkernel32.
  293. * examples/cacaview.c:
  294. + Use caca_wait_event() instead of usleep()/caca_get_event().
  295. ------------------------------------------------------------------------
  296. r233 | sam | 2004-01-11 06:09:02 +0100 (Sun, 11 Jan 2004) | 3 lines
  297. Changed paths:
  298. M /trunk/NOTES
  299. M /trunk/examples/cacaview.c
  300. M /trunk/src/caca.c
  301. M /trunk/src/caca_internals.h
  302. M /trunk/src/graphics.c
  303. M /trunk/src/io.c
  304. M /trunk/src/time.c
  305. * src/caca.c src/graphics.c src/io.c src/time.c:
  306. + Native win32 port.
  307. ------------------------------------------------------------------------
  308. r232 | sam | 2004-01-11 02:45:57 +0100 (Sun, 11 Jan 2004) | 10 lines
  309. Changed paths:
  310. M /trunk/configure.ac
  311. M /trunk/src/caca.c
  312. M /trunk/src/caca_internals.h
  313. M /trunk/src/graphics.c
  314. M /trunk/src/io.c
  315. M /trunk/src/time.c
  316. M /trunk/test/event.c
  317. * configure.ac:
  318. + Check for gettimeofday().
  319. * src/time.c:
  320. + Created _caca_time().
  321. + Ported _caca_getticks() to the Win32 API.
  322. * src/caca.c:
  323. + Properly builds on Win32.
  324. * test/event.c:
  325. + Added <stdlib.h> because we use malloc().
  326. ------------------------------------------------------------------------
  327. r231 | sam | 2004-01-10 20:59:50 +0100 (Sat, 10 Jan 2004) | 5 lines
  328. Changed paths:
  329. M /trunk/NEWS
  330. M /trunk/THANKS
  331. M /trunk/examples/cacaplas.c
  332. * THANKS examples/cacaplas.c:
  333. + Updated credits.
  334. * NEWS:
  335. + Forthcoming 0.8 news.
  336. ------------------------------------------------------------------------
  337. r230 | sam | 2004-01-10 20:53:14 +0100 (Sat, 10 Jan 2004) | 5 lines
  338. Changed paths:
  339. M /trunk/configure.ac
  340. M /trunk/examples
  341. M /trunk/examples/Makefile.am
  342. A /trunk/examples/cacaplas.c
  343. * configure.ac:
  344. + Check for -lm.
  345. * examples/cacaplas.c:
  346. + New demo, cacaplas, that displays a colour plasma.
  347. ------------------------------------------------------------------------
  348. r229 | sam | 2004-01-10 20:29:12 +0100 (Sat, 10 Jan 2004) | 12 lines
  349. Changed paths:
  350. M /trunk/src/caca.h
  351. M /trunk/src/graphics.c
  352. M /trunk/src/io.c
  353. M /trunk/test/event.c
  354. * src/graphics:
  355. + Initialise the char buffers in the X11 driver.
  356. * src/io.c:
  357. + caca_get_event() and caca_wait_event() immediately return zero if
  358. event_mask is zero.
  359. + Added support for the Home, End, PgUp and PgDown keys.
  360. + In the S-Lang driver, added a call to SLang_getkey() before the call to
  361. SLkp_getkey(), otherwise a single Escape call will not be interpreted.
  362. * test/event.c:
  363. + The "quit" sequence now quits the program, instead of "q" alone.
  364. + Added a status bar below.
  365. ------------------------------------------------------------------------
  366. r228 | sam | 2004-01-09 10:51:53 +0100 (Fri, 09 Jan 2004) | 16 lines
  367. Changed paths:
  368. M /trunk/BUGS
  369. M /trunk/NOTES
  370. M /trunk/README
  371. M /trunk/configure.ac
  372. M /trunk/src/Makefile.am
  373. M /trunk/src/caca.c
  374. M /trunk/src/caca_internals.h
  375. M /trunk/src/graphics.c
  376. M /trunk/src/io.c
  377. A /trunk/src/time.c
  378. M /trunk/test/event.c
  379. * test/event.c:
  380. + Do not refresh after each event, but only when there is no event
  381. pending.
  382. + If the pressed key is a printable character, display it.
  383. * src/time.c:
  384. + Moved _caca_getticks() to this file.
  385. * src/caca.c:
  386. + Set the escape delay to a very low value in the ncurses driver,
  387. because I don't want escape sequences to be entered manually.
  388. * src/io.c:
  389. + Autorepeat emulation in the ncurses and slang drivers: do not
  390. immediately send the key release event.
  391. * configure.ac:
  392. + Check for usleep.
  393. + Improvements in the win32 platform detection.
  394. ------------------------------------------------------------------------
  395. r227 | sam | 2004-01-08 19:40:29 +0100 (Thu, 08 Jan 2004) | 5 lines
  396. Changed paths:
  397. M /trunk/configure.ac
  398. M /trunk/src/graphics.c
  399. M /trunk/test/event.c
  400. * test/event.c:
  401. + Display at least two digits for keycodes.
  402. * configure.ac:
  403. + ScreenUpdate is actually mandatory for our conio driver.
  404. ------------------------------------------------------------------------
  405. r226 | sam | 2004-01-08 11:22:14 +0100 (Thu, 08 Jan 2004) | 10 lines
  406. Changed paths:
  407. M /trunk/src/graphics.c
  408. M /trunk/src/io.c
  409. M /trunk/test/event.c
  410. * src/io.c:
  411. + Use SLkp_getkey instead of SLang_getkey so that escape sequences are
  412. directly interpreted.
  413. + Major rehandling of the event code. All output drivers are now
  414. correctly separated.
  415. * src/graphics.c:
  416. + Fixed a compilation warning.
  417. * test/event.c:
  418. + More human-readable event printing.
  419. ------------------------------------------------------------------------
  420. r225 | sam | 2004-01-07 19:36:41 +0100 (Wed, 07 Jan 2004) | 2 lines
  421. Changed paths:
  422. A /branches/0.7 (from /trunk:224)
  423. M /branches/0.7/ChangeLog
  424. M /branches/0.7/libcaca.spec
  425. M /trunk/ChangeLog
  426. M /trunk/libcaca.spec
  427. * 0.7 branch.
  428. ------------------------------------------------------------------------
  429. r224 | sam | 2004-01-07 19:22:44 +0100 (Wed, 07 Jan 2004) | 3 lines
  430. Changed paths:
  431. M /trunk/configure.ac
  432. M /trunk/debian/changelog
  433. M /trunk/libcaca.spec
  434. * configure.ac:
  435. + Release 0.7.
  436. ------------------------------------------------------------------------
  437. r223 | sam | 2004-01-07 19:22:08 +0100 (Wed, 07 Jan 2004) | 3 lines
  438. Changed paths:
  439. M /trunk/src/bitmap.c
  440. * src/bitmap.c:
  441. + Fixed a bug in the dithering characters.
  442. ------------------------------------------------------------------------
  443. r222 | sam | 2004-01-07 19:15:10 +0100 (Wed, 07 Jan 2004) | 5 lines
  444. Changed paths:
  445. M /trunk/NEWS
  446. M /trunk/src/bitmap.c
  447. M /trunk/src/io.c
  448. * src/io.c:
  449. + Do not report mouse motions if the coordinates did not change.
  450. * src/bitmap.c:
  451. + More documentation.
  452. ------------------------------------------------------------------------
  453. r221 | sam | 2004-01-07 18:19:36 +0100 (Wed, 07 Jan 2004) | 8 lines
  454. Changed paths:
  455. M /trunk/configure.ac
  456. M /trunk/src/caca.c
  457. M /trunk/src/graphics.c
  458. M /trunk/src/io.c
  459. M /trunk/test
  460. M /trunk/test/Makefile.am
  461. A /trunk/test/event.c
  462. * test/event.c:
  463. + Small event lister, similar to X11's xev.
  464. * src/graphics.c:
  465. + If possible, disable autorepeat in the X11 driver.
  466. * src/io.c:
  467. + Implemented CACA_EVENT_MOUSE_RELEASE in all drivers.
  468. + Button number support in CACA_EVENT_MOUSE_{PRESS,RELEASE}.
  469. ------------------------------------------------------------------------
  470. r220 | sam | 2004-01-07 14:06:06 +0100 (Wed, 07 Jan 2004) | 5 lines
  471. Changed paths:
  472. M /trunk/debian/control
  473. M /trunk/debian/rules
  474. M /trunk/doc/Makefile.am
  475. D /trunk/doc/caca-spritedit.1
  476. M /trunk/examples/Makefile.am
  477. D /trunk/examples/spritedit.c
  478. M /trunk/libcaca.spec
  479. M /trunk/test/Makefile.am
  480. A /trunk/test/spritedit.c (from /trunk/examples/spritedit.c:213)
  481. * test/spritedit.c:
  482. + Moved spritedit to the test/ directory, because it is not mature enough.
  483. * libcaca.spec debian/control debian/rules:
  484. + Do not install caca-spritedit.
  485. ------------------------------------------------------------------------
  486. r219 | sam | 2004-01-07 13:45:02 +0100 (Wed, 07 Jan 2004) | 8 lines
  487. Changed paths:
  488. M /trunk/NEWS
  489. M /trunk/debian/control
  490. M /trunk/debian/rules
  491. M /trunk/doc/Makefile.am
  492. M /trunk/doc/cacademo.1
  493. M /trunk/libcaca.spec
  494. M /trunk/src/bitmap.c
  495. M /trunk/src/caca.c
  496. M /trunk/src/caca.h
  497. M /trunk/src/conic.c
  498. M /trunk/src/graphics.c
  499. M /trunk/src/io.c
  500. M /trunk/src/line.c
  501. M /trunk/src/sprite.c
  502. * libcaca.spec debian/control:
  503. + Updated the package descriptions to include cacaball.
  504. * doc/cacademo.1 doc/Makefile.am:
  505. + Use the cacademo manpage as the cacaball manpage.
  506. * src/:
  507. + Added #ifdef _DOXYGEN_SKIP_ME here and there to prvent Doxygen from
  508. documenting bizarre stuff.
  509. ------------------------------------------------------------------------
  510. r218 | sam | 2004-01-07 13:42:22 +0100 (Wed, 07 Jan 2004) | 4 lines
  511. Changed paths:
  512. M /trunk/examples/cacaball.c
  513. * examples/cacaball.c:
  514. + 24 metaballs instead of 5, but smaller.
  515. + Zoom the bitmap to make more use of the screen area.
  516. ------------------------------------------------------------------------
  517. r217 | sam | 2004-01-06 17:31:27 +0100 (Tue, 06 Jan 2004) | 5 lines
  518. Changed paths:
  519. M /trunk/AUTHORS
  520. M /trunk/THANKS
  521. M /trunk/examples/aafire.c
  522. M /trunk/examples/cacaball.c
  523. * examples/cacaball.c:
  524. + Crop the palette so that it looks a bit more like metaballs.
  525. * AUTHORS THANKS:
  526. + Credited Jylam and Jan Hubicka.
  527. ------------------------------------------------------------------------
  528. r216 | sam | 2004-01-06 13:46:25 +0100 (Tue, 06 Jan 2004) | 6 lines
  529. Changed paths:
  530. M /trunk/examples/cacaball.c
  531. * examples/cacaball.c:
  532. + Huge coding style overhaul.
  533. + Display 5 metaballs instead of 3.
  534. + Generate the palette instead of having a static one.
  535. + Use a 256x256 back buffer for more smoothness.
  536. ------------------------------------------------------------------------
  537. r215 | sam | 2004-01-06 11:12:22 +0100 (Tue, 06 Jan 2004) | 3 lines
  538. Changed paths:
  539. M /trunk/src/graphics.c
  540. * src/graphics.c:
  541. + Fixed a compilation warning.
  542. ------------------------------------------------------------------------
  543. r214 | sam | 2004-01-05 23:16:55 +0100 (Mon, 05 Jan 2004) | 3 lines
  544. Changed paths:
  545. M /trunk/examples
  546. M /trunk/examples/Makefile.am
  547. A /trunk/examples/cacaball.c
  548. * examples/cacaball.c:
  549. + Metaballs demo program from Jean-Yves Lamoureux <jylam@lnxscene.org>.
  550. ------------------------------------------------------------------------
  551. r213 | sam | 2004-01-05 19:17:20 +0100 (Mon, 05 Jan 2004) | 4 lines
  552. Changed paths:
  553. M /trunk/examples/aafire.c
  554. M /trunk/examples/cacaview.c
  555. M /trunk/examples/demo.c
  556. M /trunk/examples/spritedit.c
  557. M /trunk/src/caca.h
  558. M /trunk/src/io.c
  559. M /trunk/test/dithering.c
  560. M /trunk/test/hsv.c
  561. * src/io.c:
  562. + caca_get_event() and caca_wait_event() now accept a mask as an argument
  563. in order to select events.
  564. ------------------------------------------------------------------------
  565. r212 | sam | 2004-01-05 19:10:51 +0100 (Mon, 05 Jan 2004) | 4 lines
  566. Changed paths:
  567. M /trunk/src/graphics.c
  568. * src/graphics.c:
  569. + Fixed a bug that caused an infinite loop if the delay between two
  570. caca_refresh() calls was greater than 2000 seconds (or something).
  571. ------------------------------------------------------------------------
  572. r211 | sam | 2004-01-05 19:08:50 +0100 (Mon, 05 Jan 2004) | 5 lines
  573. Changed paths:
  574. M /trunk/examples/cacaview.c
  575. M /trunk/src/io.c
  576. * src/io.c:
  577. + Fixed a bug that caused ButtonRelease events to be forgotten under X11.
  578. * examples/cacaview.c:
  579. + Use <stdlib.h> instead of <malloc.h>.
  580. ------------------------------------------------------------------------
  581. r210 | sam | 2004-01-04 01:45:08 +0100 (Sun, 04 Jan 2004) | 6 lines
  582. Changed paths:
  583. M /trunk/configure.ac
  584. M /trunk/doc/Makefile.am
  585. * configure.ac:
  586. + Check for dvips in addition to latex.
  587. * doc/Makefile.am:
  588. + Workaround for a bug in the latex code generated by doxygen
  589. in Mandrake 9.1.
  590. ------------------------------------------------------------------------
  591. r209 | sam | 2004-01-04 01:19:53 +0100 (Sun, 04 Jan 2004) | 5 lines
  592. Changed paths:
  593. M /trunk/libcaca.spec
  594. * libcaca.spec:
  595. + Install documentation into %{doc}/package-version/ instead
  596. of %{doc}/package/.
  597. + Added tetex-dvips to the build dependencies.
  598. ------------------------------------------------------------------------
  599. r208 | sam | 2004-01-04 00:21:27 +0100 (Sun, 04 Jan 2004) | 2 lines
  600. Changed paths:
  601. A /branches/0.6 (from /trunk:207)
  602. M /branches/0.6/ChangeLog
  603. M /trunk/ChangeLog
  604. * 0.6 branch.
  605. ------------------------------------------------------------------------
  606. r207 | sam | 2004-01-04 00:15:48 +0100 (Sun, 04 Jan 2004) | 9 lines
  607. Changed paths:
  608. M /trunk/NEWS
  609. M /trunk/configure.ac
  610. M /trunk/debian/changelog
  611. M /trunk/debian/control
  612. M /trunk/debian/rules
  613. M /trunk/doc/Makefile.am
  614. M /trunk/libcaca.spec
  615. * configure.ac NEWS:
  616. + Prepared the 0.6 release.
  617. * libcaca.spec:
  618. + Split the RPM into libcaca-devel and caca-utils.
  619. + More detailed descriptions.
  620. + Packages are now rpmlint clean.
  621. * doc/Makefile.am:
  622. + Symlink cacafire.1 to cacademo.1 upon manpage installation.
  623. ------------------------------------------------------------------------
  624. r206 | sam | 2004-01-03 18:31:44 +0100 (Sat, 03 Jan 2004) | 3 lines
  625. Changed paths:
  626. M /trunk/configure.ac
  627. M /trunk/src/caca.c
  628. M /trunk/src/graphics.c
  629. M /trunk/src/io.c
  630. * configure.ac:
  631. + Search for <slang/slang.h> in addition of <slang.h>.
  632. ------------------------------------------------------------------------
  633. r205 | sam | 2004-01-03 15:33:35 +0100 (Sat, 03 Jan 2004) | 5 lines
  634. Changed paths:
  635. M /trunk/src/bitmap.c
  636. * src/bitmap.c:
  637. + Dither H/S/V when looking up the two nearest colours.
  638. + Weigh pixels in the distance calculation.
  639. + Factorised the lookup table calculation.
  640. ------------------------------------------------------------------------
  641. r204 | sam | 2004-01-03 15:28:39 +0100 (Sat, 03 Jan 2004) | 3 lines
  642. Changed paths:
  643. M /trunk/test
  644. M /trunk/test/Makefile.am
  645. A /trunk/test/hsv.c
  646. * test/hsv.c:
  647. + Trivial saturation/value rendering test.
  648. ------------------------------------------------------------------------
  649. r203 | sam | 2004-01-02 19:09:29 +0100 (Fri, 02 Jan 2004) | 5 lines
  650. Changed paths:
  651. M /trunk/src/bitmap.c
  652. M /trunk/src/caca.c
  653. M /trunk/src/caca_internals.h
  654. * src/bitmap.c:
  655. + Fixed a minor overflow in the saturation computation.
  656. + Use a global lookup table for foreground/background colour selection
  657. in the bitmap rendering routine. This broke dithering, sorry.
  658. ------------------------------------------------------------------------
  659. r202 | sam | 2004-01-02 17:52:10 +0100 (Fri, 02 Jan 2004) | 3 lines
  660. Changed paths:
  661. M /trunk/examples/aafire.c
  662. M /trunk/examples/cacaview.c
  663. M /trunk/src/bitmap.c
  664. M /trunk/src/caca.c
  665. M /trunk/src/caca.h
  666. M /trunk/src/graphics.c
  667. M /trunk/src/line.c
  668. M /trunk/src/sprite.c
  669. M /trunk/test/optipal.c
  670. * src/ examples/ test/:
  671. + Changed <const type> constructs into <type const>.
  672. ------------------------------------------------------------------------
  673. r201 | sam | 2004-01-02 16:35:53 +0100 (Fri, 02 Jan 2004) | 4 lines
  674. Changed paths:
  675. M /trunk/examples/aafire.c
  676. * examples/aafire.c:
  677. + Do not call caca_get_width() 10000 times per frame. Cache the value
  678. instead.
  679. ------------------------------------------------------------------------
  680. r200 | sam | 2004-01-02 16:34:16 +0100 (Fri, 02 Jan 2004) | 4 lines
  681. Changed paths:
  682. M /trunk/src/graphics.c
  683. * src/graphics.c:
  684. + Split the drawing of foreground and background colours in the X11
  685. driver. Nice performance improvement.
  686. ------------------------------------------------------------------------
  687. r199 | sam | 2004-01-02 16:23:54 +0100 (Fri, 02 Jan 2004) | 3 lines
  688. Changed paths:
  689. M /trunk/examples/cacaview.c
  690. * examples/cacaview.c:
  691. + If Imlib2 was not activated, warn the user that only BMP is supported.
  692. ------------------------------------------------------------------------
  693. r198 | sam | 2004-01-01 19:21:13 +0100 (Thu, 01 Jan 2004) | 5 lines
  694. Changed paths:
  695. M /trunk/AUTHORS
  696. M /trunk/Makefile.am
  697. A /trunk/THANKS
  698. A /trunk/libcaca.spec
  699. * libcaca.spec:
  700. + RPM specfile, courtesy of Richard Zidlicky.
  701. * THANKS:
  702. + Added a THANKS file for contributors.
  703. ------------------------------------------------------------------------
  704. r197 | sam | 2004-01-01 18:51:57 +0100 (Thu, 01 Jan 2004) | 10 lines
  705. Changed paths:
  706. M /trunk/README
  707. M /trunk/src/caca.c
  708. M /trunk/src/graphics.c
  709. * src/graphics.c:
  710. + Minor optimisation in caca_set_color().
  711. + Added an X11 error handler to avoid BadFont aborts in the X11 driver.
  712. + Optimised the X11 caca_refresh() routine by handling strings of the
  713. same colour as one text chunk.
  714. * src/caca.c:
  715. + Bugfix in caca_init when conio is the only compiled-in driver.
  716. * README:
  717. + Minor documentation updates.
  718. ------------------------------------------------------------------------
  719. r196 | sam | 2004-01-01 17:29:50 +0100 (Thu, 01 Jan 2004) | 5 lines
  720. Changed paths:
  721. M /trunk/examples/aafire.c
  722. M /trunk/examples/cacaview.c
  723. * examples/cacaview.c:
  724. + Use sprintf() instead of snprintf() so that cacaview builds with DJGPP.
  725. * examples/aafire.c:
  726. + bzero the pixel buffer in the initialisation routine.
  727. ------------------------------------------------------------------------
  728. r195 | sam | 2003-12-31 15:21:08 +0100 (Wed, 31 Dec 2003) | 5 lines
  729. Changed paths:
  730. M /trunk/doc/doxygen.cfg.in
  731. M /trunk/src/bitmap.c
  732. M /trunk/src/box.c
  733. M /trunk/src/caca.h
  734. M /trunk/src/conic.c
  735. M /trunk/src/graphics.c
  736. M /trunk/src/io.c
  737. M /trunk/src/line.c
  738. M /trunk/src/math.c
  739. M /trunk/src/triangle.c
  740. * doc/doxygen.cfg.in:
  741. + Removed caca_internal.h from the list of documented files.
  742. * src/:
  743. + Minor documentation updates.
  744. ------------------------------------------------------------------------
  745. r194 | sam | 2003-12-31 14:55:34 +0100 (Wed, 31 Dec 2003) | 9 lines
  746. Changed paths:
  747. M /trunk/BUGS
  748. M /trunk/debian/rules
  749. M /trunk/doc/Makefile.am
  750. M /trunk/test/dithering.c
  751. * test/dithering.c:
  752. + Fixed a minor compilation warning.
  753. * debian/rules:
  754. + Explicitely use --enable-imlib2.
  755. * BUGS:
  756. + Added a note about blinking consoles.
  757. * doc/Makefile.am:
  758. + Fixed a bashism in the HTML files installation.
  759. ------------------------------------------------------------------------
  760. r193 | sam | 2003-12-31 14:32:14 +0100 (Wed, 31 Dec 2003) | 4 lines
  761. Changed paths:
  762. M /trunk/doc/Makefile.am
  763. * doc/Makefile.am:
  764. + Do not install doxygen.png directly, because it can be doxygen.gif on
  765. old installations.
  766. ------------------------------------------------------------------------
  767. r192 | sam | 2003-12-31 14:26:47 +0100 (Wed, 31 Dec 2003) | 3 lines
  768. Changed paths:
  769. M /trunk/examples/aafire.c
  770. * examples/aafire.c:
  771. + Only quit upon keypress, not mouse motion.
  772. ------------------------------------------------------------------------
  773. r191 | sam | 2003-12-31 14:24:46 +0100 (Wed, 31 Dec 2003) | 3 lines
  774. Changed paths:
  775. M /trunk/examples/aafire.c
  776. * examples/aafire.c:
  777. + Render cacafire at full speed.
  778. ------------------------------------------------------------------------
  779. r190 | sam | 2003-12-31 14:20:18 +0100 (Wed, 31 Dec 2003) | 6 lines
  780. Changed paths:
  781. M /trunk/src/graphics.c
  782. M /trunk/test
  783. M /trunk/test/Makefile.am
  784. A /trunk/test/optipal.c
  785. * test/optipal.c:
  786. + Optimised S-Lang palette generator.
  787. * src/graphics:
  788. + Removed the S-Lang palette generator and replaced it with the tables
  789. generated by optipal.
  790. ------------------------------------------------------------------------
  791. r189 | sam | 2003-12-31 13:26:22 +0100 (Wed, 31 Dec 2003) | 5 lines
  792. Changed paths:
  793. M /trunk/Makefile.am
  794. M /trunk/configure.ac
  795. M /trunk/examples/Makefile.am
  796. A /trunk/test
  797. A /trunk/test/Makefile.am
  798. A /trunk/test/dithering.c
  799. * Makefile.am:
  800. + Added a test directory for test programs.
  801. * test/dithering.c:
  802. + The value/saturation dithering example.
  803. ------------------------------------------------------------------------
  804. r188 | sam | 2003-12-31 13:05:44 +0100 (Wed, 31 Dec 2003) | 5 lines
  805. Changed paths:
  806. M /trunk/examples/cacaview.c
  807. M /trunk/src/caca.c
  808. * src/caca.c:
  809. + Do not try the X11 driver if DISPLAY is set to the empty string.
  810. * examples/cacaview.c:
  811. + Cosmetic fixes.
  812. ------------------------------------------------------------------------
  813. r187 | sam | 2003-12-31 13:00:18 +0100 (Wed, 31 Dec 2003) | 3 lines
  814. Changed paths:
  815. M /trunk/examples/Makefile.am
  816. A /trunk/examples/cacaview.c (from /trunk/examples/view.c:182)
  817. D /trunk/examples/view.c
  818. * example/:
  819. + Renamed view.c into cacaview.c.
  820. ------------------------------------------------------------------------
  821. r186 | sam | 2003-12-31 12:17:47 +0100 (Wed, 31 Dec 2003) | 3 lines
  822. Changed paths:
  823. M /trunk/src/io.c
  824. * src/io.c:
  825. + Fixed mouse support under ncurses and slang.
  826. ------------------------------------------------------------------------
  827. r185 | sam | 2003-12-31 12:17:00 +0100 (Wed, 31 Dec 2003) | 3 lines
  828. Changed paths:
  829. M /trunk/configure.ac
  830. * configure.ac:
  831. + Error out if Imlib2 was not found. Override with --disable-imlib2.
  832. ------------------------------------------------------------------------
  833. r184 | sam | 2003-12-31 02:16:47 +0100 (Wed, 31 Dec 2003) | 6 lines
  834. Changed paths:
  835. M /trunk/doc
  836. M /trunk/examples/demo.c
  837. M /trunk/src/caca.h
  838. M /trunk/src/io.c
  839. * src/io.c:
  840. + Mouse support under X11.
  841. + Split the mouse motion and mouse click events.
  842. * examples/demo.c:
  843. + Mouse motion support.
  844. ------------------------------------------------------------------------
  845. r183 | sam | 2003-12-31 02:02:08 +0100 (Wed, 31 Dec 2003) | 5 lines
  846. Changed paths:
  847. M /trunk/src/caca.c
  848. M /trunk/src/graphics.c
  849. * src/graphics.c:
  850. + Compilation fix.
  851. * src/caca.c:
  852. + Minor indentation fix.
  853. ------------------------------------------------------------------------
  854. r182 | sam | 2003-12-26 00:59:48 +0100 (Fri, 26 Dec 2003) | 6 lines
  855. Changed paths:
  856. M /trunk/configure.ac
  857. M /trunk/src/caca.c
  858. * src/caca.c:
  859. + Prefer the X11 driver if $DISPLAY is set.
  860. + The slang driver is now preferred over the ncurses driver.
  861. * configure.ac:
  862. + Autodetect conio.h.
  863. ------------------------------------------------------------------------
  864. r181 | sam | 2003-12-26 00:22:13 +0100 (Fri, 26 Dec 2003) | 4 lines
  865. Changed paths:
  866. M /trunk/configure.ac
  867. * configure.ac:
  868. + Autodetect ncurses, slang and X11.
  869. + Abort if no output driver was selected or detected.
  870. ------------------------------------------------------------------------
  871. r180 | sam | 2003-12-25 22:38:46 +0100 (Thu, 25 Dec 2003) | 2 lines
  872. Changed paths:
  873. A /branches/0.5 (from /trunk:179)
  874. M /branches/0.5/ChangeLog
  875. M /trunk/ChangeLog
  876. * 0.5 branch.
  877. ------------------------------------------------------------------------
  878. r179 | sam | 2003-12-25 22:36:52 +0100 (Thu, 25 Dec 2003) | 3 lines
  879. Changed paths:
  880. M /trunk/NEWS
  881. M /trunk/configure.ac
  882. M /trunk/debian/changelog
  883. * configure.ac NEWS debian/changelog:
  884. + New 0.5 release.
  885. ------------------------------------------------------------------------
  886. r178 | sam | 2003-12-25 22:28:55 +0100 (Thu, 25 Dec 2003) | 5 lines
  887. Changed paths:
  888. M /trunk/BUGS
  889. M /trunk/NOTES
  890. M /trunk/configure.ac
  891. M /trunk/src/graphics.c
  892. * NOTES BUGS:
  893. + Updated information about the S-Lang colour pair shortage bug.
  894. * src/graphics.c:
  895. + Implemented the solution explained in NOTES.
  896. ------------------------------------------------------------------------
  897. r177 | sam | 2003-12-25 19:09:58 +0100 (Thu, 25 Dec 2003) | 3 lines
  898. Changed paths:
  899. M /trunk/src/caca.c
  900. * src/caca.c:
  901. + Fixed a compilation bug reported by Thomas Klausner <wiz@NetBSD.org>.
  902. ------------------------------------------------------------------------
  903. r176 | sam | 2003-12-25 19:08:46 +0100 (Thu, 25 Dec 2003) | 3 lines
  904. Changed paths:
  905. M /trunk/NOTES
  906. * NOTES:
  907. + Added a section with a proposed solution to the slang problem.
  908. ------------------------------------------------------------------------
  909. r175 | sam | 2003-12-25 11:18:37 +0100 (Thu, 25 Dec 2003) | 2 lines
  910. Changed paths:
  911. A /branches/0.4 (from /trunk:174)
  912. M /branches/0.4/ChangeLog
  913. M /trunk/ChangeLog
  914. * 0.4 branch.
  915. ------------------------------------------------------------------------
  916. r174 | sam | 2003-12-25 00:58:32 +0100 (Thu, 25 Dec 2003) | 5 lines
  917. Changed paths:
  918. M /trunk/configure.ac
  919. M /trunk/debian/control
  920. * debian/control:
  921. + Added missing dependencies to the -dev package.
  922. * configure.ac:
  923. + Kludge for woody builds where x_includes is undefined.
  924. ------------------------------------------------------------------------
  925. r173 | sam | 2003-12-24 17:23:37 +0100 (Wed, 24 Dec 2003) | 3 lines
  926. Changed paths:
  927. M /trunk/src/caca.h
  928. * src/caca.h:
  929. + Documented CACA_FONT.
  930. ------------------------------------------------------------------------
  931. r172 | sam | 2003-12-24 17:16:16 +0100 (Wed, 24 Dec 2003) | 3 lines
  932. Changed paths:
  933. M /trunk/doc/Makefile.am
  934. * doc/Makefile.am:
  935. + Rename the refman.ps doxygen documentation to libcaca.ps.
  936. ------------------------------------------------------------------------
  937. r171 | sam | 2003-12-24 16:43:45 +0100 (Wed, 24 Dec 2003) | 5 lines
  938. Changed paths:
  939. M /trunk/NEWS
  940. M /trunk/src/caca.h
  941. M /trunk/src/graphics.c
  942. * src/graphics.c:
  943. + Replace CACA_WIDTH and CACA_HEIGHT with CACA_GEOMETRY.
  944. * src/caca.c:
  945. + Documented the CACA_GEOMETRY environment variable.
  946. ------------------------------------------------------------------------
  947. r170 | sam | 2003-12-24 16:35:07 +0100 (Wed, 24 Dec 2003) | 3 lines
  948. Changed paths:
  949. M /trunk/src/caca_internals.h
  950. M /trunk/src/graphics.c
  951. M /trunk/src/io.c
  952. * src/io.c:
  953. + Mouse support in the X11 driver.
  954. ------------------------------------------------------------------------
  955. r169 | sam | 2003-12-24 15:48:38 +0100 (Wed, 24 Dec 2003) | 4 lines
  956. Changed paths:
  957. M /trunk/src/graphics.c
  958. * src/graphics:
  959. + Use XCreateWindow instead of XCreateSimpleWindow.
  960. + Set the X window title to "caca for X".
  961. ------------------------------------------------------------------------
  962. r168 | sam | 2003-12-23 18:25:29 +0100 (Tue, 23 Dec 2003) | 4 lines
  963. Changed paths:
  964. M /trunk/debian/changelog
  965. M /trunk/debian/control
  966. M /trunk/debian/rules
  967. * debian/control:
  968. + Build-depend on doxygen and tetex to build documentation.
  969. + Build-depend on xlibs-dev and slang1-dev to provide alternate drivers.
  970. ------------------------------------------------------------------------
  971. r167 | sam | 2003-12-23 18:01:38 +0100 (Tue, 23 Dec 2003) | 7 lines
  972. Changed paths:
  973. M /trunk/BUGS
  974. M /trunk/Makefile.am
  975. M /trunk/NEWS
  976. M /trunk/README
  977. M /trunk/TODO
  978. M /trunk/configure.ac
  979. M /trunk/doc/Makefile.am
  980. M /trunk/src/graphics.c
  981. * configure.ac NEWS:
  982. + Prepared release 0.4.
  983. * src/graphics.c README BUGS TODO:
  984. + Updated documentation.
  985. * Makefile.am doc/Makefile.am:
  986. + Install the generated doxygen documentation.
  987. ------------------------------------------------------------------------
  988. r166 | sam | 2003-12-23 17:32:56 +0100 (Tue, 23 Dec 2003) | 4 lines
  989. Changed paths:
  990. M /trunk/src/io.c
  991. * src/io.c:
  992. + Fixed a warning by including <unistd.h>.
  993. + Support for arrow and function keys under X11.
  994. ------------------------------------------------------------------------
  995. r165 | sam | 2003-12-23 14:27:40 +0100 (Tue, 23 Dec 2003) | 9 lines
  996. Changed paths:
  997. M /trunk/configure.ac
  998. M /trunk/doc/Makefile.am
  999. D /trunk/doc/doxygen.cfg
  1000. A /trunk/doc/doxygen.cfg.in (from /trunk/doc/doxygen.cfg:164)
  1001. M /trunk/examples/aafire.c
  1002. M /trunk/examples/demo.c
  1003. M /trunk/examples/spritedit.c
  1004. M /trunk/examples/view.c
  1005. M /trunk/src/bitmap.c
  1006. M /trunk/src/box.c
  1007. M /trunk/src/caca.c
  1008. M /trunk/src/caca.h
  1009. M /trunk/src/caca_internals.h
  1010. M /trunk/src/conic.c
  1011. M /trunk/src/graphics.c
  1012. M /trunk/src/io.c
  1013. M /trunk/src/line.c
  1014. M /trunk/src/math.c
  1015. M /trunk/src/sprite.c
  1016. M /trunk/src/triangle.c
  1017. * src/io.c:
  1018. + Added caca_wait_event(), a blocking caca_get_event().
  1019. * src/ examples/:
  1020. + More documentation.
  1021. * doc/doxygen.cfg.in:
  1022. + doc/doxygen.cfg is now generated by configure, so that we can use
  1023. @top_srcdir@ and we no longer need to hardcode PROJECT_NUMBER.
  1024. + Create manpages.
  1025. ------------------------------------------------------------------------
  1026. r164 | sam | 2003-12-23 12:08:37 +0100 (Tue, 23 Dec 2003) | 2 lines
  1027. Changed paths:
  1028. M /trunk/doc/doxygen.cfg
  1029. M /trunk/src/bitmap.c
  1030. M /trunk/src/caca.c
  1031. M /trunk/src/caca.h
  1032. * More API documentation.
  1033. ------------------------------------------------------------------------
  1034. r163 | sam | 2003-12-22 23:58:24 +0100 (Mon, 22 Dec 2003) | 3 lines
  1035. Changed paths:
  1036. M /trunk/src/caca.c
  1037. * caca.c:
  1038. + Fixed typos in the initialisation code.
  1039. ------------------------------------------------------------------------
  1040. r162 | sam | 2003-12-22 16:26:12 +0100 (Mon, 22 Dec 2003) | 6 lines
  1041. Changed paths:
  1042. M /trunk/configure.ac
  1043. M /trunk/src/bitmap.c
  1044. M /trunk/src/caca.c
  1045. M /trunk/src/caca.h
  1046. M /trunk/src/caca_internals.h
  1047. M /trunk/src/conic.c
  1048. M /trunk/src/graphics.c
  1049. M /trunk/src/io.c
  1050. M /trunk/src/line.c
  1051. * src/graphics.c src/caca.c src/io.c:
  1052. + Support for simultaneously compiled-in drivers.
  1053. + Honour the CACA_DRIVER environment variable.
  1054. * configure.ac:
  1055. + Drivers are no longer mutually exclusive.
  1056. ------------------------------------------------------------------------
  1057. r161 | sam | 2003-12-21 01:39:41 +0100 (Sun, 21 Dec 2003) | 3 lines
  1058. Changed paths:
  1059. M /trunk/src/graphics.c
  1060. * src/graphics:
  1061. + Initialise default height at 32 (as in aalib).
  1062. ------------------------------------------------------------------------
  1063. r160 | sam | 2003-12-20 13:07:56 +0100 (Sat, 20 Dec 2003) | 5 lines
  1064. Changed paths:
  1065. M /trunk/src/caca_internals.h
  1066. M /trunk/src/graphics.c
  1067. M /trunk/src/io.c
  1068. * src/graphics.c:
  1069. + Support for CACA_WIDTH, CACA_HEIGHT and CACA_FONT in the x11 driver.
  1070. + Use an intermediary X pixmap for rendering.
  1071. + Slightly changed the variable naming scheme.
  1072. ------------------------------------------------------------------------
  1073. r159 | sam | 2003-12-20 11:54:35 +0100 (Sat, 20 Dec 2003) | 3 lines
  1074. Changed paths:
  1075. M /trunk/examples/aafire.c
  1076. * examples/aafire.c:
  1077. + The image buffer in cacafire was too small.
  1078. ------------------------------------------------------------------------
  1079. r158 | sam | 2003-12-19 18:26:23 +0100 (Fri, 19 Dec 2003) | 4 lines
  1080. Changed paths:
  1081. M /trunk/src/graphics.c
  1082. * src/graphics.c:
  1083. + Progress in the X11 driver.
  1084. + Fixed a compilation bug in the conio driver.
  1085. ------------------------------------------------------------------------
  1086. r157 | sam | 2003-12-18 10:46:19 +0100 (Thu, 18 Dec 2003) | 4 lines
  1087. Changed paths:
  1088. M /trunk/debian/changelog
  1089. M /trunk/debian/control
  1090. M /trunk/debian/rules
  1091. * debian/rules debian/control:
  1092. + Moved cacafire to the caca-utils package. Added proper conflict/replace.
  1093. + Symlinked cacafire.1 to cacademo.1.
  1094. ------------------------------------------------------------------------
  1095. r155 | sam | 2003-12-18 01:41:28 +0100 (Thu, 18 Dec 2003) | 7 lines
  1096. Changed paths:
  1097. M /trunk/ChangeLog
  1098. M /trunk/NEWS
  1099. M /trunk/README
  1100. M /trunk/debian/changelog
  1101. M /trunk/debian/control
  1102. M /trunk/doc/doxygen.cfg
  1103. * debian/control:
  1104. + Updated long descriptions.
  1105. * debian/changelog ChangeLog doc/doxygen.cfg NEWS:
  1106. + Prepared 0.3 release.
  1107. * README:
  1108. + --enable-ncurses is now the default.
  1109. ------------------------------------------------------------------------
  1110. r154 | sam | 2003-12-18 01:11:52 +0100 (Thu, 18 Dec 2003) | 3 lines
  1111. Changed paths:
  1112. M /trunk/src/bitmap.c
  1113. M /trunk/src/box.c
  1114. M /trunk/src/caca.c
  1115. M /trunk/src/caca.h
  1116. M /trunk/src/conic.c
  1117. M /trunk/src/graphics.c
  1118. M /trunk/src/io.c
  1119. M /trunk/src/line.c
  1120. M /trunk/src/math.c
  1121. M /trunk/src/sprite.c
  1122. M /trunk/src/triangle.c
  1123. * src/:
  1124. + Doxygenated public functions.
  1125. ------------------------------------------------------------------------
  1126. r153 | sam | 2003-12-17 16:03:05 +0100 (Wed, 17 Dec 2003) | 3 lines
  1127. Changed paths:
  1128. M /trunk/src/caca.h
  1129. * src/caca.h:
  1130. + Documented environment variables.
  1131. ------------------------------------------------------------------------
  1132. r152 | sam | 2003-12-17 00:25:54 +0100 (Wed, 17 Dec 2003) | 4 lines
  1133. Changed paths:
  1134. M /trunk/examples/view.c
  1135. * examples/view.c:
  1136. + Fixed a bug in the loading of 1bpp BMPs.
  1137. + Commented stuff.
  1138. ------------------------------------------------------------------------
  1139. r151 | sam | 2003-12-17 00:06:54 +0100 (Wed, 17 Dec 2003) | 7 lines
  1140. Changed paths:
  1141. M /trunk/examples/Makefile.am
  1142. M /trunk/examples/view.c
  1143. * examples/view.c:
  1144. + If Imlib2 is not available, use a custom simple BMP loader.
  1145. + Draw the bottom bar one line higher to leave room for a status line.
  1146. + '?' now properly toggles help.
  1147. * examples/Makefile.am:
  1148. + Always build cacaview.
  1149. ------------------------------------------------------------------------
  1150. r150 | sam | 2003-12-16 10:06:46 +0100 (Tue, 16 Dec 2003) | 5 lines
  1151. Changed paths:
  1152. M /trunk/configure.ac
  1153. M /trunk/src/bitmap.c
  1154. * src/bitmap.c:
  1155. + If the alpha palette is all-zero, forget the alpha channel.
  1156. * configure.ac:
  1157. + Export HAVE_IMLIB2_H and the like.
  1158. ------------------------------------------------------------------------
  1159. r149 | sam | 2003-12-15 16:02:50 +0100 (Mon, 15 Dec 2003) | 4 lines
  1160. Changed paths:
  1161. M /trunk/src/bitmap.c
  1162. * src/bitmap.c:
  1163. + If the alpha mask is 0, ignore alpha information.
  1164. + Ditto if no alpha information is given with the palette.
  1165. ------------------------------------------------------------------------
  1166. r148 | sam | 2003-12-15 11:38:03 +0100 (Mon, 15 Dec 2003) | 4 lines
  1167. Changed paths:
  1168. M /trunk/configure.ac
  1169. M /trunk/src/caca.c
  1170. M /trunk/src/caca_internals.h
  1171. M /trunk/src/graphics.c
  1172. M /trunk/src/io.c
  1173. * src/graphics.c src/io.c:
  1174. + Beginning of an X11 driver. Currently we merely open the window and
  1175. check keyboard events.
  1176. ------------------------------------------------------------------------
  1177. r147 | sam | 2003-12-12 17:19:44 +0100 (Fri, 12 Dec 2003) | 7 lines
  1178. Changed paths:
  1179. M /trunk/configure.ac
  1180. M /trunk/debian/changelog
  1181. M /trunk/src/caca.c
  1182. * configure.ac debian/changelog:
  1183. + Prepare for 0.3 release.
  1184. + Check for strcasecmp().
  1185. * src/caca.c:
  1186. + Honor CACA_BACKGROUND, CACA_DITHERING and CACA_ANTIALIASING environment
  1187. variables.
  1188. ------------------------------------------------------------------------
  1189. r146 | sam | 2003-12-12 15:49:41 +0100 (Fri, 12 Dec 2003) | 13 lines
  1190. Changed paths:
  1191. M /trunk/examples/aafire.c
  1192. M /trunk/examples/demo.c
  1193. M /trunk/examples/view.c
  1194. M /trunk/src/bitmap.c
  1195. M /trunk/src/caca.c
  1196. M /trunk/src/caca.h
  1197. M /trunk/src/caca_internals.h
  1198. * src/bitmap.c:
  1199. + Added antialiasing support.
  1200. + Dithering, antialiasing and background mode can now be selected at
  1201. runtime.
  1202. * src/caca.c src/caca.h:
  1203. + Renamed caca_dithering into caca_feature and extended the type to
  1204. express background colour and antialiasing mode.
  1205. * examples/demo.c:
  1206. + Fixed a bug that disabled the sprite demo.
  1207. + Draw solid flares.
  1208. * examples/view.c:
  1209. + Select antialiasing and background mode at runtime.
  1210. ------------------------------------------------------------------------
  1211. r145 | sam | 2003-12-11 18:01:09 +0100 (Thu, 11 Dec 2003) | 2 lines
  1212. Changed paths:
  1213. M /trunk/BUGS
  1214. M /trunk/TODO
  1215. M /trunk/debian/control
  1216. M /trunk/doc/cacademo.1
  1217. M /trunk/doc/cacaview.1
  1218. * Minor updates to manpages, BUGS, TODO and the Debian control file.
  1219. ------------------------------------------------------------------------
  1220. r144 | sam | 2003-12-11 17:56:35 +0100 (Thu, 11 Dec 2003) | 5 lines
  1221. Changed paths:
  1222. M /trunk/src/Makefile.am
  1223. M /trunk/src/bitmap.c
  1224. M /trunk/src/caca.c
  1225. M /trunk/src/caca.h
  1226. M /trunk/src/caca_internals.h
  1227. M /trunk/src/graphics.c
  1228. * src/caca.c:
  1229. + Moved global variables to src/graphics.c.
  1230. * src/bitmap.c:
  1231. + Sanitised prototypes.
  1232. ------------------------------------------------------------------------
  1233. r143 | sam | 2003-12-11 17:31:49 +0100 (Thu, 11 Dec 2003) | 17 lines
  1234. Changed paths:
  1235. M /trunk/examples
  1236. M /trunk/examples/aafire.c
  1237. M /trunk/examples/demo.c
  1238. M /trunk/examples/view.c
  1239. M /trunk/src/bitmap.c
  1240. M /trunk/src/box.c
  1241. M /trunk/src/caca.c
  1242. M /trunk/src/caca.h
  1243. M /trunk/src/caca_internals.h
  1244. M /trunk/src/conic.c
  1245. M /trunk/src/graphics.c
  1246. M /trunk/src/line.c
  1247. M /trunk/src/sprite.c
  1248. M /trunk/src/triangle.c
  1249. * src/graphics.c:
  1250. + Internally cache screen width and height.
  1251. * src/bitmap.c:
  1252. + Added alpha support to caca_draw_bitmap(). For now, we only treat 0%
  1253. alpha as fully transparent, and any other value as fully opaque.
  1254. + Slightly tuned colour weights in the renderer.
  1255. + caca_set_bitmap_palette() takes unsigned ints.
  1256. * examples/demo.c:
  1257. + Added a crap render demo.
  1258. * examples/aafire.c:
  1259. + Set a 20ms delay.
  1260. + Added alpha values to the palette.
  1261. * examples/view.c:
  1262. + Draw a gray checkered grid below the image so that transparent images
  1263. look a lot nicer.
  1264. + 'f' toggles "fullscreen" mode.
  1265. ------------------------------------------------------------------------
  1266. r142 | sam | 2003-12-11 16:54:53 +0100 (Thu, 11 Dec 2003) | 6 lines
  1267. Changed paths:
  1268. M /trunk/caca-config.in
  1269. M /trunk/configure.ac
  1270. * configure.ac:
  1271. + Set the executable bit of caca-config when regenerating that file.
  1272. * caca-config.in:
  1273. + No longer use USE_SLANG_TRUE and USE_NCURSES_TRUE since we now
  1274. have @CACA_LIBS@.
  1275. ------------------------------------------------------------------------
  1276. r141 | sam | 2003-12-02 23:27:27 +0100 (Tue, 02 Dec 2003) | 6 lines
  1277. Changed paths:
  1278. M /trunk/configure.ac
  1279. M /trunk/examples/Makefile.am
  1280. A /trunk/examples/aafire.c
  1281. * configure.ac:
  1282. + Removed unused USE_* variables.
  1283. + Export -lslang and -lncurses as @CACA_LIBS@.
  1284. * examples/aafire.c:
  1285. + Imported aafire.c from the AAlib tree and ported it to libcaca.
  1286. ------------------------------------------------------------------------
  1287. r139 | sam | 2003-11-30 18:15:31 +0100 (Sun, 30 Nov 2003) | 2 lines
  1288. Changed paths:
  1289. M /trunk/ChangeLog
  1290. M /trunk/NEWS
  1291. M /trunk/TODO
  1292. M /trunk/debian/changelog
  1293. M /trunk/debian/control
  1294. * 0.2 release.
  1295. ------------------------------------------------------------------------
  1296. r138 | sam | 2003-11-30 18:14:19 +0100 (Sun, 30 Nov 2003) | 3 lines
  1297. Changed paths:
  1298. M /trunk/examples/view.c
  1299. * examples/view.c:
  1300. + Removed last endianness issue.
  1301. ------------------------------------------------------------------------
  1302. r137 | sam | 2003-11-30 17:34:04 +0100 (Sun, 30 Nov 2003) | 5 lines
  1303. Changed paths:
  1304. M /trunk/examples/view.c
  1305. M /trunk/src/bitmap.c
  1306. M /trunk/src/io.c
  1307. * src/io.c:
  1308. + Removed a useless message.
  1309. * src/bitmap.c examples/view.c:
  1310. + Really fixed the endianness issue.
  1311. ------------------------------------------------------------------------
  1312. r136 | sam | 2003-11-30 16:56:02 +0100 (Sun, 30 Nov 2003) | 5 lines
  1313. Changed paths:
  1314. M /trunk/src/bitmap.c
  1315. * src/bitmap.c:
  1316. + Fine-tuned the new renderer.
  1317. + Fixed warnings.
  1318. + Changed hardcoded values to macros.
  1319. ------------------------------------------------------------------------
  1320. r135 | sam | 2003-11-30 16:01:55 +0100 (Sun, 30 Nov 2003) | 11 lines
  1321. Changed paths:
  1322. M /trunk/configure.ac
  1323. M /trunk/examples/demo.c
  1324. M /trunk/examples/view.c
  1325. M /trunk/src/bitmap.c
  1326. M /trunk/src/caca.c
  1327. M /trunk/src/caca.h
  1328. * src/bitmap.c:
  1329. + Fixed an endianness issue in the byte reader.
  1330. + Decreased precision in RGB and HSV values to avoid overflows.
  1331. + New dithering method: 2x2 ordered.
  1332. + New renderer, with background colour awareness.
  1333. * configure.ac:
  1334. + Check for <endian.h>.
  1335. * examples/demo.c examples/view.c:
  1336. + Fixed an endianness issue in cacaview.
  1337. + Adapted code to the additional dithering method.
  1338. ------------------------------------------------------------------------
  1339. r134 | sam | 2003-11-30 03:11:37 +0100 (Sun, 30 Nov 2003) | 4 lines
  1340. Changed paths:
  1341. M /trunk/examples/view.c
  1342. M /trunk/src/bitmap.c
  1343. * src/bitmap.c examples/view.c:
  1344. + Fixed an endianness issue in caca_draw_bitmap().
  1345. + Code cleanup.
  1346. ------------------------------------------------------------------------
  1347. r133 | sam | 2003-11-30 02:18:10 +0100 (Sun, 30 Nov 2003) | 13 lines
  1348. Changed paths:
  1349. M /trunk/TODO
  1350. M /trunk/doc/cacaview.1
  1351. M /trunk/examples/Makefile.am
  1352. M /trunk/examples/view.c
  1353. M /trunk/src/caca.c
  1354. * src/caca.c:
  1355. + Minor change to the dithering names.
  1356. * TODO:
  1357. + Added cacaview TODO.
  1358. * doc/cacaview.1:
  1359. + Wrote a manpage for cacaview.
  1360. * examples/Makefile.am:
  1361. + Moved the -DX_DISPLAY_MISSING=1 here.
  1362. * examples/view.c:
  1363. + Capital 'D' cycles through dithering modes in reverse order.
  1364. + Sleep when there is nothing to do.
  1365. + Cosmetic code reorganisation.
  1366. ------------------------------------------------------------------------
  1367. r132 | sam | 2003-11-29 20:35:07 +0100 (Sat, 29 Nov 2003) | 9 lines
  1368. Changed paths:
  1369. M /trunk/examples/demo.c
  1370. M /trunk/examples/view.c
  1371. M /trunk/src/bitmap.c
  1372. M /trunk/src/caca.c
  1373. M /trunk/src/caca.h
  1374. * src/caca.c src/caca.h:
  1375. + Added caca_get_dithering_name().
  1376. * src/bitmap.c:
  1377. + Created a new dithering method with an 8x8 ordered matrix.
  1378. + Replaced the char list with a string for better readability.
  1379. + Dithering functions now return a value between 0 and 255.
  1380. * examples/demo.c examples/view.c:
  1381. + Adapted to use caca_get_dithering_name().
  1382. ------------------------------------------------------------------------
  1383. r131 | sam | 2003-11-29 19:04:42 +0100 (Sat, 29 Nov 2003) | 3 lines
  1384. Changed paths:
  1385. M /trunk/src/caca.c
  1386. * src/caca.c:
  1387. + Test whether ncurses knows xterm-16color before setting $TERM.
  1388. ------------------------------------------------------------------------
  1389. r130 | sam | 2003-11-29 18:36:00 +0100 (Sat, 29 Nov 2003) | 6 lines
  1390. Changed paths:
  1391. M /trunk/examples/view.c
  1392. * examples/view.c:
  1393. + Added top and bottom status lines, like in mutt and slrn.
  1394. + Added a status string when loading an image or upon error.
  1395. + Can load multiple files; use 'n' and 'p' for next and previous.
  1396. + Clip zoom between -48 and +48.
  1397. ------------------------------------------------------------------------
  1398. r129 | sam | 2003-11-29 17:42:35 +0100 (Sat, 29 Nov 2003) | 2 lines
  1399. Changed paths:
  1400. M /trunk/src/caca.c
  1401. * Fixed a C99ism.
  1402. ------------------------------------------------------------------------
  1403. r128 | sam | 2003-11-29 15:41:37 +0100 (Sat, 29 Nov 2003) | 9 lines
  1404. Changed paths:
  1405. M /trunk/NOTES
  1406. M /trunk/configure.ac
  1407. M /trunk/src/caca.c
  1408. M /trunk/src/graphics.c
  1409. * configure.ac:
  1410. + Default to ncurses, not slang, because slang only has 128 colour pairs.
  1411. * src/caca.c:
  1412. + Disable scrolling to avoid hashmap scrolling optimization code.
  1413. * src/graphics.c:
  1414. + Swap fg and bg in the colour pair indexing, so that bg is always
  1415. right.
  1416. + Disable alt charset support to exploit my patched slang.
  1417. ------------------------------------------------------------------------
  1418. r127 | sam | 2003-11-28 21:39:54 +0100 (Fri, 28 Nov 2003) | 10 lines
  1419. Changed paths:
  1420. M /trunk/NOTES
  1421. M /trunk/examples/view.c
  1422. M /trunk/src/bitmap.c
  1423. * src/bitmap.c:
  1424. + Dither chroma outside of rgb2hsv_default().
  1425. + Clip fromx and fromy values.
  1426. * NOTES:
  1427. + Link to the XTerm control sequences.
  1428. * examples/view.c:
  1429. + Draw status bar.
  1430. + Move with 'h' 'j' 'k' 'l', à la vi.
  1431. + '?' toggles a help menu.
  1432. ------------------------------------------------------------------------
  1433. r126 | sam | 2003-11-28 00:18:12 +0100 (Fri, 28 Nov 2003) | 3 lines
  1434. Changed paths:
  1435. M /trunk/src/bitmap.c
  1436. * src/bitmap.c:
  1437. + Removed § from the list of default characters due to collisions.
  1438. ------------------------------------------------------------------------
  1439. r125 | sam | 2003-11-27 23:54:48 +0100 (Thu, 27 Nov 2003) | 6 lines
  1440. Changed paths:
  1441. A /trunk/debian/caca-utils.mime
  1442. M /trunk/debian/control
  1443. M /trunk/debian/rules
  1444. * debian/control:
  1445. + Removed slang1-dev dependency in caca-utils.
  1446. * debian/caca-utils.mime debian/rules:
  1447. + Added a MIME file with low priority.
  1448. + Added call to dh_installmime.
  1449. ------------------------------------------------------------------------
  1450. r124 | sam | 2003-11-27 23:29:13 +0100 (Thu, 27 Nov 2003) | 5 lines
  1451. Changed paths:
  1452. M /trunk/configure.ac
  1453. M /trunk/src/caca.c
  1454. M /trunk/src/caca_internals.h
  1455. M /trunk/src/graphics.c
  1456. * src/caca.c src/graphics.c:
  1457. + Moved graphics stuff from caca.c to graphics.c.
  1458. + Added a few kludges: if gnome-terminal or konsole are detected, switch
  1459. to TERM=xterm-16color to benefit from extended colour palette.
  1460. ------------------------------------------------------------------------
  1461. r123 | sam | 2003-11-27 22:56:30 +0100 (Thu, 27 Nov 2003) | 13 lines
  1462. Changed paths:
  1463. M /trunk/NOTES
  1464. M /trunk/examples/demo.c
  1465. M /trunk/examples/spritedit.c
  1466. M /trunk/src/bitmap.c
  1467. M /trunk/src/caca.c
  1468. M /trunk/src/caca.h
  1469. M /trunk/src/graphics.c
  1470. M /trunk/src/sprite.c
  1471. * NOTES:
  1472. + Added setab/setaf quotes from the XTerm terminfo.
  1473. + Proposed a workaround for bright colours on any terminal.
  1474. * src/caca.c:
  1475. + 16 colour support for ncurses and conio.
  1476. * src/graphics.c:
  1477. + Ported to 16 colour support.
  1478. + Added a missing <stdio.h> for BUFSIZ.
  1479. + Disabled vsnprintf under DOS (only vsprintf exists).
  1480. * examples/:
  1481. + Don't abort if the caca.txt sprite was not found.
  1482. + Ported to 16 colour support.
  1483. ------------------------------------------------------------------------
  1484. r122 | sam | 2003-11-27 14:27:32 +0100 (Thu, 27 Nov 2003) | 2 lines
  1485. Changed paths:
  1486. M /trunk/NOTES
  1487. * NOTES: more notes about colours.
  1488. ------------------------------------------------------------------------
  1489. r121 | sam | 2003-11-27 10:43:56 +0100 (Thu, 27 Nov 2003) | 5 lines
  1490. Changed paths:
  1491. M /trunk/Makefile.am
  1492. M /trunk/configure.ac
  1493. M /trunk/examples/Makefile.am
  1494. * configure.ac:
  1495. + More sensible imlib2 detection, works with cross-compilation.
  1496. * Makefile.am:
  1497. + Don't forget to include NOTES to the dist tarball.
  1498. ------------------------------------------------------------------------
  1499. r120 | sam | 2003-11-27 10:38:16 +0100 (Thu, 27 Nov 2003) | 2 lines
  1500. Changed paths:
  1501. A /trunk/NOTES
  1502. M /trunk/README
  1503. M /trunk/debian/rules
  1504. * NOTES: added information about colour support.
  1505. ------------------------------------------------------------------------
  1506. r119 | sam | 2003-11-26 22:02:31 +0100 (Wed, 26 Nov 2003) | 2 lines
  1507. Changed paths:
  1508. M /trunk/configure.ac
  1509. * configure.ac: Added a missing check for <inttypes.h>.
  1510. ------------------------------------------------------------------------
  1511. r118 | sam | 2003-11-26 21:58:30 +0100 (Wed, 26 Nov 2003) | 2 lines
  1512. Changed paths:
  1513. M /trunk/src/bitmap.c
  1514. * src/bitmap.c: Support for more colour depths.
  1515. ------------------------------------------------------------------------
  1516. r115 | sam | 2003-11-24 20:56:04 +0100 (Mon, 24 Nov 2003) | 9 lines
  1517. Changed paths:
  1518. M /trunk/configure.ac
  1519. M /trunk/examples/Makefile.am
  1520. M /trunk/examples/demo.c
  1521. M /trunk/examples/view.c
  1522. * configure.ac examples/Makefile.am:
  1523. + Added a check for imlib2-config.
  1524. + Build cacaview conditionally.
  1525. * examples/demo.c:
  1526. + Removed all gdkpixbuf code.
  1527. * examples/view.c:
  1528. + Default to ordered dithering.
  1529. + Make sure the arrows always work even if delta is too small.
  1530. ------------------------------------------------------------------------
  1531. r114 | sam | 2003-11-24 18:51:40 +0100 (Mon, 24 Nov 2003) | 4 lines
  1532. Changed paths:
  1533. M /trunk/debian
  1534. M /trunk/debian/control
  1535. M /trunk/debian/rules
  1536. * debian/:
  1537. + New caca-utils package.
  1538. + Move cacademo, cacaview and caca-spritedit to caca-utils.
  1539. ------------------------------------------------------------------------
  1540. r113 | sam | 2003-11-24 18:50:14 +0100 (Mon, 24 Nov 2003) | 6 lines
  1541. Changed paths:
  1542. M /trunk/doc/Makefile.am
  1543. D /trunk/doc/caca-demo.1
  1544. A /trunk/doc/cacademo.1 (from /trunk/doc/caca-demo.1:112)
  1545. A /trunk/doc/cacaview.1
  1546. M /trunk/examples
  1547. M /trunk/examples/Makefile.am
  1548. A /trunk/examples/view.c
  1549. * examples/:
  1550. + Simple image viewer, cacaview, based on libcaca and imlib2.
  1551. + Renamed caca-demo into cacademo.
  1552. * doc/:
  1553. + Renamed doc/caca-demo.1 into doc/cacademo.1.
  1554. ------------------------------------------------------------------------
  1555. r112 | sam | 2003-11-23 16:34:35 +0100 (Sun, 23 Nov 2003) | 2 lines
  1556. Changed paths:
  1557. M /trunk/src/Makefile.am
  1558. A /trunk/src/bitmap.c (from /trunk/src/blit.c:111)
  1559. D /trunk/src/blit.c
  1560. * Renamed src/blit.c into src/bitmap.c.
  1561. ------------------------------------------------------------------------
  1562. r111 | sam | 2003-11-23 04:44:59 +0100 (Sun, 23 Nov 2003) | 5 lines
  1563. Changed paths:
  1564. M /trunk/examples/demo.c
  1565. M /trunk/src/caca.c
  1566. M /trunk/src/caca.h
  1567. M /trunk/src/io.c
  1568. * src/caca.c:
  1569. + Mouse initialisation in ncurses.
  1570. * src/io.c:
  1571. + Mouse support in ncurses.
  1572. ------------------------------------------------------------------------
  1573. r110 | sam | 2003-11-22 15:28:36 +0100 (Sat, 22 Nov 2003) | 3 lines
  1574. Changed paths:
  1575. M /trunk/debian/control
  1576. * debian/control:
  1577. + libcaca-dev should depend on slang1-dev.
  1578. ------------------------------------------------------------------------
  1579. r109 | sam | 2003-11-22 15:23:18 +0100 (Sat, 22 Nov 2003) | 3 lines
  1580. Changed paths:
  1581. M /trunk/debian/Makefile.am
  1582. * debian/Makefile.am:
  1583. + Added compat and copyright to the distributed files.
  1584. ------------------------------------------------------------------------
  1585. r108 | sam | 2003-11-22 15:19:36 +0100 (Sat, 22 Nov 2003) | 2 lines
  1586. Changed paths:
  1587. A /trunk/ChangeLog
  1588. M /trunk/debian/rules
  1589. * Added a ChangeLog file.
  1590. ------------------------------------------------------------------------
  1591. r107 | sam | 2003-11-22 15:13:53 +0100 (Sat, 22 Nov 2003) | 3 lines
  1592. Changed paths:
  1593. M /trunk/examples/Makefile.am
  1594. * examples/Makefile.am:
  1595. + Compilation fix when libcaca is not available.
  1596. ------------------------------------------------------------------------
  1597. r106 | sam | 2003-11-22 14:44:02 +0100 (Sat, 22 Nov 2003) | 9 lines
  1598. Changed paths:
  1599. M /trunk/debian/changelog
  1600. A /trunk/debian/copyright
  1601. M /trunk/debian/rules
  1602. M /trunk/doc/Makefile.am
  1603. M /trunk/doc/caca-config.1
  1604. A /trunk/doc/caca-demo.1
  1605. A /trunk/doc/caca-spritedit.1
  1606. M /trunk/examples/caca.txt
  1607. * debian/:
  1608. + Wrote the changelog for the Debian release.
  1609. + Wrote a copyright file.
  1610. * doc/:
  1611. + Wrote manpages for caca-demo and caca-spritedit.
  1612. * examples/caca.txt:
  1613. + Centered the sprite handle.
  1614. + Added a second frame to the sprite.
  1615. ------------------------------------------------------------------------
  1616. r105 | sam | 2003-11-22 13:53:55 +0100 (Sat, 22 Nov 2003) | 11 lines
  1617. Changed paths:
  1618. A /trunk/AUTHORS
  1619. M /trunk/Makefile.am
  1620. A /trunk/NEWS
  1621. M /trunk/configure.ac
  1622. A /trunk/doc
  1623. A /trunk/doc/Makefile.am
  1624. A /trunk/doc/caca-config.1
  1625. A /trunk/doc/doxygen.cfg
  1626. A /trunk/doc/footer.html
  1627. A /trunk/doc/header.html
  1628. * AUTHORS NEWS:
  1629. + Added these mandatory files.
  1630. * doc/:
  1631. + Wrote a Doxygen configuration file.
  1632. + Added a manpage for caca-config(1), borrowed from sdl-config.
  1633. * configure.ac:
  1634. + Use new style AC_INIT.
  1635. + Error out if no library was found.
  1636. + Added *djgpp* to the list of non-PIC platforms.
  1637. + Added checks for doxygen and latex.
  1638. ------------------------------------------------------------------------
  1639. r104 | sam | 2003-11-22 13:51:27 +0100 (Sat, 22 Nov 2003) | 2 lines
  1640. Changed paths:
  1641. M /trunk/examples/Makefile.am
  1642. M /trunk/examples/demo.c
  1643. * Disabled gdkpixbuf code.
  1644. ------------------------------------------------------------------------
  1645. r103 | sam | 2003-11-22 13:45:25 +0100 (Sat, 22 Nov 2003) | 3 lines
  1646. Changed paths:
  1647. M /trunk/src/blit.c
  1648. M /trunk/src/box.c
  1649. M /trunk/src/caca.c
  1650. M /trunk/src/caca.h
  1651. M /trunk/src/caca_internals.h
  1652. M /trunk/src/conic.c
  1653. M /trunk/src/graphics.c
  1654. M /trunk/src/io.c
  1655. M /trunk/src/line.c
  1656. M /trunk/src/math.c
  1657. M /trunk/src/sprite.c
  1658. M /trunk/src/triangle.c
  1659. * src/:
  1660. + Doxygenated a few things.
  1661. ------------------------------------------------------------------------
  1662. r102 | sam | 2003-11-21 15:34:07 +0100 (Fri, 21 Nov 2003) | 8 lines
  1663. Changed paths:
  1664. M /trunk/TODO
  1665. M /trunk/examples/demo.c
  1666. M /trunk/src/blit.c
  1667. M /trunk/src/caca.h
  1668. * TODO:
  1669. + A few updates.
  1670. * src/blit.c:
  1671. + Split blit() into caca_create_bitmap() and caca_draw_bitmap().
  1672. + Started removing hardcoded bitmask and pitch values.
  1673. * examples/demo.c:
  1674. + Do something with mouse clicks.
  1675. ------------------------------------------------------------------------
  1676. r101 | sam | 2003-11-21 15:14:26 +0100 (Fri, 21 Nov 2003) | 3 lines
  1677. Changed paths:
  1678. M /trunk/src/io.c
  1679. * src/io.c:
  1680. + Fixed an off-by-one error in the mouse driver.
  1681. ------------------------------------------------------------------------
  1682. r100 | sam | 2003-11-20 17:54:04 +0100 (Thu, 20 Nov 2003) | 13 lines
  1683. Changed paths:
  1684. M /trunk
  1685. M /trunk/Makefile.am
  1686. M /trunk/README
  1687. M /trunk/TODO
  1688. A /trunk/caca-config.in
  1689. M /trunk/configure.ac
  1690. M /trunk/debian
  1691. A /trunk/debian/compat
  1692. M /trunk/debian/control
  1693. M /trunk/debian/rules
  1694. M /trunk/examples
  1695. M /trunk/examples/Makefile.am
  1696. M /trunk/examples/demo.c
  1697. M /trunk/src/Makefile.am
  1698. * debian/control:
  1699. + Changed section to libs/libdevel instead of games/games.
  1700. + Changed package name to libcaca-dev.
  1701. * debian/rules:
  1702. + Use debian/compat instead of DH_COMPAT.
  1703. + Install README, BUGS and TODO into /usr/share/doc.
  1704. * caca-config.in:
  1705. + First version of the config script.
  1706. * configure.ac src/Makefile.am:
  1707. + Build a static PIC library as well.
  1708. * README TODO:
  1709. + Various updates.
  1710. ------------------------------------------------------------------------
  1711. r99 | sam | 2003-11-19 19:38:49 +0100 (Wed, 19 Nov 2003) | 3 lines
  1712. Changed paths:
  1713. M /trunk/TODO
  1714. M /trunk/src/io.c
  1715. * TODO: New stuff to do.
  1716. * src/io.c: left and right arrow keys were swapped.
  1717. ------------------------------------------------------------------------
  1718. r98 | sam | 2003-11-19 18:49:43 +0100 (Wed, 19 Nov 2003) | 3 lines
  1719. Changed paths:
  1720. M /trunk/src/blit.c
  1721. M /trunk/src/caca.c
  1722. M /trunk/src/io.c
  1723. * src/io.c:
  1724. + Fixed a bug in the mouse coordinates reporting.
  1725. ------------------------------------------------------------------------
  1726. r97 | sam | 2003-11-19 18:32:10 +0100 (Wed, 19 Nov 2003) | 6 lines
  1727. Changed paths:
  1728. M /trunk/examples/demo.c
  1729. M /trunk/examples/spritedit.c
  1730. M /trunk/src/blit.c
  1731. M /trunk/src/caca.c
  1732. M /trunk/src/caca.h
  1733. M /trunk/src/io.c
  1734. * src/io.c:
  1735. + Renamed sdl_get_key() into sdl_get_event().
  1736. + Handle mouse clicks.
  1737. * src/caca.c:
  1738. + Activate the terminal's mouse handling if supported.
  1739. ------------------------------------------------------------------------
  1740. r96 | sam | 2003-11-17 17:11:34 +0100 (Mon, 17 Nov 2003) | 8 lines
  1741. Changed paths:
  1742. M /trunk/examples/Makefile.am
  1743. M /trunk/src/Makefile.am
  1744. M /trunk/src/blit.c
  1745. M /trunk/src/caca.h
  1746. M /trunk/src/io.c
  1747. * src/io.c src/caca.h:
  1748. + Interpret escape sequences for F1, F2, left, right, etc.
  1749. * src/Makefile.am examples/Makefile.am:
  1750. + Install caca.h in /usr/include.
  1751. + Do not install example programs.
  1752. * src/blit.c:
  1753. + Minor improvements to grayscale colors.
  1754. ------------------------------------------------------------------------
  1755. r95 | sam | 2003-11-17 11:15:40 +0100 (Mon, 17 Nov 2003) | 2 lines
  1756. Changed paths:
  1757. D /trunk/.cvsignore
  1758. D /trunk/autotools/.cvsignore
  1759. * Removed legacy .cvsignore files.
  1760. ------------------------------------------------------------------------
  1761. r94 | sam | 2003-11-16 18:41:43 +0100 (Sun, 16 Nov 2003) | 6 lines
  1762. Changed paths:
  1763. M /trunk/examples/demo.c
  1764. M /trunk/src/blit.c
  1765. M /trunk/src/caca.h
  1766. * src/blit.c:
  1767. + Hue calculation now uses integers only.
  1768. + Dithering is now parametrable. Implemented none, ordered, random.
  1769. * examples/demo.c:
  1770. + Added dithering selection.
  1771. ------------------------------------------------------------------------
  1772. r93 | sam | 2003-11-16 16:20:17 +0100 (Sun, 16 Nov 2003) | 8 lines
  1773. Changed paths:
  1774. M /trunk/examples/Makefile.am
  1775. A /trunk/examples/caca.txt
  1776. M /trunk/examples/demo.c
  1777. M /trunk/examples/spritedit.c
  1778. M /trunk/src/blit.c
  1779. M /trunk/src/caca.c
  1780. M /trunk/src/caca.h
  1781. M /trunk/src/caca_internals.h
  1782. M /trunk/src/graphics.c
  1783. * src/blit.c:
  1784. + Added caca_set_dithering() (unused yet).
  1785. + Added random dithering.
  1786. * src/caca.h:
  1787. + Renamed legacy EE_* enums to CACA_*.
  1788. * examples/demo.c examples/caca.txt:
  1789. + Added a default sprite for libcaca.
  1790. ------------------------------------------------------------------------
  1791. r92 | sam | 2003-11-16 13:28:29 +0100 (Sun, 16 Nov 2003) | 2 lines
  1792. Changed paths:
  1793. M /trunk/examples/demo.c
  1794. M /trunk/examples/spritedit.c
  1795. M /trunk/src/blit.c
  1796. M /trunk/src/box.c
  1797. M /trunk/src/caca.c
  1798. M /trunk/src/caca.h
  1799. M /trunk/src/caca_internals.h
  1800. M /trunk/src/conic.c
  1801. M /trunk/src/graphics.c
  1802. M /trunk/src/io.c
  1803. M /trunk/src/line.c
  1804. M /trunk/src/math.c
  1805. M /trunk/src/sprite.c
  1806. M /trunk/src/triangle.c
  1807. * Changed copyleft to LGPL.
  1808. ------------------------------------------------------------------------
  1809. r91 | sam | 2003-11-16 13:13:46 +0100 (Sun, 16 Nov 2003) | 3 lines
  1810. Changed paths:
  1811. M /trunk/Makefile.am
  1812. M /trunk/configure.ac
  1813. A /trunk/examples (from /trunk/test:90)
  1814. M /trunk/examples/Makefile.am
  1815. D /trunk/libcaca
  1816. A /trunk/src (from /trunk/libcaca:90)
  1817. M /trunk/src/line.c
  1818. D /trunk/test
  1819. * 2nd pass in the libcaca rehandling; moved sources to src/ and examples
  1820. to examples/.
  1821. ------------------------------------------------------------------------
  1822. r90 | sam | 2003-11-16 13:07:52 +0100 (Sun, 16 Nov 2003) | 2 lines
  1823. Changed paths:
  1824. M /trunk/COPYING
  1825. M /trunk/Makefile.am
  1826. M /trunk/README
  1827. M /trunk/TODO
  1828. M /trunk/bootstrap
  1829. M /trunk/configure.ac
  1830. D /trunk/data
  1831. D /trunk/debian/.cvsignore
  1832. M /trunk/debian/changelog
  1833. M /trunk/debian/control
  1834. M /trunk/debian/rules
  1835. D /trunk/doc
  1836. D /trunk/src
  1837. * The big TTYvaders/libcaca split. This is libcaca.
  1838. ------------------------------------------------------------------------
  1839. r89 | sam | 2003-11-16 12:26:54 +0100 (Sun, 16 Nov 2003) | 8 lines
  1840. Changed paths:
  1841. M /trunk/configure.ac
  1842. M /trunk/libcaca/blit.c
  1843. M /trunk/libcaca/caca.c
  1844. M /trunk/libcaca/conic.c
  1845. M /trunk/libcaca/graphics.c
  1846. M /trunk/src/weapons.c
  1847. * configure.ac:
  1848. + Added -Wsign-compare to the warning flags.
  1849. * libcaca/caca.c:
  1850. + Fixed a signed/unsigned bug that caused infinite waits with
  1851. ee_set_delay(0).
  1852. * src/weapons.c libcaca/graphics.c libcaca/blit.c libcaca/conic.c:
  1853. + Fixed minor signed/unsigned comparison warnings.
  1854. ------------------------------------------------------------------------
  1855. r88 | sam | 2003-11-16 01:33:35 +0100 (Sun, 16 Nov 2003) | 2 lines
  1856. Changed paths:
  1857. M /trunk/Makefile.am
  1858. M /trunk/TODO
  1859. M /trunk/configure.ac
  1860. A /trunk/libcaca (from /trunk/libee:87)
  1861. M /trunk/libcaca/Makefile.am
  1862. M /trunk/libcaca/blit.c
  1863. M /trunk/libcaca/box.c
  1864. A /trunk/libcaca/caca.c (from /trunk/libee/ee.c:87)
  1865. A /trunk/libcaca/caca.h (from /trunk/libee/ee.h:87)
  1866. A /trunk/libcaca/caca_internals.h (from /trunk/libee/ee_internals.h:87)
  1867. M /trunk/libcaca/conic.c
  1868. D /trunk/libcaca/ee.c
  1869. D /trunk/libcaca/ee.h
  1870. D /trunk/libcaca/ee_internals.h
  1871. M /trunk/libcaca/graphics.c
  1872. M /trunk/libcaca/io.c
  1873. M /trunk/libcaca/line.c
  1874. M /trunk/libcaca/math.c
  1875. M /trunk/libcaca/sprite.c
  1876. M /trunk/libcaca/triangle.c
  1877. D /trunk/libee
  1878. M /trunk/src/Makefile.am
  1879. M /trunk/src/aliens.c
  1880. M /trunk/src/bonus.c
  1881. M /trunk/src/box.c
  1882. M /trunk/src/ceo.c
  1883. M /trunk/src/collide.c
  1884. M /trunk/src/common.h
  1885. M /trunk/src/explosions.c
  1886. M /trunk/src/intro.c
  1887. M /trunk/src/main.c
  1888. M /trunk/src/overlay.c
  1889. M /trunk/src/player.c
  1890. M /trunk/src/starfield.c
  1891. M /trunk/src/tunnel.c
  1892. M /trunk/src/weapons.c
  1893. M /trunk/test/Makefile.am
  1894. M /trunk/test/demo.c
  1895. M /trunk/test/spritedit.c
  1896. * Renamed libee to libcaca. Far less collisions.
  1897. ------------------------------------------------------------------------
  1898. r87 | sam | 2003-11-16 01:09:09 +0100 (Sun, 16 Nov 2003) | 2 lines
  1899. Changed paths:
  1900. M /trunk/libee/Makefile.am
  1901. A /trunk/libee/blit.c
  1902. M /trunk/libee/ee.h
  1903. M /trunk/test/Makefile.am
  1904. M /trunk/test/demo.c
  1905. * Very ugly ee_blit function. Will be polished in a while.
  1906. ------------------------------------------------------------------------
  1907. r86 | sam | 2003-11-15 13:42:38 +0100 (Sat, 15 Nov 2003) | 10 lines
  1908. Changed paths:
  1909. M /trunk/libee/ee.c
  1910. M /trunk/libee/ee.h
  1911. M /trunk/libee/graphics.c
  1912. M /trunk/test/demo.c
  1913. * libee/ee.c:
  1914. + Replaced ee_color_names[] with ee_get_color_name().
  1915. + Don't oversleep in ee_refresh().
  1916. * libee/graphics.c:
  1917. + Implemented ee_printf().
  1918. * test/demo.c:
  1919. + If new keypresses are detected, don't wait for the next screen refresh.
  1920. + Added an fps counter on demos.
  1921. + Added controls for outlines and drawing boundaries.
  1922. ------------------------------------------------------------------------
  1923. r85 | sam | 2003-11-15 10:58:20 +0100 (Sat, 15 Nov 2003) | 8 lines
  1924. Changed paths:
  1925. M /trunk/libee/ee.c
  1926. M /trunk/libee/ee.h
  1927. M /trunk/libee/ee_internals.h
  1928. M /trunk/libee/graphics.c
  1929. M /trunk/libee/line.c
  1930. * libee/graphics.c:
  1931. + Correct clipping in ee_putstr() for long strings.
  1932. * libee/ee.c:
  1933. + New ee_get_rendertime() call to provide framerate information.
  1934. * libee/ee.h:
  1935. + Added const keywords where it was meaningful, despite Slang's blatant
  1936. omission of such keywords in its prototypes.
  1937. ------------------------------------------------------------------------
  1938. r84 | sam | 2003-11-14 20:00:07 +0100 (Fri, 14 Nov 2003) | 6 lines
  1939. Changed paths:
  1940. M /trunk/libee/ee.c
  1941. M /trunk/src/main.c
  1942. M /trunk/test/demo.c
  1943. * libee/ee.c:
  1944. + Implemented correct framerate wait loop.
  1945. + No framedropping yet.
  1946. * test/demo.c src/main.c:
  1947. + Set an arbitrary framerate for demos.
  1948. ------------------------------------------------------------------------
  1949. r83 | sam | 2003-11-14 19:49:53 +0100 (Fri, 14 Nov 2003) | 2 lines
  1950. Changed paths:
  1951. M /trunk/src/Makefile.am
  1952. M /trunk/test/Makefile.am
  1953. * Fixed compilation in an alternate directory.
  1954. ------------------------------------------------------------------------
  1955. r82 | sam | 2003-11-14 18:02:36 +0100 (Fri, 14 Nov 2003) | 2 lines
  1956. Changed paths:
  1957. M /trunk/src/box.c
  1958. M /trunk/src/main.c
  1959. M /trunk/src/player.c
  1960. M /trunk/src/starfield.c
  1961. M /trunk/src/tunnel.c
  1962. M /trunk/src/weapons.c
  1963. * Sanity checks after each malloc() call.
  1964. ------------------------------------------------------------------------
  1965. r81 | sam | 2003-11-14 17:55:58 +0100 (Fri, 14 Nov 2003) | 4 lines
  1966. Changed paths:
  1967. M /trunk/libee/ee.h
  1968. M /trunk/libee/math.c
  1969. * libee/math.c:
  1970. + ee_sqrt() now uses unsigned ints.
  1971. + Avoid overflows in ee_sqrt().
  1972. ------------------------------------------------------------------------
  1973. r80 | sam | 2003-11-13 18:12:40 +0100 (Thu, 13 Nov 2003) | 2 lines
  1974. Changed paths:
  1975. M /trunk/src/intro.c
  1976. * src/intro.c: Minor graphical issue on dosemu with ncurses backend.
  1977. ------------------------------------------------------------------------
  1978. r79 | sam | 2003-11-13 17:45:25 +0100 (Thu, 13 Nov 2003) | 6 lines
  1979. Changed paths:
  1980. M /trunk/libee/ee.c
  1981. M /trunk/libee/ee_internals.h
  1982. M /trunk/libee/graphics.c
  1983. M /trunk/libee/sprite.c
  1984. * libee/ee.c:
  1985. + Error checking in ee_init().
  1986. + Pre-generate the empty line for ee_clear().
  1987. * libee/sprite.c:
  1988. + Better error checking in ee_sprite_load().
  1989. ------------------------------------------------------------------------
  1990. r78 | sam | 2003-11-13 16:41:12 +0100 (Thu, 13 Nov 2003) | 2 lines
  1991. Changed paths:
  1992. M /trunk/libee/conic.c
  1993. M /trunk/libee/line.c
  1994. M /trunk/src/box.c
  1995. * Minor coding style changes.
  1996. ------------------------------------------------------------------------
  1997. r77 | sam | 2003-11-13 16:37:49 +0100 (Thu, 13 Nov 2003) | 2 lines
  1998. Changed paths:
  1999. M /trunk/data/Makefile.am
  2000. D /trunk/data/bar_boss
  2001. D /trunk/data/bar_fighter
  2002. A /trunk/data/barboss.txt (from /trunk/data/bar_boss:76)
  2003. A /trunk/data/barfight.txt (from /trunk/data/bar_fighter:76)
  2004. D /trunk/data/baz_fighter
  2005. A /trunk/data/bazfight.txt (from /trunk/data/baz_fighter:76)
  2006. A /trunk/data/bongem.txt (from /trunk/data/item_gem:76)
  2007. A /trunk/data/bonheart.txt (from /trunk/data/item_heart:76)
  2008. D /trunk/data/explosion_medium
  2009. D /trunk/data/explosion_small
  2010. D /trunk/data/foo_fighter
  2011. A /trunk/data/foofight.txt (from /trunk/data/foo_fighter:76)
  2012. D /trunk/data/item_gem
  2013. D /trunk/data/item_heart
  2014. A /trunk/data/ship.txt (from /trunk/data/ship_green:76)
  2015. D /trunk/data/ship_green
  2016. D /trunk/data/weapon_bomb
  2017. D /trunk/data/weapon_fragbomb
  2018. A /trunk/data/wpnbomb.txt (from /trunk/data/weapon_bomb:76)
  2019. A /trunk/data/wpnfrag.txt (from /trunk/data/weapon_fragbomb:76)
  2020. A /trunk/data/xplmed.txt (from /trunk/data/explosion_medium:76)
  2021. A /trunk/data/xplsmall.txt (from /trunk/data/explosion_small:76)
  2022. M /trunk/src/aliens.c
  2023. M /trunk/src/bonus.c
  2024. M /trunk/src/explosions.c
  2025. M /trunk/src/intro.c
  2026. M /trunk/src/player.c
  2027. M /trunk/src/weapons.c
  2028. M /trunk/test/demo.c
  2029. * Renamed sprites to < 8+3 names for the DOS port.
  2030. ------------------------------------------------------------------------
  2031. r76 | sam | 2003-11-13 00:46:58 +0100 (Thu, 13 Nov 2003) | 7 lines
  2032. Changed paths:
  2033. M /trunk/data/bar_boss
  2034. M /trunk/data/bar_fighter
  2035. M /trunk/data/baz_fighter
  2036. M /trunk/data/explosion_medium
  2037. M /trunk/data/explosion_small
  2038. M /trunk/data/foo_fighter
  2039. M /trunk/data/item_gem
  2040. M /trunk/data/item_heart
  2041. M /trunk/data/ship_green
  2042. M /trunk/data/weapon_bomb
  2043. M /trunk/data/weapon_fragbomb
  2044. M /trunk/src/starfield.c
  2045. M /trunk/test/demo.c
  2046. * test/demo.c:
  2047. + Removed a spurious '\n' from an ee_putstr().
  2048. * src/starfield.c:
  2049. + Fixed starfield color.
  2050. * data/:
  2051. + Fixed every sprite's colors.
  2052. ------------------------------------------------------------------------
  2053. r75 | sam | 2003-11-12 22:18:50 +0100 (Wed, 12 Nov 2003) | 25 lines
  2054. Changed paths:
  2055. A /trunk/BUGS
  2056. M /trunk/Makefile.am
  2057. M /trunk/README
  2058. M /trunk/TODO
  2059. M /trunk/libee/Makefile.am
  2060. M /trunk/libee/box.c
  2061. M /trunk/libee/conic.c
  2062. M /trunk/libee/ee.c
  2063. M /trunk/libee/ee.h
  2064. A /trunk/libee/ee_internals.h
  2065. M /trunk/libee/graphics.c
  2066. M /trunk/libee/io.c
  2067. M /trunk/libee/line.c
  2068. M /trunk/libee/math.c
  2069. M /trunk/libee/sprite.c
  2070. M /trunk/libee/triangle.c
  2071. M /trunk/src/Makefile.am
  2072. M /trunk/src/overlay.c
  2073. M /trunk/src/weapons.c
  2074. M /trunk/test/demo.c
  2075. * libee/ee.h:
  2076. + Added ee_color_names[] containing our 16 color names.
  2077. * libee/ee.c:
  2078. + Extended our color set to the full 16 instead of 10.
  2079. + Precalculate ncurses attributes.
  2080. * libee/graphics.c:
  2081. + Clip color value in ee_set_color().
  2082. + Clip characters in ee_putchar().
  2083. + Partially clip characters in ee_putstr(), overflows aren't checked yet.
  2084. * libee/ee_internals.h:
  2085. + New file to share extern variables within libee.
  2086. * test/demo.c:
  2087. + Added a simple demo_color() to output all colors.
  2088. + Replaced four ee_draw_line() with ee_draw_thin_box().
  2089. + Replaced x1, y1, x2 etc. with xa, ya, xb etc. because <math.h> already
  2090. defines y1.
  2091. + Randomized colours from 0 to 15 instead of 1 to 10.
  2092. * src/Makefiles.am:
  2093. + Added -lm to the ttyvaders linking flags because of the intro.
  2094. * README BUGS TODO:
  2095. + Updated.
  2096. ------------------------------------------------------------------------
  2097. r74 | sam | 2003-11-12 19:41:02 +0100 (Wed, 12 Nov 2003) | 7 lines
  2098. Changed paths:
  2099. M /trunk/README
  2100. M /trunk/configure.ac
  2101. M /trunk/libee/ee.c
  2102. M /trunk/libee/graphics.c
  2103. * README:
  2104. + Added a note about dos cross-compilation.
  2105. * configure.ac:
  2106. + Added a check for ScreenUpdate in <pc.h>.
  2107. * libee/graphics.c libee/ee.c:
  2108. + Improved the conio port thanks to ScreenUpdate().
  2109. ------------------------------------------------------------------------
  2110. r73 | sam | 2003-11-12 17:23:18 +0100 (Wed, 12 Nov 2003) | 2 lines
  2111. Changed paths:
  2112. M /trunk/configure.ac
  2113. M /trunk/libee/conic.c
  2114. M /trunk/libee/ee.c
  2115. M /trunk/libee/graphics.c
  2116. M /trunk/libee/io.c
  2117. M /trunk/libee/line.c
  2118. * MS-DOS port of libee, using <conio.h>.
  2119. ------------------------------------------------------------------------
  2120. r72 | sam | 2003-11-12 02:48:58 +0100 (Wed, 12 Nov 2003) | 17 lines
  2121. Changed paths:
  2122. M /trunk/data/foo_fighter
  2123. M /trunk/libee/box.c
  2124. M /trunk/libee/ee.h
  2125. M /trunk/libee/graphics.c
  2126. M /trunk/libee/line.c
  2127. M /trunk/libee/sprite.c
  2128. M /trunk/src/Makefile.am
  2129. M /trunk/src/aliens.c
  2130. M /trunk/src/bonus.c
  2131. M /trunk/src/box.c
  2132. M /trunk/src/common.h
  2133. M /trunk/src/explosions.c
  2134. A /trunk/src/intro.c
  2135. M /trunk/src/main.c
  2136. M /trunk/src/overlay.c
  2137. M /trunk/src/player.c
  2138. M /trunk/src/starfield.c
  2139. M /trunk/src/tunnel.c
  2140. M /trunk/src/weapons.c
  2141. M /trunk/test/demo.c
  2142. M /trunk/test/spritedit.c
  2143. * libee/graphics.c:
  2144. + Renamed ee_color() to ee_set_color(), wrote ee_get_color().
  2145. * libee/line.c:
  2146. + Implemented draw_polyline() and draw_thin_polyline().
  2147. * libee/sprite.c:
  2148. + Removed the f member of struct ee_sprite.
  2149. + Implemented ee_get_sprite_{width|height|dx|dy}().
  2150. + Restore the color fater ee_draw_sprite() is called.
  2151. * libee/box.c:
  2152. + Fixed a bug causing improper box clipping at the right and the bottom.
  2153. * data/foo_fighter:
  2154. + Fixed bugs in the sprite.
  2155. * src/intro.c:
  2156. + Test effects for the future game's intro.
  2157. * test/spritedit.c:
  2158. + Added stuff to the sprite editor. We can now navigate through frames.
  2159. ------------------------------------------------------------------------
  2160. r71 | sam | 2003-11-11 11:22:19 +0100 (Tue, 11 Nov 2003) | 13 lines
  2161. Changed paths:
  2162. M /trunk/libee/Makefile.am
  2163. A /trunk/libee/box.c
  2164. M /trunk/libee/conic.c
  2165. M /trunk/libee/ee.h
  2166. M /trunk/libee/triangle.c
  2167. M /trunk/test/demo.c
  2168. * libee/triangle.c:
  2169. + Wrote ee_draw_triangle() and ee_draw_thin_triangle().
  2170. * libee/box.c:
  2171. + Wrote ee_draw_box(), ee_draw_thin_box() and ee_fill_box().
  2172. * libee/conic.c:
  2173. + Wrote ee_fill_ellipse().
  2174. + First attempt at ee_draw_thin_ellipse(), to be reworked.
  2175. * test/demo.c:
  2176. + Merged demo_lines() and demo_thin_lines().
  2177. + Merged demo_triangles() and demo_outlined_triangles().
  2178. + Wrote demo_box().
  2179. + Use ee_fill_ellipse() in demo_all().
  2180. ------------------------------------------------------------------------
  2181. r70 | sam | 2003-11-11 09:00:36 +0100 (Tue, 11 Nov 2003) | 5 lines
  2182. Changed paths:
  2183. M /trunk/data/Makefile.am
  2184. A /trunk/data/ship_green
  2185. M /trunk/src/collide.c
  2186. M /trunk/src/main.c
  2187. M /trunk/src/player.c
  2188. M /trunk/src/weapons.c
  2189. * src/weapons.c:
  2190. + Use ee_draw_ellipse() instead of ee_draw_circle() to draw the nuke.
  2191. * src/player.c:
  2192. + Use ee_draw_sprite() to draw our ship.
  2193. ------------------------------------------------------------------------
  2194. r69 | sam | 2003-11-11 00:38:50 +0100 (Tue, 11 Nov 2003) | 8 lines
  2195. Changed paths:
  2196. M /trunk/libee/Makefile.am
  2197. M /trunk/libee/conic.c
  2198. M /trunk/libee/ee.c
  2199. M /trunk/libee/ee.h
  2200. A /trunk/libee/graphics.c (from /trunk/libee/ee.c:68)
  2201. M /trunk/libee/io.c
  2202. M /trunk/libee/line.c
  2203. M /trunk/libee/math.c
  2204. M /trunk/libee/sprite.c
  2205. M /trunk/libee/triangle.c
  2206. M /trunk/src/box.c
  2207. M /trunk/src/overlay.c
  2208. M /trunk/src/player.c
  2209. M /trunk/src/starfield.c
  2210. M /trunk/src/tunnel.c
  2211. M /trunk/src/weapons.c
  2212. M /trunk/test/demo.c
  2213. * libee/graphics.c:
  2214. + Moved ee_putstr() and ee_putchar() in here.
  2215. * libee/ee.h:
  2216. + Got rid of ee_goto().
  2217. + Moved <slang.h> or <curses.h> into libee.
  2218. * Replaced ee_goto()/ee_putstr() pairs with ee_putstr().
  2219. * Ditto for ee_putchar().
  2220. ------------------------------------------------------------------------
  2221. r68 | sam | 2003-11-11 00:04:13 +0100 (Tue, 11 Nov 2003) | 5 lines
  2222. Changed paths:
  2223. M /trunk/data/Makefile.am
  2224. M /trunk/src/Makefile.am
  2225. M /trunk/test
  2226. M /trunk/test/Makefile.am
  2227. A /trunk/test/spritedit.c
  2228. * test/spritedit.c:
  2229. + Placeholder for our upcoming sprite editor.
  2230. * src/Makefile.am data/Makefile.am:
  2231. + Use AM_CPPFLAGS, not target_CPPFLAGS, so that automake-1.5 can be used.
  2232. ------------------------------------------------------------------------
  2233. r67 | sam | 2003-11-10 23:43:30 +0100 (Mon, 10 Nov 2003) | 4 lines
  2234. Changed paths:
  2235. M /trunk/data/Makefile.am
  2236. A /trunk/data/weapon_fragbomb
  2237. M /trunk/src/weapons.c
  2238. * src/weapons.c data/weapon_fragbomb:
  2239. + Drew the fragbomb sprite.
  2240. + Use the fragbomb in src/weapons.c.
  2241. ------------------------------------------------------------------------
  2242. r66 | sam | 2003-11-10 22:54:11 +0100 (Mon, 10 Nov 2003) | 5 lines
  2243. Changed paths:
  2244. M /trunk/data/Makefile.am
  2245. A /trunk/data/weapon_bomb
  2246. M /trunk/src/weapons.c
  2247. * data/weapon_bomb:
  2248. + New bomb sprite.
  2249. * src/weapons.c:
  2250. + Switched the bomb drawing to use ee_draw_sprite().
  2251. ------------------------------------------------------------------------
  2252. r65 | sam | 2003-11-10 22:17:47 +0100 (Mon, 10 Nov 2003) | 8 lines
  2253. Changed paths:
  2254. M /trunk/data/Makefile.am
  2255. A /trunk/data/explosion_medium
  2256. A /trunk/data/explosion_small
  2257. M /trunk/libee/sprite.c
  2258. M /trunk/src/explosions.c
  2259. * libee/sprite.c:
  2260. + Made sprite loading more robust.
  2261. * src/explosions.c:
  2262. + No longer use ee_putchar etc. to draw our sprites, but use
  2263. ee_draw_sprite().
  2264. * data/:
  2265. + Drew explosion_medium and explosion_small sprites.
  2266. ------------------------------------------------------------------------
  2267. r64 | sam | 2003-11-10 21:43:02 +0100 (Mon, 10 Nov 2003) | 2 lines
  2268. Changed paths:
  2269. M /trunk/libee/conic.c
  2270. * libee/conic.c: Clip circles and ellipses.
  2271. ------------------------------------------------------------------------
  2272. r63 | sam | 2003-11-10 19:29:04 +0100 (Mon, 10 Nov 2003) | 5 lines
  2273. Changed paths:
  2274. M /trunk/libee/conic.c
  2275. M /trunk/libee/sprite.c
  2276. * libee/sprite.c:
  2277. + Added sanity checks in ee_sprite_* functions.
  2278. * libee/conic.c:
  2279. + Use ellipsepoints() in ee_draw_circle().
  2280. ------------------------------------------------------------------------
  2281. r62 | sam | 2003-11-10 19:23:23 +0100 (Mon, 10 Nov 2003) | 3 lines
  2282. Changed paths:
  2283. M /trunk/test/demo.c
  2284. * test/demo.c:
  2285. + Ellipses demo.
  2286. ------------------------------------------------------------------------
  2287. r61 | sam | 2003-11-10 19:21:36 +0100 (Mon, 10 Nov 2003) | 3 lines
  2288. Changed paths:
  2289. M /trunk/libee/conic.c
  2290. M /trunk/libee/ee.h
  2291. * libee/conic.c:
  2292. + ee_draw_ellipse().
  2293. ------------------------------------------------------------------------
  2294. r60 | sam | 2003-11-10 16:31:12 +0100 (Mon, 10 Nov 2003) | 2 lines
  2295. Changed paths:
  2296. M /trunk/libee/Makefile.am
  2297. D /trunk/libee/circle.c
  2298. A /trunk/libee/conic.c (from /trunk/libee/circle.c:58)
  2299. M /trunk/libee/line.c
  2300. * Renamed libee/circle.c to libee/conic.c because we'll do ellipsis.
  2301. ------------------------------------------------------------------------
  2302. r59 | sam | 2003-11-10 16:16:38 +0100 (Mon, 10 Nov 2003) | 3 lines
  2303. Changed paths:
  2304. M /trunk/libee/line.c
  2305. * libee/line.c:
  2306. + Added code comments.
  2307. ------------------------------------------------------------------------
  2308. r58 | sam | 2003-11-10 15:19:21 +0100 (Mon, 10 Nov 2003) | 4 lines
  2309. Changed paths:
  2310. M /trunk/configure.ac
  2311. M /trunk/libee/Makefile.am
  2312. M /trunk/src/Makefile.am
  2313. M /trunk/test/Makefile.am
  2314. * configure.ac:
  2315. + Moved optimization flags and warning triggers here.
  2316. + Updated the snapshot timestamp.
  2317. ------------------------------------------------------------------------
  2318. r57 | sam | 2003-11-10 15:13:56 +0100 (Mon, 10 Nov 2003) | 2 lines
  2319. Changed paths:
  2320. M /trunk/test/demo.c
  2321. * test/demo.c: Nicer complete demo.
  2322. ------------------------------------------------------------------------
  2323. r56 | sam | 2003-11-10 10:26:40 +0100 (Mon, 10 Nov 2003) | 11 lines
  2324. Changed paths:
  2325. M /trunk/data/Makefile.am
  2326. A /trunk/data/baz_fighter
  2327. A /trunk/data/foo_fighter
  2328. A /trunk/data/item_gem
  2329. A /trunk/data/item_heart
  2330. M /trunk/libee/ee.h
  2331. M /trunk/libee/sprite.c
  2332. M /trunk/src/aliens.c
  2333. M /trunk/src/bonus.c
  2334. M /trunk/src/box.c
  2335. * libee/sprite.c:
  2336. + More robust sprite loader.
  2337. + Added ee_set_sprite_frame() and ee_get_sprite_frame().
  2338. + Free all structures in ee_free_sprite().
  2339. * src/aliens.c src/bonus.c:
  2340. + Use ee_draw_sprite() instead of our manual sprite rendering.
  2341. * src/box.c:
  2342. + Use ee_draw_line() instead of the manual equivalent.
  2343. * data/:
  2344. + Added foo_fighter, baz_fighter, item_gem and item_heart sprites.
  2345. ------------------------------------------------------------------------
  2346. r55 | sam | 2003-11-10 03:00:52 +0100 (Mon, 10 Nov 2003) | 2 lines
  2347. Changed paths:
  2348. A /trunk/data/Makefile.am
  2349. * Oops, forgot data/Makefile.am.
  2350. ------------------------------------------------------------------------
  2351. r54 | sam | 2003-11-10 03:00:19 +0100 (Mon, 10 Nov 2003) | 5 lines
  2352. Changed paths:
  2353. M /trunk/Makefile.am
  2354. M /trunk/configure.ac
  2355. A /trunk/data
  2356. A /trunk/data/bar_boss
  2357. A /trunk/data/bar_fighter
  2358. M /trunk/test/demo.c
  2359. * test/demo.c:
  2360. + Wrote a little sprite demo.
  2361. * data/:
  2362. + Added bar_fighter (from ttyvaders) and bar_boss (from shapes.txt).
  2363. ------------------------------------------------------------------------
  2364. r53 | sam | 2003-11-10 02:56:24 +0100 (Mon, 10 Nov 2003) | 4 lines
  2365. Changed paths:
  2366. M /trunk/libee/Makefile.am
  2367. M /trunk/libee/ee.h
  2368. A /trunk/libee/sprite.c
  2369. * libee/sprite.c:
  2370. + Beginning of sprite handling within the library.
  2371. + Added support to load files.
  2372. ------------------------------------------------------------------------
  2373. r52 | sam | 2003-11-10 01:27:33 +0100 (Mon, 10 Nov 2003) | 3 lines
  2374. Changed paths:
  2375. M /trunk/test/demo.c
  2376. * test/demo.c:
  2377. + outlined triangles demo.
  2378. ------------------------------------------------------------------------
  2379. r51 | sam | 2003-11-10 01:15:02 +0100 (Mon, 10 Nov 2003) | 2 lines
  2380. Changed paths:
  2381. M /trunk/configure.ac
  2382. M /trunk/libee/Makefile.am
  2383. M /trunk/src/Makefile.am
  2384. M /trunk/test/Makefile.am
  2385. * Removed CPPFLAGS_slang and CPPFLAGS_ncurses, we now have config.h.
  2386. ------------------------------------------------------------------------
  2387. r50 | sam | 2003-11-10 00:34:24 +0100 (Mon, 10 Nov 2003) | 4 lines
  2388. Changed paths:
  2389. M /trunk/src/aliens.c
  2390. M /trunk/src/bonus.c
  2391. M /trunk/src/box.c
  2392. M /trunk/src/collide.c
  2393. M /trunk/src/explosions.c
  2394. M /trunk/src/main.c
  2395. M /trunk/src/overlay.c
  2396. M /trunk/src/player.c
  2397. M /trunk/src/starfield.c
  2398. M /trunk/src/tunnel.c
  2399. M /trunk/src/weapons.c
  2400. * src/*.c:
  2401. + Added missing #include "config.h".
  2402. + Fixed a nasty bug in ee_rand() calls.
  2403. ------------------------------------------------------------------------
  2404. r49 | sam | 2003-11-10 00:01:29 +0100 (Mon, 10 Nov 2003) | 3 lines
  2405. Changed paths:
  2406. M /trunk/test/demo.c
  2407. * test/demo.c:
  2408. + Disabled the pyramid demo and wrote a simple triangles demo.
  2409. ------------------------------------------------------------------------
  2410. r48 | sam | 2003-11-09 22:36:24 +0100 (Sun, 09 Nov 2003) | 5 lines
  2411. Changed paths:
  2412. M /trunk/libee/Makefile.am
  2413. M /trunk/libee/ee.h
  2414. A /trunk/libee/triangle.c
  2415. M /trunk/test/Makefile.am
  2416. M /trunk/test/demo.c
  2417. * libee/triangle.c:
  2418. + Implemented ee_fill_triangle().
  2419. * test/demo.c:
  2420. + Triangle demo.
  2421. ------------------------------------------------------------------------
  2422. r47 | sam | 2003-11-09 20:46:14 +0100 (Sun, 09 Nov 2003) | 5 lines
  2423. Changed paths:
  2424. M /trunk/libee/ee.h
  2425. M /trunk/libee/line.c
  2426. M /trunk/test/demo.c
  2427. * libee/line.c:
  2428. + ee_draw_thin_line().
  2429. * test/demo.c:
  2430. + Added a thin lines demo.
  2431. ------------------------------------------------------------------------
  2432. r46 | sam | 2003-11-09 19:10:44 +0100 (Sun, 09 Nov 2003) | 2 lines
  2433. Changed paths:
  2434. M /trunk/libee/line.c
  2435. * libee/line.c: genericized line drawing for future use.
  2436. ------------------------------------------------------------------------
  2437. r45 | sam | 2003-11-09 18:45:12 +0100 (Sun, 09 Nov 2003) | 6 lines
  2438. Changed paths:
  2439. M /trunk/test
  2440. M /trunk/test/demo.c
  2441. * test/demo.c:
  2442. + Putpixel demo.
  2443. + Draw line demo.
  2444. + Draw circle demo.
  2445. + Animated radar demo.
  2446. ------------------------------------------------------------------------
  2447. r44 | sam | 2003-11-09 18:21:43 +0100 (Sun, 09 Nov 2003) | 7 lines
  2448. Changed paths:
  2449. M /trunk/libee/Makefile.am
  2450. A /trunk/libee/circle.c (from /trunk/src/weapons.c:42)
  2451. M /trunk/libee/ee.h
  2452. M /trunk/libee/line.c
  2453. M /trunk/src/weapons.c
  2454. * src/weapons.c:
  2455. + Removed draw_circle, use ee_draw_circle instead.
  2456. * libee/circle.c:
  2457. + New ee_draw_circle function.
  2458. * libee/line.c:
  2459. + Changed an internal function's name.
  2460. ------------------------------------------------------------------------
  2461. r43 | sam | 2003-11-09 17:34:23 +0100 (Sun, 09 Nov 2003) | 2 lines
  2462. Changed paths:
  2463. M /trunk/libee
  2464. M /trunk/libee/Makefile.am
  2465. M /trunk/libee/ee.h
  2466. A /trunk/libee/line.c
  2467. * libee/line.c: Implemented ee_draw_line.
  2468. ------------------------------------------------------------------------
  2469. r42 | sam | 2003-11-09 14:52:40 +0100 (Sun, 09 Nov 2003) | 5 lines
  2470. Changed paths:
  2471. M /trunk/libee/ee.c
  2472. M /trunk/libee/ee.h
  2473. M /trunk/test/demo.c
  2474. * libee/ee.c:
  2475. + got rid of DELAY.
  2476. * test/demo.c:
  2477. + Minor animation effect.
  2478. ------------------------------------------------------------------------
  2479. r41 | sam | 2003-11-09 14:51:37 +0100 (Sun, 09 Nov 2003) | 2 lines
  2480. Changed paths:
  2481. M /trunk/libee/math.c
  2482. * libee/math.c: fixed a thinko in ee_rand().
  2483. ------------------------------------------------------------------------
  2484. r40 | sam | 2003-11-09 14:32:04 +0100 (Sun, 09 Nov 2003) | 8 lines
  2485. Changed paths:
  2486. M /trunk/libee/Makefile.am
  2487. M /trunk/libee/ee.c
  2488. M /trunk/libee/ee.h
  2489. A /trunk/libee/io.c (from /trunk/libee/ee.c:37)
  2490. A /trunk/libee/math.c
  2491. M /trunk/src/Makefile.am
  2492. M /trunk/src/aliens.c
  2493. M /trunk/src/collide.c
  2494. M /trunk/src/common.h
  2495. M /trunk/src/explosions.c
  2496. M /trunk/src/main.c
  2497. D /trunk/src/math.c
  2498. M /trunk/src/starfield.c
  2499. M /trunk/src/tunnel.c
  2500. M /trunk/src/weapons.c
  2501. * libee/io.c:
  2502. + Moved ee_get_key() here.
  2503. * libee/math.c:
  2504. + Moved r00t() here and renamed it to ee_sqrt().
  2505. + Moved GET_RAND() here and renamed it to ee_rand().
  2506. * src/math.c:
  2507. + Removed this deprecated file.
  2508. ------------------------------------------------------------------------
  2509. r39 | sam | 2003-11-09 14:16:19 +0100 (Sun, 09 Nov 2003) | 2 lines
  2510. Changed paths:
  2511. M /trunk/src/aliens.c
  2512. M /trunk/src/bonus.c
  2513. M /trunk/src/box.c
  2514. M /trunk/src/ceo.c
  2515. M /trunk/src/collide.c
  2516. M /trunk/src/common.h
  2517. M /trunk/src/explosions.c
  2518. M /trunk/src/main.c
  2519. M /trunk/src/math.c
  2520. M /trunk/src/overlay.c
  2521. M /trunk/src/player.c
  2522. M /trunk/src/starfield.c
  2523. M /trunk/src/tunnel.c
  2524. M /trunk/src/weapons.c
  2525. * Coding style everywhere.
  2526. ------------------------------------------------------------------------
  2527. r38 | sam | 2003-11-09 14:02:34 +0100 (Sun, 09 Nov 2003) | 5 lines
  2528. Changed paths:
  2529. M /trunk/libee/Makefile.am
  2530. M /trunk/test/Makefile.am
  2531. A /trunk/test/demo.c
  2532. * libee/Makefile.am, test/Makefile.am:
  2533. + Added more compiler warning flags.
  2534. * test/demo.c:
  2535. + Small demo for libee.
  2536. ------------------------------------------------------------------------
  2537. r37 | sam | 2003-11-09 14:01:44 +0100 (Sun, 09 Nov 2003) | 2 lines
  2538. Changed paths:
  2539. M /trunk/libee/ee.c
  2540. * libee/ee.c: Fixed a compilation warning.
  2541. ------------------------------------------------------------------------
  2542. r36 | sam | 2003-11-09 13:48:09 +0100 (Sun, 09 Nov 2003) | 2 lines
  2543. Changed paths:
  2544. M /trunk/libee/ee.c
  2545. * libee/ee.c: Exact line fill in ee_clear().
  2546. ------------------------------------------------------------------------
  2547. r35 | sam | 2003-11-09 13:40:53 +0100 (Sun, 09 Nov 2003) | 2 lines
  2548. Changed paths:
  2549. M /trunk/libee/Makefile.am
  2550. M /trunk/libee/ee.c
  2551. A /trunk/libee/ee.h
  2552. M /trunk/src/Makefile.am
  2553. M /trunk/src/aliens.c
  2554. M /trunk/src/bonus.c
  2555. M /trunk/src/box.c
  2556. M /trunk/src/ceo.c
  2557. M /trunk/src/common.h
  2558. M /trunk/src/explosions.c
  2559. M /trunk/src/main.c
  2560. M /trunk/src/overlay.c
  2561. M /trunk/src/player.c
  2562. M /trunk/src/starfield.c
  2563. M /trunk/src/tunnel.c
  2564. M /trunk/src/weapons.c
  2565. * libee is now standalone.
  2566. ------------------------------------------------------------------------
  2567. r34 | sam | 2003-11-09 13:02:42 +0100 (Sun, 09 Nov 2003) | 2 lines
  2568. Changed paths:
  2569. M /trunk/Makefile.am
  2570. M /trunk/configure.ac
  2571. M /trunk/libee
  2572. A /trunk/libee/Makefile.am
  2573. M /trunk/src/Makefile.am
  2574. A /trunk/test
  2575. A /trunk/test/Makefile.am
  2576. * libee is now (almost) standalone.
  2577. ------------------------------------------------------------------------
  2578. r33 | sam | 2003-11-09 12:26:08 +0100 (Sun, 09 Nov 2003) | 7 lines
  2579. Changed paths:
  2580. M /trunk/doc/shapes.txt
  2581. A /trunk/libee
  2582. A /trunk/libee/ee.c (from /trunk/src/graphics.c:31)
  2583. M /trunk/src/Makefile.am
  2584. M /trunk/src/ceo.c
  2585. M /trunk/src/common.h
  2586. D /trunk/src/graphics.c
  2587. M /trunk/src/main.c
  2588. * libee/ee.c:
  2589. + First file in libee, from src/graphics.c.
  2590. + Disable cursor upon initialisation.
  2591. + Added delay code for constant framerate.
  2592. * src/common.h:
  2593. + Minor compilation fix for latest ncurses.
  2594. ------------------------------------------------------------------------
  2595. r32 | sam | 2003-11-06 22:40:53 +0100 (Thu, 06 Nov 2003) | 2 lines
  2596. Changed paths:
  2597. M /trunk/bootstrap
  2598. * bootstrap: always remove autom4te.cache.
  2599. ------------------------------------------------------------------------
  2600. r31 | sam | 2003-10-02 03:08:13 +0200 (Thu, 02 Oct 2003) | 2 lines
  2601. Changed paths:
  2602. M /trunk
  2603. M /trunk/autotools
  2604. M /trunk/bootstrap
  2605. M /trunk/configure.ac
  2606. M /trunk/debian
  2607. M /trunk/src
  2608. M /trunk/src/aliens.c
  2609. M /trunk/src/bonus.c
  2610. M /trunk/src/box.c
  2611. M /trunk/src/ceo.c
  2612. M /trunk/src/collide.c
  2613. M /trunk/src/common.h
  2614. M /trunk/src/explosions.c
  2615. M /trunk/src/graphics.c
  2616. M /trunk/src/main.c
  2617. M /trunk/src/math.c
  2618. M /trunk/src/overlay.c
  2619. M /trunk/src/player.c
  2620. M /trunk/src/starfield.c
  2621. M /trunk/src/tunnel.c
  2622. M /trunk/src/weapons.c
  2623. * Fixed keywords, ignore, and lots of tiny SVN things.
  2624. ------------------------------------------------------------------------
  2625. r30 | sam | 2003-02-09 12:17:40 +0100 (Sun, 09 Feb 2003) | 3 lines
  2626. Changed paths:
  2627. M /trunk/TODO
  2628. M /trunk/src/Makefile.am
  2629. A /trunk/src/box.c
  2630. M /trunk/src/common.h
  2631. M /trunk/src/main.c
  2632. M /trunk/src/overlay.c
  2633. * support for boxes
  2634. * application: pause box
  2635. ------------------------------------------------------------------------
  2636. r29 | sam | 2003-01-06 13:22:58 +0100 (Mon, 06 Jan 2003) | 3 lines
  2637. Changed paths:
  2638. M /trunk/TODO
  2639. M /trunk/src/collide.c
  2640. * cosmetic code changes.
  2641. * fixed a bug in the tunnel munching.
  2642. ------------------------------------------------------------------------
  2643. r28 | sam | 2002-12-23 17:44:28 +0100 (Mon, 23 Dec 2002) | 3 lines
  2644. Changed paths:
  2645. M /trunk/README
  2646. M /trunk/TODO
  2647. M /trunk/configure.ac
  2648. M /trunk/src/weapons.c
  2649. * fixed the ncurses build.
  2650. * replaced '?\239?\191?\189' with ':' in the fragbomb tail because it's not ASCII.
  2651. ------------------------------------------------------------------------
  2652. r27 | sam | 2002-12-23 17:21:38 +0100 (Mon, 23 Dec 2002) | 6 lines
  2653. Changed paths:
  2654. M /trunk/configure.ac
  2655. M /trunk/src/collide.c
  2656. M /trunk/src/common.h
  2657. M /trunk/src/graphics.c
  2658. M /trunk/src/main.c
  2659. M /trunk/src/overlay.c
  2660. M /trunk/src/player.c
  2661. * new timestamp for a new snapshot.
  2662. * lots of sanity checks in collide.c.
  2663. * moved usleep() to graphics.c.
  2664. * added random key generator in the dummy driver.
  2665. * cosmetic changes in the energy bars.
  2666. ------------------------------------------------------------------------
  2667. r26 | sam | 2002-12-23 16:06:13 +0100 (Mon, 23 Dec 2002) | 4 lines
  2668. Changed paths:
  2669. M /trunk/src/Makefile.am
  2670. M /trunk/src/common.h
  2671. M /trunk/src/main.c
  2672. A /trunk/src/overlay.c
  2673. M /trunk/src/player.c
  2674. * better handling of special weapon timeout.
  2675. * the bomb is now part of the standard fire button effect.
  2676. * overlay for life and special weapon jauges.
  2677. ------------------------------------------------------------------------
  2678. r25 | sam | 2002-12-23 14:46:27 +0100 (Mon, 23 Dec 2002) | 3 lines
  2679. Changed paths:
  2680. M /trunk/src/aliens.c
  2681. M /trunk/src/collide.c
  2682. M /trunk/src/common.h
  2683. M /trunk/src/main.c
  2684. M /trunk/src/player.c
  2685. * aliens are now named foo, bar and baz.
  2686. * beginning of life jauges.
  2687. ------------------------------------------------------------------------
  2688. r24 | sam | 2002-12-23 14:13:04 +0100 (Mon, 23 Dec 2002) | 2 lines
  2689. Changed paths:
  2690. M /trunk/src/common.h
  2691. M /trunk/src/main.c
  2692. M /trunk/src/player.c
  2693. * ship has vx and vy.
  2694. ------------------------------------------------------------------------
  2695. r23 | sam | 2002-12-23 13:47:36 +0100 (Mon, 23 Dec 2002) | 2 lines
  2696. Changed paths:
  2697. M /trunk/TODO
  2698. M /trunk/src/main.c
  2699. M /trunk/src/tunnel.c
  2700. * cosmetic change: reworked draw_tunnel.
  2701. ------------------------------------------------------------------------
  2702. r22 | sam | 2002-12-23 13:03:31 +0100 (Mon, 23 Dec 2002) | 3 lines
  2703. Changed paths:
  2704. M /trunk/src/main.c
  2705. M /trunk/src/tunnel.c
  2706. * lasers are now twice as fast.
  2707. * walls are now filled, and displayed on top of aliens.
  2708. ------------------------------------------------------------------------
  2709. r21 | sam | 2002-12-23 11:06:27 +0100 (Mon, 23 Dec 2002) | 5 lines
  2710. Changed paths:
  2711. M /trunk/configure.ac
  2712. M /trunk/src/Makefile.am
  2713. M /trunk/src/ceo.c
  2714. M /trunk/src/common.h
  2715. M /trunk/src/graphics.c
  2716. M /trunk/src/main.c
  2717. M /trunk/src/tunnel.c
  2718. * added support for --disable-slang.
  2719. * fixed an overflow in the tunnel update code.
  2720. * fragbomb is now 'f', not 'd'.
  2721. * added a missing call to init_bonus().
  2722. ------------------------------------------------------------------------
  2723. r20 | sam | 2002-12-23 10:28:37 +0100 (Mon, 23 Dec 2002) | 5 lines
  2724. Changed paths:
  2725. M /trunk/TODO
  2726. M /trunk/src/collide.c
  2727. M /trunk/src/common.h
  2728. M /trunk/src/main.c
  2729. M /trunk/src/starfield.c
  2730. M /trunk/src/tunnel.c
  2731. M /trunk/src/weapons.c
  2732. * the beam now digs the tunnel.
  2733. * the starfield is now an array of stars.
  2734. * fixed wall rendering (offset issues and disappearing left wall).
  2735. * 32 seekers on fragbomb explosion, not 16.
  2736. ------------------------------------------------------------------------
  2737. r19 | sam | 2002-12-23 00:39:15 +0100 (Mon, 23 Dec 2002) | 3 lines
  2738. Changed paths:
  2739. M /trunk/src/weapons.c
  2740. * seekers and homing bombs react more quickly.
  2741. * 16 seekers on fragbomb explosion instead of 12.
  2742. ------------------------------------------------------------------------
  2743. r18 | sam | 2002-12-23 00:01:35 +0100 (Mon, 23 Dec 2002) | 3 lines
  2744. Changed paths:
  2745. M /trunk/src/math.c
  2746. M /trunk/src/weapons.c
  2747. * fixed a segfault when the target seeker speed was zero.
  2748. * factorized the seeker generation on fragbomb explosion.
  2749. ------------------------------------------------------------------------
  2750. r17 | sam | 2002-12-22 23:36:42 +0100 (Sun, 22 Dec 2002) | 2 lines
  2751. Changed paths:
  2752. M /trunk/src/Makefile.am
  2753. M /trunk/src/common.h
  2754. A /trunk/src/math.c
  2755. M /trunk/src/weapons.c
  2756. * Removed the dependency on <math.h>. We don't need no stinking sqrt!
  2757. ------------------------------------------------------------------------
  2758. r16 | sam | 2002-12-22 23:17:41 +0100 (Sun, 22 Dec 2002) | 3 lines
  2759. Changed paths:
  2760. M /trunk/doc/shapes.txt
  2761. M /trunk/src/aliens.c
  2762. M /trunk/src/ceo.c
  2763. M /trunk/src/collide.c
  2764. M /trunk/src/common.h
  2765. M /trunk/src/main.c
  2766. M /trunk/src/weapons.c
  2767. * dead aliens don't explode in the collision loop but in their update loop.
  2768. * new super weapon, the fragmentation bomb.
  2769. ------------------------------------------------------------------------
  2770. r15 | sam | 2002-12-22 20:08:35 +0100 (Sun, 22 Dec 2002) | 2 lines
  2771. Changed paths:
  2772. M /trunk/.cvsignore
  2773. M /trunk/Makefile.am
  2774. A /trunk/autotools
  2775. A /trunk/autotools/.cvsignore
  2776. A /trunk/autotools/Makefile.am
  2777. M /trunk/bootstrap
  2778. M /trunk/configure.ac
  2779. M /trunk/debian/.cvsignore
  2780. M /trunk/src/Makefile.am
  2781. * Moved generated autotools files to the autotools/ directory.
  2782. ------------------------------------------------------------------------
  2783. r14 | sam | 2002-12-22 19:44:12 +0100 (Sun, 22 Dec 2002) | 2 lines
  2784. Changed paths:
  2785. M /trunk/src/aliens.c
  2786. M /trunk/src/bonus.c
  2787. M /trunk/src/ceo.c
  2788. M /trunk/src/collide.c
  2789. M /trunk/src/common.h
  2790. M /trunk/src/explosions.c
  2791. M /trunk/src/graphics.c
  2792. M /trunk/src/main.c
  2793. M /trunk/src/player.c
  2794. M /trunk/src/starfield.c
  2795. M /trunk/src/tunnel.c
  2796. M /trunk/src/weapons.c
  2797. * I think I fucked up the $Id tags on my previous commit.
  2798. ------------------------------------------------------------------------
  2799. r13 | sam | 2002-12-22 19:42:32 +0100 (Sun, 22 Dec 2002) | 3 lines
  2800. Changed paths:
  2801. A /trunk/COPYING
  2802. M /trunk/src/aliens.c
  2803. M /trunk/src/bonus.c
  2804. M /trunk/src/ceo.c
  2805. M /trunk/src/collide.c
  2806. M /trunk/src/common.h
  2807. M /trunk/src/explosions.c
  2808. M /trunk/src/graphics.c
  2809. M /trunk/src/main.c
  2810. M /trunk/src/player.c
  2811. M /trunk/src/starfield.c
  2812. M /trunk/src/tunnel.c
  2813. M /trunk/src/weapons.c
  2814. * added the COPYING file (GPLv2).
  2815. * added GPL headers to source files.
  2816. ------------------------------------------------------------------------
  2817. r12 | sam | 2002-12-22 19:40:36 +0100 (Sun, 22 Dec 2002) | 2 lines
  2818. Changed paths:
  2819. M /trunk/src/Makefile.am
  2820. A /trunk/src/ceo.c
  2821. M /trunk/src/common.h
  2822. M /trunk/src/main.c
  2823. * tab == hotkey for CEO alert.
  2824. ------------------------------------------------------------------------
  2825. r11 | sam | 2002-12-18 19:44:47 +0100 (Wed, 18 Dec 2002) | 2 lines
  2826. Changed paths:
  2827. M /trunk/TODO
  2828. M /trunk/doc/shapes.txt
  2829. M /trunk/src/aliens.c
  2830. * 3rd alien type.
  2831. ------------------------------------------------------------------------
  2832. r10 | sam | 2002-12-18 19:12:28 +0100 (Wed, 18 Dec 2002) | 2 lines
  2833. Changed paths:
  2834. D /trunk/Makefile
  2835. * Scrapped Makefile.
  2836. ------------------------------------------------------------------------
  2837. r9 | sam | 2002-12-18 19:11:54 +0100 (Wed, 18 Dec 2002) | 2 lines
  2838. Changed paths:
  2839. M /trunk/Makefile
  2840. A /trunk/README
  2841. A /trunk/TODO
  2842. * README and TODO files.
  2843. ------------------------------------------------------------------------
  2844. r8 | sam | 2002-12-18 14:29:31 +0100 (Wed, 18 Dec 2002) | 2 lines
  2845. Changed paths:
  2846. M /trunk/Makefile
  2847. M /trunk/configure.ac
  2848. M /trunk/doc/shapes.txt
  2849. M /trunk/src/collide.c
  2850. M /trunk/src/weapons.c
  2851. * the bomb's head is now white
  2852. ------------------------------------------------------------------------
  2853. r7 | sam | 2002-12-15 18:16:45 +0100 (Sun, 15 Dec 2002) | 3 lines
  2854. Changed paths:
  2855. M /trunk/doc/shapes.txt
  2856. M /trunk/src/aliens.c
  2857. M /trunk/src/collide.c
  2858. M /trunk/src/common.h
  2859. M /trunk/src/main.c
  2860. M /trunk/src/weapons.c
  2861. * new weapon: bomb.
  2862. * beam now collides with aliens.
  2863. ------------------------------------------------------------------------
  2864. r6 | sam | 2002-12-15 06:03:55 +0100 (Sun, 15 Dec 2002) | 2 lines
  2865. Changed paths:
  2866. M /trunk/doc/shapes.txt
  2867. M /trunk/src/common.h
  2868. M /trunk/src/main.c
  2869. M /trunk/src/weapons.c
  2870. * 'beam' weapon.
  2871. ------------------------------------------------------------------------
  2872. r5 | sam | 2002-12-15 04:41:32 +0100 (Sun, 15 Dec 2002) | 10 lines
  2873. Changed paths:
  2874. M /trunk/Makefile
  2875. M /trunk/configure.ac
  2876. M /trunk/debian/changelog
  2877. M /trunk/debian/control
  2878. M /trunk/debian/rules
  2879. M /trunk/doc/shapes.txt
  2880. M /trunk/src/Makefile.am
  2881. M /trunk/src/aliens.c
  2882. A /trunk/src/bonus.c
  2883. M /trunk/src/collide.c
  2884. M /trunk/src/common.h
  2885. M /trunk/src/explosions.c
  2886. M /trunk/src/graphics.c
  2887. M /trunk/src/main.c
  2888. M /trunk/src/player.c
  2889. M /trunk/src/starfield.c
  2890. M /trunk/src/tunnel.c
  2891. M /trunk/src/weapons.c
  2892. * real Debian package files.
  2893. * two new types of aliens. only one rules.
  2894. * removed gfx_write in favor of gfx_putchar and gfx_putstr.
  2895. * added bonuses at alien death. they do nothing yet.
  2896. * seeker missiles. 'b' to test.
  2897. * weapon resolution is now 16*char. needs to be generalized.
  2898. * fixed the supernova bugs. center could collide with the tunnel, and
  2899. the last frame was badly displayed.
  2900. * lots of cleanups everywhere.
  2901. ------------------------------------------------------------------------
  2902. r4 | sam | 2002-12-13 21:50:00 +0100 (Fri, 13 Dec 2002) | 2 lines
  2903. Changed paths:
  2904. M /trunk/.cvsignore
  2905. M /trunk/Makefile
  2906. A /trunk/Makefile.am
  2907. D /trunk/aliens.c
  2908. A /trunk/bootstrap
  2909. D /trunk/collide.c
  2910. D /trunk/common.h
  2911. A /trunk/configure.ac
  2912. A /trunk/debian
  2913. A /trunk/debian/.cvsignore
  2914. A /trunk/debian/Makefile.am
  2915. A /trunk/debian/changelog
  2916. A /trunk/debian/control
  2917. A /trunk/debian/rules
  2918. A /trunk/doc
  2919. A /trunk/doc/shapes.txt
  2920. D /trunk/explosions.c
  2921. D /trunk/graphics.c
  2922. D /trunk/main.c
  2923. D /trunk/player.c
  2924. D /trunk/shapes.txt
  2925. A /trunk/src
  2926. A /trunk/src/.cvsignore
  2927. A /trunk/src/Makefile.am
  2928. A /trunk/src/aliens.c
  2929. A /trunk/src/collide.c
  2930. A /trunk/src/common.h
  2931. A /trunk/src/explosions.c
  2932. A /trunk/src/graphics.c
  2933. A /trunk/src/main.c
  2934. A /trunk/src/player.c
  2935. A /trunk/src/starfield.c
  2936. A /trunk/src/tunnel.c
  2937. A /trunk/src/weapons.c
  2938. D /trunk/starfield.c
  2939. D /trunk/tunnel.c
  2940. D /trunk/weapons.c
  2941. * autotoolificationized the whole thing.
  2942. ------------------------------------------------------------------------
  2943. r3 | sam | 2002-12-13 20:27:16 +0100 (Fri, 13 Dec 2002) | 4 lines
  2944. Changed paths:
  2945. M /trunk/collide.c
  2946. M /trunk/common.h
  2947. M /trunk/explosions.c
  2948. M /trunk/main.c
  2949. M /trunk/player.c
  2950. M /trunk/weapons.c
  2951. * moved nuke from explosions to weapons.
  2952. * used a cool Bresenham algorithm to draw the nuke circles.
  2953. * nuke collides with aliens.
  2954. ------------------------------------------------------------------------
  2955. r2 | sam | 2002-12-13 20:24:53 +0100 (Fri, 13 Dec 2002) | 2 lines
  2956. Changed paths:
  2957. A /trunk/.cvsignore
  2958. * .cvsignore file.
  2959. ------------------------------------------------------------------------
  2960. r1 | sam | 2002-12-13 20:23:07 +0100 (Fri, 13 Dec 2002) | 3 lines
  2961. Changed paths:
  2962. A /branches
  2963. A /trunk
  2964. A /trunk/Makefile
  2965. A /trunk/aliens.c
  2966. A /trunk/collide.c
  2967. A /trunk/common.h
  2968. A /trunk/explosions.c
  2969. A /trunk/graphics.c
  2970. A /trunk/main.c
  2971. A /trunk/player.c
  2972. A /trunk/shapes.txt
  2973. A /trunk/starfield.c
  2974. A /trunk/tunnel.c
  2975. A /trunk/weapons.c
  2976. * First commit. Scrolling works, some weaponry, controls, tunnel blowing,
  2977. the nuke is still ugly, almost no collision detection. Nice demo :)
  2978. ------------------------------------------------------------------------