projects/chimara/chimara.git
13 years agoMerge branch 'master' of https://github.com/wmvanvliet/Chimara
Marijn van Vliet [Sat, 29 Jan 2011 16:04:08 +0000 (17:04 +0100)]
Merge branch 'master' of https://github.com/wmvanvliet/Chimara

Conflicts:
libchimara/garglk.c

13 years agoBegan garglk_set_zcolors() implementation
Marijn van Vliet [Sat, 29 Jan 2011 16:02:04 +0000 (17:02 +0100)]
Began garglk_set_zcolors() implementation

13 years agoFixed pixbuf ref bug
P. F. Chimento [Sat, 29 Jan 2011 15:46:44 +0000 (16:46 +0100)]
Fixed pixbuf ref bug

Bug introduced by alternative resource loading.

13 years agoMerge branch 'master' of github.com:wmvanvliet/Chimara
P. F. Chimento [Sat, 29 Jan 2011 14:33:39 +0000 (15:33 +0100)]
Merge branch 'master' of github.com:wmvanvliet/Chimara

13 years agoUpdated interpreters
P. F. Chimento [Sat, 29 Jan 2011 14:31:35 +0000 (15:31 +0100)]
Updated interpreters

All bundled interpreters are now current with revision 496 of Gargoyle's
interpreters. Added new Gargoyle extension functions to garglk.c and
garglk.h.

13 years agoMerge branch 'master' of https://github.com/wmvanvliet/Chimara
Marijn van Vliet [Sat, 29 Jan 2011 13:46:04 +0000 (14:46 +0100)]
Merge branch 'master' of https://github.com/wmvanvliet/Chimara

13 years ago * Fixed garglk_set_reversevideo to use the new way styles are handled.
Marijn van Vliet [Sat, 29 Jan 2011 13:43:55 +0000 (14:43 +0100)]
 * Fixed garglk_set_reversevideo to use the new way styles are handled.
 * GtkTextTags are no longer shared between GtkTextBuffers, as this
   is not allowed.

13 years agoMerge branch 'master' of github.com:wmvanvliet/Chimara
P. F. Chimento [Sat, 15 Jan 2011 12:10:07 +0000 (13:10 +0100)]
Merge branch 'master' of github.com:wmvanvliet/Chimara

13 years agoGet library to build on Debian stable
P. F. Chimento [Sat, 15 Jan 2011 12:09:08 +0000 (13:09 +0100)]
Get library to build on Debian stable

gio/gio.h isn't included by default in the old version of GLib that is
in the Debian stable distribution.

13 years agoMerge branch 'master' of github.com:wmvanvliet/Chimara
Philip Chimento [Tue, 11 Jan 2011 20:01:41 +0000 (15:01 -0500)]
Merge branch 'master' of github.com:wmvanvliet/Chimara

13 years agoAlso trigger the "command" signal on char input
Philip Chimento [Tue, 11 Jan 2011 07:37:00 +0000 (02:37 -0500)]
Also trigger the "command" signal on char input

Character input should also trigger the ChimaraIF::command signal.

13 years agoFixed issue when setting a 'proportional' style hint.
Marijn van Vliet [Sun, 9 Jan 2011 22:55:31 +0000 (23:55 +0100)]
Fixed issue when setting a 'proportional' style hint.

13 years agoFix ref bug in plugin loader test
Philip Chimento [Wed, 5 Jan 2011 21:49:10 +0000 (16:49 -0500)]
Fix ref bug in plugin loader test

The Chimara widget should have a reference added to it.

13 years agoFix stylehint size bug
Philip Chimento [Wed, 5 Jan 2011 19:19:50 +0000 (14:19 -0500)]
Fix stylehint size bug

The "size" stylehint should use the GtkTextTag "scale" property, not
the "size" property - this way, the relative size is independent of the
default font size. The bug was that the "size" property should be given
in Pango units, not points, but now the "size" property isn't used at
all.

