Directory trunk/client/gtk/

Directory Created:
2001-11-02 03:22
Directory Deleted:
2006-09-19 02:24
Total Files:
0
Deleted Files:
19
Lines of Code:
0

[root]/trunk/client/gtk
                Folder removed from repo win32 (0 files, 0 lines)

Lines of Code

trunk/client/gtk/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 383 (100.0%) 21222 (100.0%) 55.4
mwedel 170 (44.4%) 15907 (75.0%) 93.5
tchize 64 (16.7%) 2061 (9.7%) 32.2
ryo_saeba 57 (14.9%) 1827 (8.6%) 32.0
akirschbaum 51 (13.3%) 509 (2.4%) 9.9
gros 5 (1.3%) 342 (1.6%) 68.4
cavesomething 18 (4.7%) 313 (1.5%) 17.3
jbontje 3 (0.8%) 173 (0.8%) 57.6
crowbert 10 (2.6%) 58 (0.3%) 5.8
reeve 3 (0.8%) 27 (0.1%) 9.0
onefang 1 (0.3%) 5 (0.0%) 5.0
tanner 1 (0.3%) 0 (0.0%) 0.0

Most Recent Commits

mwedel 2006-09-19 02:24 Rev.: 4942

make branche directories, delete old trunk.

0 lines of code changed in 19 files:

  • trunk/client/gtk: .cvsignore (del), Makefile.am (del), Makefile.in (del), config.c (del), crossfire-client.desktop (del), gcfclient.man (del), gtkproto.h (del), gx11.c (del), gx11.h (del), help.c (del), image.c (del), inventory.c (del), keys.c (del), map.c (del), png.c (del), rcs-id.h (del), sdl.c (del), sound.c (del), text.c (del)
ryo_saeba 2006-08-08 04:59 Rev.: 4762

Hide input if asked for

2 lines of code changed in 1 file:

  • trunk/client/gtk: gx11.c (+2)
ryo_saeba 2006-07-29 05:13 Rev.: 4727

Add .cvsignore files, courtesy Rapha��l Quinet - quinet

0 lines of code changed in 1 file:

  • trunk/client/gtk: .cvsignore (new)
ryo_saeba 2006-07-29 03:12 Rev.: 4724

Add --enable-gtk2 to build gtk1 client with gtk2. Misc bugfixes.

3 lines of code changed in 1 file:

  • trunk/client/gtk: gx11.c (+3 -3)
mwedel 2006-07-18 01:24 Rev.: 4690

Make common/cconfig.h act as the default server if set, if not set, connect
to metaserver. Prior to this, it always went to the metaserver unless
-server option was given.
--
common/cconfig.h: Comment out SERVER so by default it connects to metaserver
common/client.c: Add handling to initialize server from SERVER if defined,
null otherwise.
common/metaserver.c: Don't present default server in metaserver selection
default is null.
gtk/gx11.c, gtk-v2/src/main.c, x11/x11.c: Change command line handling -
if server is set, use that as default to connect to.
--
MSW 2006-07-1

2 lines of code changed in 1 file:

  • trunk/client/gtk: gx11.c (+2 -2)
akirschbaum 2006-07-16 08:52 Rev.: 4683

gtk/image.c gtk-v2/src/image.c gtk-v2/src/opengl.c: Remove superfluous casts.

6 lines of code changed in 1 file:

  • trunk/client/gtk: image.c (+6 -4)
akirschbaum 2006-07-16 07:37 Rev.: 4682

gnome/gnome.c, gtk/gx11.c, x11/x11.c: Remove unused macros.

0 lines of code changed in 1 file:

  • trunk/client/gtk: gx11.c (-4)
akirschbaum 2006-07-16 07:13 Rev.: 4680

Change "if(ptr) free(ptr)" into "free(ptr)".

10 lines of code changed in 3 files:

  • trunk/client/gtk: config.c (+1 -1), keys.c (+1 -1), text.c (+8 -16)
mwedel 2006-07-06 02:07 Rev.: 4670

