stratagus-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Stratagus-CVS] stratagus/data/scripts ai.lua buttons.lua campa...


From: address@hidden
Subject: [Stratagus-CVS] stratagus/data/scripts ai.lua buttons.lua campa...
Date: 14 Jan 2004 10:44:06 +1100

CVSROOT:        /home/strat
Module name:    stratagus
Changes by:      <address@hidden>       04/01/14 10:44:06

Modified files:
        data/scripts   : ai.lua buttons.lua campaigns.lua 
                         constructions.lua menus.lua stratagus.lua 
                         tilesets.lua ui.lua units.lua upgrade.lua 
                         wc2.lua 

Log message:
        Move ccl dir to scripts

Patches:
Index: stratagus/data/scripts/ai.lua
diff -u stratagus/data/scripts/ai.lua:1.1 stratagus/data/scripts/ai.lua:1.2
--- stratagus/data/scripts/ai.lua:1.1   Thu Jan  1 16:22:29 2004
+++ stratagus/data/scripts/ai.lua       Wed Jan 14 10:44:04 2004
@@ -8,7 +8,7 @@
 --                        T H E   W A R   B E G I N S
 --         Stratagus - A free fantasy real time strategy game engine
 --
---      ai.ccl - Define the AI.
+--      ai.lua - Define the AI.
 --
 --      (c) Copyright 2000-2004 by Lutz Sammer and Jimmy Salmon
 --
@@ -26,7 +26,7 @@
 --      along with this program; if not, write to the Free Software
 --      Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  
USA
 --
---      $Id: ai.lua,v 1.1 2004/01/01 05:22:29 jsalmon3 Exp $
+--      $Id: ai.lua,v 1.2 2004/01/13 23:44:04 wizzard Exp $
 
 
 --(define (ai:sleep) () #t)
@@ -39,7 +39,7 @@
 --  AI helper table, the AI must know where to build units,
 --  where to research spells, where to upgrade units.
 --  If this is allowed and which dependencies exists, isn't
---  handled here. (see upgrade.ccl)
+--  handled here. (see upgrade.lua)
 --
 --  NOTE: perhaps this could later be used to build the buttons?
 --
@@ -849,10 +849,10 @@
 
 
 
-Load("ccl/ai/passive.lua")
-Load("ccl/ai/air_attack.lua")
-Load("ccl/ai/land_attack.lua")
-Load("ccl/ai/sea_attack.lua")
+Load("scripts/ai/passive.lua")
+Load("scripts/ai/air_attack.lua")
+Load("scripts/ai/land_attack.lua")
+Load("scripts/ai/sea_attack.lua")
 
 
 --[[
Index: stratagus/data/scripts/buttons.lua
diff -u stratagus/data/scripts/buttons.lua:1.3 
stratagus/data/scripts/buttons.lua:1.4
--- stratagus/data/scripts/buttons.lua:1.3      Mon Dec 15 16:14:47 2003
+++ stratagus/data/scripts/buttons.lua  Wed Jan 14 10:44:05 2004
@@ -8,7 +8,7 @@
 --                       T H E   W A R   B E G I N S
 --        Stratagus - A free fantasy real time strategy game engine
 --
---     buttons.ccl     -       Define the general unit-buttons.
+--     buttons.lua     -       Define the general unit-buttons.
 --
 --     (c) Copyright 2001 by Vladi Belperchinov-Shabanski and Lutz Sammer
 --
@@ -26,12 +26,12 @@
 --      along with this program; if not, write to the Free Software
 --      Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  
USA
 --
---     $Id: buttons.lua,v 1.3 2003/12/15 05:14:47 jsalmon3 Exp $
+--     $Id: buttons.lua,v 1.4 2004/01/13 23:44:05 wizzard Exp $
 
 -- Load the buttons of all races
 
-Load("ccl/human/buttons.lua")
-Load("ccl/orc/buttons.lua")
+Load("scripts/human/buttons.lua")
+Load("scripts/orc/buttons.lua")
 
 ------------------------------------------------------------------------------
 --     Define unit-button.
Index: stratagus/data/scripts/campaigns.lua
diff -u stratagus/data/scripts/campaigns.lua:1.1 
stratagus/data/scripts/campaigns.lua:1.2
--- stratagus/data/scripts/campaigns.lua:1.1    Sun Nov 30 16:40:29 2003
+++ stratagus/data/scripts/campaigns.lua        Wed Jan 14 10:44:05 2004
@@ -26,20 +26,20 @@
 --      along with this program; if not, write to the Free Software
 --      Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  
USA
 --
---     $Id: campaigns.lua,v 1.1 2003/11/30 05:40:29 jsalmon3 Exp $
+--     $Id: campaigns.lua,v 1.2 2004/01/13 23:44:05 wizzard Exp $
 
 --=============================================================================
 --     Define all campaigns.
 
 DefineCampaign("human", "name", "~!Human campaign",
-  "file", "ccl/human/campaign1.lua")
+  "file", "scripts/human/campaign1.lua")
 DefineCampaign("orc", "name", "~!Orc campaign",
-  "file", "ccl/orc/campaign1.lua")
+  "file", "scripts/orc/campaign1.lua")
 if (expansion) then
 do
   DefineCampaign("human-exp", "name", "H~!uman expansion levels",
-    "file", "ccl/human/campaign2.lua")
+    "file", "scripts/human/campaign2.lua")
   DefineCampaign("orc-exp", "name", "O~!rc expansion levels",
-    "file", "ccl/orc/campaign2.lua")
+    "file", "scripts/orc/campaign2.lua")
 end
 end