13 years agoAdd test case for stylehint size bug
Philip Chimento [Wed, 5 Jan 2011 18:36:30 +0000 (13:36 -0500)]
Add test case for stylehint size bug

Setting a "size" stylehint on a style makes any text printed in that
style invisible. This is a test case for that bug.

13 years agoFixed some default styling
Marijn van Vliet [Sun, 19 Dec 2010 10:58:46 +0000 (11:58 +0100)]
Fixed some default styling

13 years agoFixed default font retrieval for windows. This caused a minor issue with
Marijn van Vliet [Sat, 18 Dec 2010 23:44:27 +0000 (00:44 +0100)]
Fixed default font retrieval for windows. This caused a minor issue with
textgrid size calcuations.

13 years agoAdded _input_pending functions to docs
P. F. Chimento [Tue, 23 Nov 2010 00:05:02 +0000 (01:05 +0100)]
Added _input_pending functions to docs

Added the chimara_glk_is_{line,char}_input_pending() functions to the
documentation.

13 years agoWrote chimara_glk_set_resource_load_callback()
P. F. Chimento [Tue, 23 Nov 2010 00:01:29 +0000 (01:01 +0100)]
Wrote chimara_glk_set_resource_load_callback()

Added a function for providing an alternate mechanism for loading
resources, as described in the Blorb specification, section 14. This
function allows the host program to specify a callback which the Glk
program will call when a resource is requested and no Blorb resource map
is loaded.

13 years agoFixed threading bug in graphics
P. F. Chimento [Mon, 22 Nov 2010 23:50:26 +0000 (00:50 +0100)]
Fixed threading bug in graphics

flush_window_buffer() requests the GDK lock, but it was called with the
GDK lock already acquired in draw_image_common(). How this managed not
to freeze before, I don't know.

13 years agoFixed minor bug in glk_image_get_info()
P. F. Chimento [Mon, 22 Nov 2010 22:14:19 +0000 (23:14 +0100)]
Fixed minor bug in glk_image_get_info()

13 years agoFix crash when loading resource without a map
P. F. Chimento [Mon, 22 Nov 2010 20:54:41 +0000 (21:54 +0100)]
Fix crash when loading resource without a map

The Glk program now fails gracefully when trying to load an image
resource without having loaded a resource map first: it prints a warning
and doesn't load the image, instead of crashing.

13 years agoAdded API to tell whether forced input is pending
P. F. Chimento [Sun, 21 Nov 2010 01:04:52 +0000 (02:04 +0100)]
Added API to tell whether forced input is pending

Added the functions
  chimara_glk_is_char_input_pending()
  chimara_glk_is_line_input_pending()

13 years agoImplemented interactive mode
P. F. Chimento [Sun, 21 Nov 2010 00:45:21 +0000 (01:45 +0100)]
Implemented interactive mode

The ChimaraGlk:interactive-mode property didn't do anything yet, but it
now disables paging when TRUE. When input scrolls off the screen, the
screen now scrolls down with it.

13 years agoFixed crash in ChimaraIF::command
P. F. Chimento [Fri, 19 Nov 2010 21:58:57 +0000 (22:58 +0100)]
Fixed crash in ChimaraIF::command

Fixed the threading bug in ChimaraIF::command.

13 years agoAdded test case for crash in ChimaraIF::command
P. F. Chimento [Fri, 19 Nov 2010 21:55:32 +0000 (22:55 +0100)]
Added test case for crash in ChimaraIF::command

There is a gdk_threads_enter/leave missing somewhere, because using GTK
calls from the signal handler of the ChimaraIF::command signal causes an
X error.

13 years agoFixed buffers and grids sharing the same styles
P. F. Chimento [Wed, 17 Nov 2010 21:14:06 +0000 (22:14 +0100)]
Fixed buffers and grids sharing the same styles

Two separate text tags should be created, one for text buffers, the
other for grids. Otherwise they share each other's styles (i.e. reverse
video on text grids.)