Fix problem in gtk1 & gtk2 client when player issues disconnect command -
client would hang and consume all CPU time.
---
common/external.h: Add declaration to cleanup_connection()
common/p_cmd.c: In disconnect command, add call to cleanup_connection()
gtk/gx11.c, gtk-v2/src/main.c: Add cleanup_connection() - removes socket
from one of the gdk input device, call gtk_main_quit so it returns
to metaserver selection.
x11/x11.c: Add empty cleanup_connection() - x11 client doesn't need to
do anything special.
MSW 2006-07-06

13 lines of code changed in 1 file:

  • trunk/client/gtk: gx11.c (+13 -1)
mwedel 2006-07-05 02:12 Rev.: 4665

Clean up some compile warnings. They generally fall into either wrong form
for variable (%lld vs %ld), or cast for data (char* vs uint8*)
---
common/client-types.h: Add FMT64 defines like done in the server. Removes
need for #ifdef WIN32 in many places.
common/client.c: Remove unneeded cast for ReplyInfoCmd(). Change type
of length parameter passed to getsockopt() to be a socklen_t.
common/commands.c: Change ReplyInfoCmd() to take a uint8*. Add several
char*/uint8* casts. Change TickCmd() to also take uint8*
common/external.h: Add extern void client_tick(uint32 tick).
common/image.c: load_image() so that its fourth param (checksum) is a uint32.
In finish_face_cmd() change filename to be a char*. Add some casts in
ImageCmd() & Image2Cmd(). Change display_newpng() so its first param
(face) is just a int, not a long. Change get_image_info() to take in
a uint8* for data, add some casts. Change get_image_sums() to take in
a char*
common/item.c: Change several buffers used by the socklist structure to
be uint8, add casts as needed.
common/newsocket.c: Change SockList_Init() so that the passed in buffer
is a uint8*, so that is what the target buffer type is. Add some
casts and update some types within the program.
common/player.c: Change a buffer from char to uint8.
common/proto.h: Rebuilt.
common/script.c: Change it to take in a uint8 for data. Change %lld
to use FMT64
common/script.h: Update declaration of script_watch()
gtk/config.c: Remove const from titles. While they may be used as a const,
the gtk function they are passed to isn't declared that way.
gtk/gx11.c: Remove unused function end_windows(). Replace %lld with
FMT64. Removed const from title declaration.
gtk/inventory.c: Remove const from titles declaration. re-enable cast
for image creation for tabs.
gtk/keys.c: Add note about compiler warning and bad code technique for
for getting the selection.
gtk/png.c: Removed unused variables/function - png_to_gdkpixmap()
gtk/text.c: Change void_callback() to match format of other callbacks
to prevent warning.
gtk-v2/src/gtk2proto.h: Rebuilt.
gtk-v2/src/png.c: Remove unused variable.
gtk-v2/src/stats.c: Replace %lld with FMT64.
pixmaps/question.111, pixmaps/stipple.111, pixmaps/stipple.112: Change
types to be char and not unsigned char, since that is what
the function tha uses this data expects.
x11/x11.c: Replace %lld with FMT64
---
MSW 2006-07-04

23 lines of code changed in 6 files:

  • trunk/client/gtk: config.c (+1 -1), gx11.c (+4 -24), inventory.c (+2 -2), keys.c (+15 -9), png.c (-217), text.c (+1 -1)
mwedel 2006-07-05 00:21 Rev.: 4664

Changes related to logging of version information.
aclocal, Makefiles.*: Rebuilt for new file in gtk-v2/src.
common/misc.c: Change MINLOG to be a variable so it can be changed via
command line options.
gtk/gx11.c: Have bug window display rcsid versions. Add -loglevel command
line option. Move printing of some log messages until after we process
command line options since that can change the log level.
gtk-v2/gtk-v2.glade: Add an about window for the gtkv2 client.
gtk-v2/src/Makefile.am: Add about.c file.
gtk-v2/src/about.c: file for about window.
gtk-v2/src/callbacks.h: on_about_close_clicked() added by glade.
gtk-v2/src/interface.c, interface.c: New logic for about window. New
function - create_about_window()
gtk-v2/src/main.c: Add -loglevel command line option. Move printing of some
log messages after we process command line options.
gtk-v2/src/menubar.c: remove menu_about() - now in about.c
MSW 2006-07-04

