From a26ceceb009b32e3d80700de21376fc64b67d957 Mon Sep 17 00:00:00 2001 From: Yann Dirson Date: Thu, 31 Mar 2005 22:19:20 +0000 Subject: [PATCH] classify more files in wesnoth --- examples/graphincludes/project/wesnoth.pm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/examples/graphincludes/project/wesnoth.pm b/examples/graphincludes/project/wesnoth.pm index e80fc1f..5782e3b 100644 --- a/examples/graphincludes/project/wesnoth.pm +++ b/examples/graphincludes/project/wesnoth.pm @@ -27,12 +27,14 @@ sub filelabel { return $1; } elsif ($file =~ m!^(mapgen|mapgen_dialog|cavegen|map_create)\..*!) { return 'mapcreator'; - } elsif ($file =~ m!^(array|astarnode|config|filesystem|game_config|gettext|global|language|log|map|pathfind|pathutils|race|random|scoped_resource|terrain|thread|unit|util|variable|wassert|(.*/xcoll))\..*!) { + } elsif ($file =~ m!^(array|astarnode|config|filesystem|game_config|gettext|global|language|log|map|pathfind|pathutils|race|random|scoped_resource|terrain|thread|tstring|unit|unit_types|util|variable|wassert|(.*/xcoll))\..*!) { return 'core'; } elsif ($file =~ m!^(clipboard|cursor|font|image|sdl_utils|tooltips|video)\..*!) { return 'graphics'; - } elsif ($file =~ m!^(events|preferences|show_dialog)\..*!) { - return 'guicore'; + } elsif ($file =~ m!^(about|builder|display|events|preferences|show_dialog|sound|theme)\..*!) { + return 'uicore'; + } elsif ($file =~ m!^(game|help|titlescreen)\..*!) { + return 'gameclient'; } elsif ($file =~ m!^(editor|server|serialization|widgets)/.*!) { return $1; } else { @@ -53,7 +55,7 @@ sub defaultcolors { graphics => 'peachpuff', widgets => 'linen', - guicore => 'lavenderblush', + uicore => 'lavenderblush', multiplayer => 'palegreen', -- 2.11.4.GIT