13 years agoUpdated glulxe's Makefile.am
P. F. Chimento [Wed, 17 Nov 2010 21:13:09 +0000 (22:13 +0100)]
Updated glulxe's Makefile.am

Updated glulxe's Makefile.am, based on glulxe's original Makefile

13 years agoFewer unnecessary recompiles of git
P. F. Chimento [Wed, 17 Nov 2010 21:11:26 +0000 (22:11 +0100)]
Fewer unnecessary recompiles of git

Making the automatically-generated version.h depend on Makefile.am
instead of Makefile prevents git from being fully recompiled every time
configure is run.

13 years agoEdited documentation of ChimaraIF::command signal
P. F. Chimento [Wed, 17 Nov 2010 21:10:13 +0000 (22:10 +0100)]
Edited documentation of ChimaraIF::command signal

The documentation did not mention that the signal can be generated with
the "input" parameter equal to NULL.

13 years agoFixed memory management in styles
P. F. Chimento [Sat, 13 Nov 2010 00:20:21 +0000 (01:20 +0100)]
Fixed memory management in styles

Added a free for the StyleSets that were leaked, and fixed a double
unref of text tags that was causing lots of warnings when closing the
widget. Also added a test case.

13 years agoMerge branch 'master' of github.com:wmvanvliet/Chimara
P. F. Chimento [Sat, 13 Nov 2010 00:08:04 +0000 (01:08 +0100)]
Merge branch 'master' of github.com:wmvanvliet/Chimara

13 years agoFixed example program in documentation
P. F. Chimento [Sat, 13 Nov 2010 00:07:17 +0000 (01:07 +0100)]
Fixed example program in documentation

The example program in ChimaraGlk's documentation had a bug in it.

13 years agoFixed package building on Debian
Philip Chimento [Wed, 10 Nov 2010 19:32:29 +0000 (20:32 +0100)]
Fixed package building on Debian
The chimara-player.install file was misnamed, and I also added a
.gitignore file for the debian/ directory.

13 years agoRemoved old debug message
P. F. Chimento [Wed, 3 Nov 2010 20:31:06 +0000 (21:31 +0100)]
Removed old debug message

13 years agoDon't refer to 'macstyle.css' anymore
P. F. Chimento [Wed, 3 Nov 2010 20:15:30 +0000 (21:15 +0100)]
Don't refer to 'macstyle.css' anymore

We want the default style file to be style.css

13 years agoAdd index to documentation
P. F. Chimento [Wed, 3 Nov 2010 20:14:45 +0000 (21:14 +0100)]
Add index to documentation

I found out that gtk-doc can automatically generate a symbols index for
the documentation. Of course we want that!

13 years agoFixed gtk-doc building for gtk-doc 1.14
P. F. Chimento [Wed, 3 Nov 2010 20:13:34 +0000 (21:13 +0100)]
Fixed gtk-doc building for gtk-doc 1.14

Added a <para> tag, the absence of which caused the documentation build
to fail.

13 years agoAdded xepdmgrclient.[ch] to player/
P. F. Chimento [Wed, 3 Nov 2010 20:11:41 +0000 (21:11 +0100)]
Added xepdmgrclient.[ch] to player/

Otherwise, 'make dist' fails, since not all the files necessary to make
all the possible targets are available.

13 years agoAdded .gitignore files
P. F. Chimento [Wed, 3 Nov 2010 20:08:10 +0000 (21:08 +0100)]
Added .gitignore files

13 years agoFixed ordering of the application of the styles
rodin [Tue, 5 Oct 2010 09:32:50 +0000 (09:32 +0000)]
Fixed ordering of the application of the styles

13 years agoDefined a base style
rodin [Wed, 30 Jun 2010 19:03:06 +0000 (19:03 +0000)]
Defined a base style