73 lines of code changed in 2 files:

  • trunk/client/gtk: Makefile.in (+1 -3), gx11.c (+72 -19)
mwedel 2006-05-21 19:41 Rev.: 4595

gtk/gx11.c, gtk-v2/src/main.c: Add checks for csocket.fd==-1 after return
of DoClient. With change in DoClient to close the socket, the network
routines are not called again (like they used to be), and thus the
GUI was't really aware the socket was closed, and wouldn't prompt for
metaserver selection.
MSW 2006-05-21

9 lines of code changed in 1 file:

  • trunk/client/gtk: gx11.c (+9)
mwedel 2006-05-15 00:57 Rev.: 4566

This commit adds client side support for the map2 & tick protocol commands.
In additional the the necessary decode logic, more layers are also added
to the map.
--
common/Makefile.am/.in: Fix proto directive
common/client.c: Add global tick variable. Add links to handle map2
and tick protocol commands. Update setup request sent to server
to request to use the tick and map2 commands.
common/client.h: Add additional fields to Animations structure. Increase
MAX_MAP_OFFSET to match the value on the server.
common/commands.c: Add parsing of return of map2 failures on setup command
so that client can fall back. Add additional initializations for
new fields in AnimCmd(). Change definition of NUM_LAYERS to match
what the map1 command wants/expects. Add Map2Cmd() to decode
map2 protocol command. Do some whitepsace clean of ExtSmooth().
Add TickCmd()
common/init.c: Add seeing of random number generator.
common/mapdata.c: Rewrite CLEAR_CELLS macro to handle additional layers.
Clear animation data in expand_clear_face(). Change MAXLAYERS to
MAP1_LAYERS since map2 increase MAXLAYERS. Add support functions for
setting data in the map2 command.
common/mapdata.h: Increase MAXLAYERS, add MAP1_LAYERS define to old number
of layers. Add animation data to MapCellLayer.
common/newclient.h: Add various defines related to the map2 data.
common/proto.h: Rebuilt
gtk/gx11.c: Add cleint_tick() to handle map animations. Update
do_timeout() to not do animations if we are getting tick data.
gtk-v2/src/config.c: Fix bug in config code where it wasn't enabling
darkness when player switched back from no darkness mode to some
mode.
gtk-v2/src/main.c: Add client_tick() to handle animations. Update
do_timeout() to not do animations if tick is set.
gtk-v2/src/opengl.c: Fix drawing logic where objects which were visible
but in which the bottom right corner was off the map was not being
drawn - only a problem in opengl since it only draws the object
when it finds the head, does not draw each piece.
sound-src/Makefile.am/.in: Fix creation of sounds file - was using
wrong variable name.
x11/xutil.c: Add basic client_tick() that is a callback from the common code.
MSW 2006-05-14

20 lines of code changed in 1 file:

  • trunk/client/gtk: gx11.c (+20 -10)
ryo_saeba 2006-03-14 13:08 Rev.: 4531

Fix memory leaks and uninitialized variable.

16 lines of code changed in 1 file:

  • trunk/client/gtk: keys.c (+16 -2)
akirschbaum 2006-03-04 10:56 Rev.: 4506

Fix bug #1442523 (Crash when pressing TAB during login). Also fix undefined
behavior due to overlapping strings passed to strncpy().

1 lines of code changed in 1 file:

  • trunk/client/gtk: gx11.c (+1 -1)
mwedel 2006-02-28 03:09 Rev.: 4505

More updates for the gtkv2 client. Add a config window to change the
config options. Note this isn't quite as cluttered as the gtkv1 config
window because only the options that affect the gtkv2 client are presented.
---
common/client.h: Add CFG_LT_NONE to use instead of 0.
common/init.c: Change 'sdl' config name to 'displaymode'. the CONFIG_
parameter was changed a while back, but still used this old name in the
save file.
gtk/config.c: Add some logic to handle 'sdl' legacy config mode.
gtk-v2/gtk-v2.glade: Updated with new config window.
gtk-v2/src/callbacks.h: rebuilt by glade-2
gtk-v2/src/config.c: Lots of new code to handle setting/getting of config
values in config window.
gtk-v2/src/gtk2proto.h: Rebuilt.
gtk-v2/src/interface.c: Rebuilt by glade-2
gtk-v2/src/interface.h: Rebuilt by glade-2
gtk-v2/src/main.c: Add call to config_init() to initialize config window.
MSW 2006-02-27