Index: stratagus/data/scripts/constructions.lua
diff -u stratagus/data/scripts/constructions.lua:1.2 
stratagus/data/scripts/constructions.lua:1.3
--- stratagus/data/scripts/constructions.lua:1.2        Mon Dec 15 16:50:17 2003
+++ stratagus/data/scripts/constructions.lua    Wed Jan 14 10:44:05 2004
@@ -8,7 +8,7 @@
 --                       T H E   W A R   B E G I N S
 --        Stratagus - A free fantasy real time strategy game engine
 --
---     constructions.ccl       -       Define the constructions.
+--     constructions.lua       -       Define the constructions.
 --
 --     (c) Copyright 2001-2003 by Lutz Sammer and Jimmy Salmon
 --
@@ -26,10 +26,10 @@
 --      along with this program; if not, write to the Free Software
 --      Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  
USA
 --
---     $Id: constructions.lua,v 1.2 2003/12/15 05:50:17 jsalmon3 Exp $
+--     $Id: constructions.lua,v 1.3 2004/01/13 23:44:05 wizzard Exp $
 
-Load("ccl/human/constructions.lua")
-Load("ccl/orc/constructions.lua")
+Load("scripts/human/constructions.lua")
+Load("scripts/orc/constructions.lua")
 
 DefineConstruction("construction-none", {
   Files = {
Index: stratagus/data/scripts/menus.lua
diff -u stratagus/data/scripts/menus.lua:1.2 
stratagus/data/scripts/menus.lua:1.3
--- stratagus/data/scripts/menus.lua:1.2        Thu Nov 20 14:44:47 2003
+++ stratagus/data/scripts/menus.lua    Wed Jan 14 10:44:05 2004
@@ -8,7 +8,7 @@
 --                       T H E   W A R   B E G I N S
 --        Stratagus - A free fantasy real time strategy game engine
 --
---     menus.ccl       -       Menus configuration
+--     menus.lua       -       Menus configuration
 --
 --     (c) Copyright 2002-2003 by Kachalov Anton and Jimmy Salmon.
 --
@@ -26,12 +26,12 @@
 --      along with this program; if not, write to the Free Software
 --      Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  
USA
 --
---     $Id: menus.lua,v 1.2 2003/11/20 03:44:47 jsalmon3 Exp $
+--     $Id: menus.lua,v 1.3 2004/01/13 23:44:05 wizzard Exp $
 
 --
 -- load the keystroke helps
 --
-Load("ccl/keystrokes.lua")
+Load("scripts/keystrokes.lua")
 
 --
 -- define the menu graphics
Index: stratagus/data/scripts/stratagus.lua
diff -u stratagus/data/scripts/stratagus.lua:1.10 
stratagus/data/scripts/stratagus.lua:1.11
--- stratagus/data/scripts/stratagus.lua:1.10   Fri Jan  2 11:57:32 2004
+++ stratagus/data/scripts/stratagus.lua        Wed Jan 14 10:44:05 2004
@@ -8,7 +8,7 @@
 --                        T H E   W A R   B E G I N S
 --         Stratagus - A free fantasy real time strategy game engine
 --
---      stratagus.ccl - The craft configuration language.
+--      stratagus.lua - The craft configuration language.
 --
 --      (c) Copyright 1998-2003 by Lutz Sammer
 --
@@ -26,14 +26,14 @@
 --      along with this program; if not, write to the Free Software
 --      Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  
USA
 --
---      $Id: stratagus.lua,v 1.10 2004/01/02 00:57:32 jsalmon3 Exp $
+--      $Id: stratagus.lua,v 1.11 2004/01/13 23:44:05 wizzard Exp $
 
--- For documentation see stratagus/doc/ccl/ccl.html
+-- For documentation see stratagus/doc/scripts/scripts.html
 --[[
 (cond ((equal? *scheme* 'guile)
-       (load "guile.ccl"))
+       (load "guile.scripts"))
       ((equal? *scheme* 'siod)
-       (load "ccl/siod.ccl" #f #t)))
+       (load "scripts/siod.scripts" #f #t)))
 ]]
 print("Stratagus default config file loading ...\n")
 
@@ -46,8 +46,8 @@
 
 --  Edit the next sections to get your look and feel.
 --  Note, some of those values are overridden by user preferences,
---  see ~/.stratagus/preferences1.ccl
---  and ~/.stratagus/gamename/preferences2.ccl
+--  see ~/.stratagus/preferences1.scripts
+--  and ~/.stratagus/gamename/preferences2.scripts
 
 
 --  Set the game contrast,brightness,saturation.
@@ -374,27 +374,27 @@
 -------------------------------------------------------------------------------
 
 --- Uses Stratagus Library path!
-Load("ccl/wc2.lua")
+Load("scripts/wc2.lua")
 
-Load("ccl/tilesets.lua")
-Load("ccl/icons.lua")
+Load("scripts/tilesets.lua")
+Load("scripts/icons.lua")
 if (WithSound()) then
-  Load("ccl/sound.lua")
+  Load("scripts/sound.lua")
 end
-Load("ccl/missiles.lua")
-Load("ccl/constructions.lua")
-Load("ccl/spells.lua")
-Load("ccl/units.lua")
-Load("ccl/upgrade.lua")
-Load("ccl/fonts.lua")
-Load("ccl/buttons.lua")
-Load("ccl/ui.lua")
-Load("ccl/ai.lua")
-Load("ccl/campaigns.lua")
-Load("ccl/credits.lua")
-Load("ccl/tips.lua")
-Load("ccl/ranks.lua")
-Load("ccl/menus.lua")
-Load("ccl/cheats.lua")
+Load("scripts/missiles.lua")
+Load("scripts/constructions.lua")
+Load("scripts/spells.lua")
+Load("scripts/units.lua")
+Load("scripts/upgrade.lua")
+Load("scripts/fonts.lua")
+Load("scripts/buttons.lua")
+Load("scripts/ui.lua")
+Load("scripts/ai.lua")
+Load("scripts/campaigns.lua")
+Load("scripts/credits.lua")
+Load("scripts/tips.lua")
+Load("scripts/ranks.lua")
+Load("scripts/menus.lua")
+Load("scripts/cheats.lua")
 
 print("... ready!\n")
Index: stratagus/data/scripts/tilesets.lua
diff -u stratagus/data/scripts/tilesets.lua:1.1 
stratagus/data/scripts/tilesets.lua:1.2
--- stratagus/data/scripts/tilesets.lua:1.1     Thu Nov 20 09:09:10 2003
+++ stratagus/data/scripts/tilesets.lua Wed Jan 14 10:44:05 2004
@@ -8,7 +8,7 @@
 --                       T H E   W A R   B E G I N S
 --        Stratagus - A free fantasy real time strategy game engine
 --
---     tilesets.ccl    -       Define the used tilesets.
+--     tilesets.lua    -       Define the used tilesets.
 --
 --     (c) Copyright 1998,2000-2003 by Lutz Sammer and Jimmy Salmon
 --
@@ -26,25 +26,25 @@
 --      along with this program; if not, write to the Free Software
 --      Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  
USA
 --
---     $Id: tilesets.lua,v 1.1 2003/11/19 22:09:10 jsalmon3 Exp $
+--     $Id: tilesets.lua,v 1.2 2004/01/13 23:44:05 wizzard Exp $
 
 --=============================================================================
 --     Load the different tileset definitions
 --
 --     FIXME: need a way to automatic load all available tileset definitions
 
-Load("ccl/wc2-config.lua")
+Load("scripts/wc2-config.lua")
 
 DefineTileset("tileset-summer", "class", "summer", "name", "Forest",
-  "file", "ccl/tilesets/summer.lua")
+  "file", "scripts/tilesets/summer.lua")
 DefineTileset("tileset-winter", "class", "winter", "name", "Winter",
-  "file", "ccl/tilesets/winter.lua")
+  "file", "scripts/tilesets/winter.lua")
 DefineTileset("tileset-wasteland", "class", "wasteland", "name", "Wasteland",
-  "file", "ccl/tilesets/wasteland.lua")
+  "file", "scripts/tilesets/wasteland.lua")
 if (expansion) then
   DefineTileset("tileset-swamp", "class", "swamp", "name", "Swamp",
-    "file", "ccl/tilesets/swamp.lua")
+    "file", "scripts/tilesets/swamp.lua")
 else
   DefineTileset("tileset-swamp", "class", "swamp", "name", "Swamp",
-    "file", "ccl/tilesets/dummy-swamp.lua")
+    "file", "scripts/tilesets/dummy-swamp.lua")
 end
Index: stratagus/data/scripts/ui.lua
diff -u stratagus/data/scripts/ui.lua:1.2 stratagus/data/scripts/ui.lua:1.3
--- stratagus/data/scripts/ui.lua:1.2   Sat Jan 10 16:14:03 2004
+++ stratagus/data/scripts/ui.lua       Wed Jan 14 10:44:05 2004
@@ -8,7 +8,7 @@
 --                       T H E   W A R   B E G I N S
 --        Stratagus - A free fantasy real time strategy game engine
 --
---     ui.ccl          -       Define the user interface
+--     ui.lua          -       Define the user interface
 --
 --     (c) Copyright 2000,2002 by Lutz Sammer
 --
@@ -26,10 +26,10 @@
 --      along with this program; if not, write to the Free Software
 --      Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  
USA
 --
---     $Id: ui.lua,v 1.2 2004/01/10 05:14:03 jsalmon3 Exp $
+--     $Id: ui.lua,v 1.3 2004/01/13 23:44:05 wizzard Exp $
 
-Load("ccl/human/ui.lua")
-Load("ccl/orc/ui.lua")
+Load("scripts/human/ui.lua")
+Load("scripts/orc/ui.lua")
 
 DefineCursor({
   Name = "cursor-glass",
Index: stratagus/data/scripts/units.lua
diff -u stratagus/data/scripts/units.lua:1.4 
stratagus/data/scripts/units.lua:1.5
--- stratagus/data/scripts/units.lua:1.4        Mon Jan  5 09:26:32 2004
+++ stratagus/data/scripts/units.lua    Wed Jan 14 10:44:05 2004
@@ -8,7 +8,7 @@
 --                       T H E   W A R   B E G I N S
 --        Stratagus - A free fantasy real time strategy game engine
 --
---     units.ccl       -       Define the used unit-types.
+--     units.lua       -       Define the used unit-types.
 --
 --     (c) Copyright 1998,2000-2002 by Lutz Sammer
 --
@@ -26,10 +26,10 @@
 --      along with this program; if not, write to the Free Software
 --      Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  
USA
 --
---     $Id: units.lua,v 1.4 2004/01/04 22:26:32 jsalmon3 Exp $
+--     $Id: units.lua,v 1.5 2004/01/13 23:44:05 wizzard Exp $
 
 -- Load the animations for the units.
-Load("ccl/anim.lua")
+Load("scripts/anim.lua")
 
 --=============================================================================
 --     Define unit-types.
@@ -427,6 +427,6 @@
   Sounds = {} } )
 
 -- Load the different races
-Load("ccl/human/units.lua")
-Load("ccl/orc/units.lua")
+Load("scripts/human/units.lua")
+Load("scripts/orc/units.lua")
 
Index: stratagus/data/scripts/upgrade.lua
diff -u stratagus/data/scripts/upgrade.lua:1.1 
stratagus/data/scripts/upgrade.lua:1.2
--- stratagus/data/scripts/upgrade.lua:1.1      Sun Nov 23 02:52:31 2003
+++ stratagus/data/scripts/upgrade.lua  Wed Jan 14 10:44:05 2004
@@ -8,7 +8,7 @@
 --                       T H E   W A R   B E G I N S
 --        Stratagus - A free fantasy real time strategy game engine
 --
---     upgrade.ccl     -       Define the dependencies and upgrades.
+--     upgrade.lua     -       Define the dependencies and upgrades.
 --
 --     (c) Copyright 2001 by Lutz Sammer
 --
@@ -26,11 +26,11 @@
 --      along with this program; if not, write to the Free Software
 --      Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  
USA
 --
---     $Id: upgrade.lua,v 1.1 2003/11/22 15:52:31 jsalmon3 Exp $
+--     $Id: upgrade.lua,v 1.2 2004/01/13 23:44:05 wizzard Exp $
 
 -- Load the different races
-Load("ccl/human/upgrade.lua")
-Load("ccl/orc/upgrade.lua")
+Load("scripts/human/upgrade.lua")
+Load("scripts/orc/upgrade.lua")
 
 --     NOTE: Save can generate this table.
 
Index: stratagus/data/scripts/wc2.lua
diff -u stratagus/data/scripts/wc2.lua:1.1 stratagus/data/scripts/wc2.lua:1.2
--- stratagus/data/scripts/wc2.lua:1.1  Thu Nov 20 09:16:34 2003
+++ stratagus/data/scripts/wc2.lua      Wed Jan 14 10:44:05 2004
@@ -8,7 +8,7 @@
 --                       T H E   W A R   B E G I N S
 --        Stratagus - A free fantasy real time strategy game engine
 --
---     wc2.ccl         -       WC2 compatibility level
+--     wc2.lua         -       WC2 compatibility level
 --
 --     (c) Copyright 2001-2003 by Lutz Sammer and Jimmy Salmon
 --
@@ -26,7 +26,7 @@
 --      along with this program; if not, write to the Free Software
 --      Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  
USA
 --
---     $Id: wc2.lua,v 1.1 2003/11/19 22:16:34 jsalmon3 Exp $
+--     $Id: wc2.lua,v 1.2 2004/01/13 23:44:05 wizzard Exp $
 
 DefineRaceNames(
   "race", {
@@ -211,4 +211,4 @@
 SetColorBuildingCycleStart(205)
 SetColorBuildingCycleEnd(207)
 
-Load("ccl/wc2-config.lua")
+Load("scripts/wc2-config.lua")




reply via email to

[Prev in Thread] Current Thread [Next in Thread]