13 years agoShowing off dynamic styles: started work on preferences dialog.
rodin [Sun, 23 May 2010 10:48:12 +0000 (10:48 +0000)]
Showing off dynamic styles: started work on preferences dialog.
New appearance cannot be saved or loaded yet.

13 years agoFixing some pager bugs
rodin [Tue, 18 May 2010 14:41:29 +0000 (14:41 +0000)]
Fixing some pager bugs

13 years agoRemoved pager debugging output
rodin [Tue, 18 May 2010 14:09:02 +0000 (14:09 +0000)]
Removed pager debugging output

13 years agoAdded missing buffer flush.
rodin [Tue, 18 May 2010 14:05:28 +0000 (14:05 +0000)]
Added missing buffer flush.

13 years agoBackend support for using dynamic styles. See also Ticket #49.
rodin [Tue, 18 May 2010 13:59:27 +0000 (13:59 +0000)]
Backend support for using dynamic styles. See also Ticket #49.

14 years agoImprovements to the iliad client
rodin [Tue, 11 May 2010 12:06:33 +0000 (12:06 +0000)]
Improvements to the iliad client

14 years agoAdded an icon (Based on a Google image search)
rodin [Tue, 11 May 2010 11:58:36 +0000 (11:58 +0000)]
Added an icon (Based on a Google image search)

14 years agoSome minor cleanup
rodin [Tue, 11 May 2010 10:31:01 +0000 (10:31 +0000)]
Some minor cleanup

14 years agoMore pager improvements. Pager now determines correctly which text is read by the...
rodin [Tue, 11 May 2010 10:30:07 +0000 (10:30 +0000)]
More pager improvements. Pager now determines correctly which text is read by the user and which is not. Pager will automatically scroll past read text.

14 years agoPaging is slowly becoming better, but still susceptible to race conditions
rodin [Tue, 11 May 2010 00:27:59 +0000 (00:27 +0000)]
Paging is slowly becoming better, but still susceptible to race conditions

14 years agoPlaced pager functionality into the idle handler
rodin [Mon, 10 May 2010 20:21:26 +0000 (20:21 +0000)]
Placed pager functionality into the idle handler

14 years agoFixed segfault when requesting non-existant parent window
rodin [Wed, 5 May 2010 13:47:14 +0000 (13:47 +0000)]
Fixed segfault when requesting non-existant parent window

14 years agoDeleted unnecessary code
rodin [Wed, 5 May 2010 12:24:28 +0000 (12:24 +0000)]
Deleted unnecessary code

14 years agoWhen copying default styles to current styles, also take the pager layout into account.
rodin [Wed, 5 May 2010 12:22:46 +0000 (12:22 +0000)]
When copying default styles to current styles, also take the pager layout into account.

14 years agoFixed invalid cast in garglk_set_reversevideo()
rodin [Wed, 5 May 2010 12:06:01 +0000 (12:06 +0000)]
Fixed invalid cast in garglk_set_reversevideo()

14 years agoAuth test 2
rodin [Tue, 4 May 2010 15:32:28 +0000 (15:32 +0000)]
Auth test 2

14 years agoAuth test
rodin [Tue, 4 May 2010 15:32:07 +0000 (15:32 +0000)]
Auth test

14 years agoAdded and updated Zarf's Glulxercise unit tests
fliep [Mon, 3 May 2010 18:42:53 +0000 (18:42 +0000)]
Added and updated Zarf's Glulxercise unit tests

14 years agoAdded underscore to prevent marshaller functions from being exported in library
fliep [Mon, 3 May 2010 17:58:05 +0000 (17:58 +0000)]
Added underscore to prevent marshaller functions from being exported in library

14 years agoFixed bug: modifier keys no longer count as char input
fliep [Sun, 2 May 2010 20:11:17 +0000 (20:11 +0000)]
Fixed bug: modifier keys no longer count as char input

14 years agoOops, undoing accidentally committed parts of [259]
fliep [Sun, 2 May 2010 20:07:31 +0000 (20:07 +0000)]
Oops, undoing accidentally committed parts of [259]