4 lines of code changed in 1 file:

  • trunk/client/gtk: config.c (+4)
akirschbaum 2006-02-23 15:18 Rev.: 4485

Apply patch #1433271 (code-cleanup) by Stefan Huehner: Add const and static,
remove unused variables

87 lines of code changed in 12 files:

  • trunk/client/gtk: config.c (+7 -7), gtkproto.h (+1 -32), gx11.c (+49 -55), image.c (+1 -1), inventory.c (+1 -1), keys.c (+1 -1), map.c (+1 -1), png.c (+2 -2), rcs-id.h (+9 -9), sdl.c (+1 -1), sound.c (+2 -2), text.c (+12 -12)
mwedel 2006-02-23 03:30 Rev.: 4484

More improvements to the gtk-v2 client:
- Add spell selection window similar to that in the gtk-v1 client.
- Make it so that clicking on the headers in the metaserver and keybinding
selection windows will result in table be sorted by that header.
--
*/Makefile.in: Rebuilt by automake.
aclocal.m4: Updated by aclocal.
gtk-v2/TODO: Remove things that have been done, add other things mentioned
on mailing list that should be done.
gtk-v2/gtk-v2.glade: Updated with new spell selection window.
gtk-v2/src/Makefile.am: Add spells.c file
gtk-v2/src/spells.c: File that handles spell selection window.
gtk-v2/src/callbacks.h: Updated by glade
gtk-v2/src/gtk2proto.h: rebuilt
gtk-v2/src/interface.c: Updated by glade.
gtk-v2/src/interface.h: Updated by glade.
gtk-v2/src/keys.c: Add necessary calls to enable sorting of table by
clicking on headers.
gtk-v2/src/main.c: Add call to update_spell_information() if spell information
has changed.
gtk-v2/src/metaserver.c: Add necessary calls to enable sorting of table by
clicking on headers. Convert the idletime and number of players columns
to be ints - this makes the sort work as expected, and actually simplifies
the code a little.
gtk-v2/src/support.h: Rebuilt by glade.
MSW 2006-02-22

3 lines of code changed in 1 file:

  • trunk/client/gtk: Makefile.in (+3 -1)
cavesomething 2006-02-20 18:00 Rev.: 4477

make the spell list display generic as the skill if a spell doesn't use one

2 lines of code changed in 1 file:

  • trunk/client/gtk: gx11.c (+2 -1)
akirschbaum 2006-02-16 17:32 Rev.: 4458

Apply patch #1430279 (code-cleanup: const, static, etc) by Stefan Huehner.

104 lines of code changed in 10 files:

  • trunk/client/gtk: config.c (+1 -1), gtkproto.h (+5 -5), gx11.c (+53 -53), help.c (+1 -1), inventory.c (+6 -6), keys.c (+4 -4), png.c (+1 -1), sdl.c (+1 -1), sound.c (+2 -2), text.c (+30 -30)
cavesomething 2006-02-08 20:47 Rev.: 4436

make the mesage displayed on trying to drop locked items more descriptive

2 lines of code changed in 1 file:

  • trunk/client/gtk: inventory.c (+2 -1)
cavesomething 2006-01-31 16:11 Rev.: 4412

remove option to display resistances without a scrollbar

34 lines of code changed in 2 files:

  • trunk/client/gtk: config.c (+11 -32), gx11.c (+23 -90)
cavesomething 2006-01-31 09:22 Rev.: 4411

remove coloured inventory and text options and support for black and white monitors, change cfclient to a grey colourscheme

2 lines of code changed in 4 files:

  • trunk/client/gtk: config.c (-8), gtkproto.h (-1), gx11.c (-10), inventory.c (+2 -21)
cavesomething 2006-01-21 18:52 Rev.: 4407

add a 'spell options' box to allow extra options to be passed to spells, make any mouse button change the spell description, not just the left one and reorder some gtk function calls to improve clarity

