Sam Hocevar
6b79dc0ea0
* Print '?' instead of spaces for unknown glyphs in the X11 driver.
18 anni fa
Sam Hocevar
ca1c7c2589
* Fix resizing of the Win32 console. It now adapts to the requested size.
18 anni fa
Sam Hocevar
faf6417bac
* Duplicated the conio.h Unicode->CP437 conversion into the VGA driver.
* Cosmetic code changes.
18 anni fa
Sam Hocevar
2f878868e0
* Fixed compiler warnings when UTF-8 S-Lang is not available.
18 anni fa
Sam Hocevar
e737bea9a3
* Use UTF-8 enable ncurses (ncursesw) if available. Doesn't seem to work.
18 anni fa
Sam Hocevar
4fd15b0aab
* Added support for Unicode characters that fall into CP437 0x01 - 0x1f to
the DOS/conio.h driver, and updated the unicode test accordingly.
18 anni fa
Sam Hocevar
d651a43041
* Partial Unicode support for the DOS/conio.h driver. Glyphs that have
equivalents in CP437 0x7f - 0xff are translated.
18 anni fa
Sam Hocevar
0c9103f95a
* Cosmetic.
18 anni fa
Jean-Yves Lamoureux
eff2f954de
* Added telnet commands and options strings for debug
18 anni fa
Sam Hocevar
788bec7de8
* Minor coding style fixes.
18 anni fa
Sam Hocevar
eb34d7e04c
* UTF-8 support in the Win32 driver.
18 anni fa
Sam Hocevar
195da3f08f
* Support CACA_GEOMETRY in the network driver. Still defaults to 80x24.
* Use RETSIGTYPE for signal handler return values.
18 anni fa
Sam Hocevar
e1a79c7512
* Do not fail if SLsmg_utf8_enable was not found, just disable UTF-8 support
in the SLang driver.
* Cosmetic fixes in configure.ac.
18 anni fa
Sam Hocevar
9e698966f2
* Replaced all cucul_get_* exporters with a generic cucul_export() function.
* Got rid of static buffers; we now use cucul_free() to free exported
buffers.
* Fixed light background in the ANSI exporter by adding escape sequences for
most terminal emulators.
18 anni fa
Sam Hocevar
adc85b5711
* Do not switch to alternate screen when clearing, because sometimes we
are unable to cleanly restore the state.
18 anni fa
Sam Hocevar
a188ec5c32
* Pressing Ctrl-C on the client side now drops the connection.
18 anni fa
Sam Hocevar
31229fae80
* Changed port environment variable to "CACA_PORT". No need to mention it's
a network port, we could have guessed.
18 anni fa
Sam Hocevar
5c9868e79a
* Ooops, fixed an old typo.
18 anni fa
Sam Hocevar
2442e911a4
* Improvements to the network output:
+ Changed port to 51914 (rationale: it's 0xCACA; so okay, it's outside
the registered ports area, but we'd never be accepted anyway).
+ Retry network sends in caca_get_event(), too.
+ Have a per-client buffer in case of network congestion. If that buffer
gets full, just drop it and start again at the next frame.
+ Set the window title to "caca for the network".
+ Do not send the ANSI buffer's terminating \0.
+ Restore the SIGPIPE handler on close.
+ Set window size to 80x24 instead of 80x25.
18 anni fa
Sam Hocevar
0889bf4799
* Fixed an uninitialised variable in the event queue handling.
18 anni fa
Sam Hocevar
edbd6a2e55
* Set the client sockets as non-blocking, and implemented non-blocking
writes. Currently works very badly with more than one client.
18 anni fa
Jean-Yves Lamoureux
d47bd8b490
* Added CACA_NETWORK_PORT env and related documentation
18 anni fa
Jean-Yves Lamoureux
1c6bfd09a1
* Fixed configure script to check for UTF8 enabled slang, removed network driver debug output, added size > 255 in telnet negociation, fixed scrolling bug in network driver
18 anni fa
Sam Hocevar
6f7f557f83
* Handle incoming connections in network_get_event() as well as
network_display() so that new clients immediately get the contents
of the canvas and do not need to wait for a caca_display() call.
18 anni fa
Sam Hocevar
d1e1dbd630
* Use the internal version of cucul_set_size in output drivers so that
they can force a resize. We need to find a way to make those specific
cucul - caca interactions unavailable to the clueless user.
18 anni fa
Sam Hocevar
e332cf1bed
* Assume the VGA screen is 320x200 and really resize the cucul canvas to
80x25 upon initialisation.
18 anni fa
Sam Hocevar
dbb6e0e94d
* Added Unicode support to the SLang driver.
18 anni fa
Jean-Yves Lamoureux
80d7cee0ba
* Multiplexed sockets, it is now possible to have multiple clients at the same time watching for the same libcaca application. And no fork or threads involved. THAT'S high technology.
18 anni fa
Sam Hocevar
38f5d13943
* Fixed VGA colours. The values only range from 0 to 63.
18 anni fa
Sam Hocevar
c063b0a54d
* Added assembly code for inb() and outb().
* Print a small message at kernel boot time just to check that the kernel
was properly loaded.
18 anni fa
Sam Hocevar
246c3beff3
* Added a conditional to only build the kernel if --enable-vga was set.
18 anni fa
Sam Hocevar
15ac34a918
* Added glue code to compile libcaca without a libc and build applications
as multiboot kernels.
18 anni fa
Sam Hocevar
c0f77b4e18
* Cosmetic change.
18 anni fa
Sam Hocevar
37d1bec329
* Pure VGA output driver.
18 anni fa
Sam Hocevar
8995ef3837
* Removed unused includes.
18 anni fa
Jean-Yves Lamoureux
32037db492
* Updated documentation a bit
18 anni fa
Jean-Yves Lamoureux
a676487863
* Changed way temporary buffer of ansi export was handled. Need to do that for other exporters as well.
18 anni fa
Jean-Yves Lamoureux
e710d1078d
* Fixed memory leak in network driver
18 anni fa
Sam Hocevar
30d6a92464
* Made the OpenGL colors slightly less saturated.
18 anni fa
Sam Hocevar
a499e05961
* Make output drivers more error resilient when handling UTF-32 characters,
by simply ignoring everything non ASCII :-)
18 anni fa
Jean-Yves Lamoureux
f957e380d4
* Fixed blinking screen
18 anni fa
Jean-Yves Lamoureux
b9ab5e0e5a
* Exporters now return size of generated data
18 anni fa
Jean-Yves Lamoureux
fd331c1504
* Added very preliminary network driver
18 anni fa
Sam Hocevar
da30961a0e
* Fixed async issues between the driver and libcaca when resizing windows,
and simplified the handle_resize() API. Still can be polished.
18 anni fa
Sam Hocevar
e44a01f08d
* Cosmetic changes here and there.
19 anni fa
Sam Hocevar
8f286f6432
* Finished moving everything driver-specific to the apropriate driver_*.c
files. Phew. Now they just need a few comments.
19 anni fa
Sam Hocevar
cf02908f38
* Cleaned up useless header includes.
19 anni fa
Sam Hocevar
2936525ab7
* Split event.c into the appropriate driver_*.c files.
19 anni fa
Sam Hocevar
73e689b2a3
* Fixed DOS driver.
* Added a build-dos script to cross-compile the DOS version using djgpp.
19 anni fa
Sam Hocevar
41e32c8809
* Got rid of static variables in the event code.
19 anni fa