14 years agoFrotz now compiled to use Gargoyle extensions
fliep [Sun, 2 May 2010 20:00:18 +0000 (20:00 +0000)]
Frotz now compiled to use Gargoyle extensions

14 years agoImplemented dynamic title bar in player
fliep [Sun, 2 May 2010 19:59:53 +0000 (19:59 +0000)]
Implemented dynamic title bar in player

14 years agoImplemented garglk_set_program_name(), garglk_set_program_info(), garglk_set_story_name()
fliep [Sun, 2 May 2010 19:58:13 +0000 (19:58 +0000)]
Implemented garglk_set_program_name(), garglk_set_program_info(), garglk_set_story_name()

14 years agoFixed hyperlink bug, #46
fliep [Sun, 2 May 2010 19:57:29 +0000 (19:57 +0000)]
Fixed hyperlink bug, #46

14 years agoFix for building RPM
fliep [Sat, 1 May 2010 11:46:06 +0000 (11:46 +0000)]
Fix for building RPM

14 years agoAdded some descriptions to documentation so Gtk-doc doesn't complain
fliep [Sat, 1 May 2010 10:21:22 +0000 (10:21 +0000)]
Added some descriptions to documentation so Gtk-doc doesn't complain

14 years agoAdded some explanatory documentation to ChimaraGlk and ChimaraIF
fliep [Fri, 30 Apr 2010 23:20:44 +0000 (23:20 +0000)]
Added some explanatory documentation to ChimaraGlk and ChimaraIF

14 years agoAdjustments in Makefile.am
fliep [Fri, 30 Apr 2010 23:20:01 +0000 (23:20 +0000)]
Adjustments in Makefile.am

14 years agoAdded stubs for all Gargoyle extensions and documented them
fliep [Fri, 30 Apr 2010 22:07:39 +0000 (22:07 +0000)]
Added stubs for all Gargoyle extensions and documented them

14 years agoDefined a stub glk_schannel_struct to fix another regression
fliep [Fri, 30 Apr 2010 11:08:05 +0000 (11:08 +0000)]
Defined a stub glk_schannel_struct to fix another regression

14 years agoFixed regression I introduced while fixing Gtk-doc warnings
fliep [Fri, 30 Apr 2010 11:02:23 +0000 (11:02 +0000)]
Fixed regression I introduced while fixing Gtk-doc warnings

14 years agoForgot to add glk-sound-resources.sgml
fliep [Fri, 30 Apr 2010 01:44:59 +0000 (01:44 +0000)]
Forgot to add glk-sound-resources.sgml

14 years agoDocumented all planned Glk API functions
fliep [Fri, 30 Apr 2010 01:33:24 +0000 (01:33 +0000)]
Documented all planned Glk API functions

14 years agoFixed documentation to work with Gtk-Doc 1.14 and produce as few warnings as possible
fliep [Wed, 28 Apr 2010 23:26:13 +0000 (23:26 +0000)]
Fixed documentation to work with Gtk-Doc 1.14 and produce as few warnings as possible

14 years agoBrought documentation up to date
fliep [Sun, 25 Apr 2010 14:38:32 +0000 (14:38 +0000)]
Brought documentation up to date

14 years agoFixed problem of player looking for CSS file in a hard-coded location.
fliep [Sun, 25 Apr 2010 12:51:37 +0000 (12:51 +0000)]
Fixed problem of player looking for CSS file in a hard-coded location.
Dug up a lot of other problems doing that:
* Moved style initialization to the constructor of ChimaraGlk
* Now styles are always initialized, so we don't have to keep track of
  whether they are or not
* Moved style initialization and CSS parsing out of the Glk thread, into the
  main GTK thread, since it's controlled by the widget API not the Glk API
* Removed the 'default-font-description' and 'monospace-font-description'
  properties and their associated API