43 lines of code changed in 1 file:

  • trunk/client/gtk: gx11.c (+43 -23)
ryo_saeba 2006-01-19 16:50 Rev.: 4404

Fix compilation for some compilers.

7 lines of code changed in 2 files:

  • trunk/client/gtk: gx11.c (+3 -2), inventory.c (+4 -4)
cavesomething 2006-01-19 12:17 Rev.: 4402

spell listing suppport for common and gcfclient

156 lines of code changed in 1 file:

  • trunk/client/gtk: gx11.c (+156 -10)
cavesomething 2006-01-16 20:13 Rev.: 4401

make skills appear in a scroll pane, and show all known skills, not just those with exp

12 lines of code changed in 1 file:

  • trunk/client/gtk: gx11.c (+12 -4)
cavesomething 2006-01-15 21:02 Rev.: 4400

make the Close button in gcfclient be greyed-out when there is no container open.

9 lines of code changed in 1 file:

  • trunk/client/gtk: inventory.c (+9 -3)
akirschbaum 2005-12-11 07:44 Rev.: 4129

gtk/{map.c,sdl.c}, x11/x11.c: General cleanup - just whitespace changes.

10 lines of code changed in 2 files:

  • trunk/client/gtk: map.c (+7 -7), sdl.c (+3 -3)
gros 2005-11-16 05:25 Rev.: 4038

Enable per-server, per-character keybindings on both *nix and win32 systems.
Undefine MULTKEYS at the beginning of client.h to switch back to the old
behavior.

325 lines of code changed in 2 files:

  • trunk/client/gtk: gx11.c (+296 -293), keys.c (+29 -29)
ryo_saeba 2005-11-12 08:58 Rev.: 4032

Patch 1352490 (newpickup rings/amulets client side) courtesy anonymous

7 lines of code changed in 1 file:

  • trunk/client/gtk: gx11.c (+7)
akirschbaum 2005-11-02 14:53 Rev.: 3969

gtk/gx11.c, gtk-v2/src/image.c: Initialize smooth_face field when allocating
pixmaps array.

1 lines of code changed in 1 file:

  • trunk/client/gtk: gx11.c (+1)
akirschbaum 2005-11-01 08:46 Rev.: 3964

Add support for newpickup PU_NOT_CURSED (ignore cursed items) flag.

10 lines of code changed in 1 file:

  • trunk/client/gtk: gx11.c (+10)
ryo_saeba 2005-11-01 05:32 Rev.: 3956

Fallback to PIXMAP mode when SDL is not built in.

5 lines of code changed in 1 file:

  • trunk/client/gtk: config.c (+5)
akirschbaum 2005-10-29 13:44 Rev.: 3945

Fix bug #1288647 (typing text in password mode). Now hidden input (for
password entry) is reliably turned off afterwards.

2 lines of code changed in 1 file:

  • trunk/client/gtk: gx11.c (+2 -5)
akirschbaum 2005-10-28 15:24 Rev.: 3940

gtk/text.c: Print MOTD into text window if using -nopopups mode. Previously it
was discarded in -nopopups mode.

4 lines of code changed in 1 file:

  • trunk/client/gtk: text.c (+4)
cavesomething 2005-09-21 23:57 Rev.: 3691

Implement RFE 1090049 - add client message timestamp option

17 lines of code changed in 2 files:

  • trunk/client/gtk: config.c (+3 -1), gx11.c (+14 -4)
ryo_saeba 2005-09-10 09:19 Rev.: 3617

Clean compilation warnings.

2 lines of code changed in 1 file:

  • trunk/client/gtk: inventory.c (+2 -2)
ryo_saeba 2005-09-05 15:16 Rev.: 3603

Some speed tweaks.

24 lines of code changed in 2 files:

  • trunk/client/gtk: image.c (+13 -1), map.c (+11 -2)
ryo_saeba 2005-09-04 15:40 Rev.: 3599

A few tweaks to gain a few ms execution time :p

35 lines of code changed in 3 files:

  • trunk/client/gtk: gx11.c (+1 -1), gx11.h (+3), inventory.c (+31 -16)

(127 more)

Generated by StatSVN 0.7.0