* Added API chimara_glk_set_css_to_default() [not implemented yet],
  chimara_glk_set_css_from_file(), chimara_glk_set_css_from_string()

14 years agoPlaying around with barf
fliep [Sat, 24 Apr 2010 22:51:58 +0000 (22:51 +0000)]
Playing around with barf
Renamed barf.c.eventbox so gcc doesn't complain about the extension

14 years ago * Use .tar.gz for iliad packaging
rodin [Mon, 19 Apr 2010 19:55:12 +0000 (19:55 +0000)]
 * Use .tar.gz for iliad packaging
 * Close keyboard after shutdown of iliad client

14 years agoAdded iliad package creation script, which simply copies the required files to a...
rodin [Mon, 19 Apr 2010 19:16:25 +0000 (19:16 +0000)]
Added iliad package creation script, which simply copies the required files to a directory and zips it

14 years agoDefault CSS file NULL
rodin [Sun, 18 Apr 2010 17:49:41 +0000 (17:49 +0000)]
Default CSS file NULL

14 years ago* Path fixes
rodin [Sun, 18 Apr 2010 15:39:39 +0000 (15:39 +0000)]
* Path fixes
* Debian packaging fixes

14 years agoFixed x86-64 closing bug #44
rodin [Sun, 18 Apr 2010 14:38:10 +0000 (14:38 +0000)]
Fixed x86-64 closing bug #44

14 years agoIliad port
rodin [Sun, 18 Apr 2010 14:04:40 +0000 (14:04 +0000)]
Iliad port

14 years agoFixed window closing bug #43
rodin [Sun, 18 Apr 2010 10:56:53 +0000 (10:56 +0000)]
Fixed window closing bug #43

14 years agoDon't page when window is too small
rodin [Sun, 18 Apr 2010 09:28:34 +0000 (09:28 +0000)]
Don't page when window is too small

14 years agoPager bug fixed.... or is it?
rodin [Sat, 17 Apr 2010 22:30:02 +0000 (22:30 +0000)]
Pager bug fixed.... or is it?

14 years agoFixed history recall bug
rodin [Sat, 17 Apr 2010 20:07:38 +0000 (20:07 +0000)]
Fixed history recall bug

14 years agoPager in place
rodin [Sat, 17 Apr 2010 19:47:20 +0000 (19:47 +0000)]
Pager in place

14 years agoReverse [230] for configure.ac
rodin [Sat, 17 Apr 2010 15:18:52 +0000 (15:18 +0000)]
Reverse [230] for configure.ac

14 years agoFixed Glk to Gdk color bug
rodin [Sat, 17 Apr 2010 15:13:22 +0000 (15:13 +0000)]
Fixed Glk to Gdk color bug

14 years agoFixed hitting enter key mid sentence
rodin [Tue, 30 Mar 2010 11:53:14 +0000 (11:53 +0000)]
Fixed hitting enter key mid sentence

14 years agoAdded notify signals to properties
fliep [Sun, 14 Mar 2010 11:23:11 +0000 (11:23 +0000)]
Added notify signals to properties

14 years agoHandle Home/End keys properly
rodin [Sun, 14 Feb 2010 12:48:07 +0000 (12:48 +0000)]
Handle Home/End keys properly

14 years agoSupport for graphics in text buffers
rodin [Sun, 14 Feb 2010 11:25:03 +0000 (11:25 +0000)]
Support for graphics in text buffers

14 years agoBrought documentation up to date
fliep [Tue, 9 Feb 2010 21:56:35 +0000 (21:56 +0000)]
Brought documentation up to date

14 years agoGraphics caching not operational.
rodin [Sun, 7 Feb 2010 13:59:18 +0000 (13:59 +0000)]
Graphics caching not operational.

14 years agoStart of image cache implementation... breaks image functionality.
rodin [Sat, 6 Feb 2010 20:22:44 +0000 (20:22 +0000)]
Start of image cache implementation... breaks image functionality.