diff --git a/sc2/ChangeLog b/sc2/ChangeLog index 9a1fedcfd..6016d1a38 100644 --- a/sc2/ChangeLog +++ b/sc2/ChangeLog @@ -1,4 +1,5 @@ Changes towards version 0.7: +- Removed some legacy source code files related to resources - SvdB - Put SuperMelee source files in separate subdirectory - SvdB - Added additive and alpha drawing modes to graphics lib - Alex - Fixed black pixel gaps between the planet and shield when entering the diff --git a/sc2/doc/devel/historical b/sc2/doc/devel/historical new file mode 100644 index 000000000..63697ffba --- /dev/null +++ b/sc2/doc/devel/historical @@ -0,0 +1,39 @@ +This file is intended as a place to document historically interesting +curiosities in the UQM source and content, which have been deleted from +the current source/content tree. + +This file is probably not complete. + + +== .res files === + +The Star Control source code contained files with the extension .res, which +contained a description of the packages (.pkg or .ndx) files to be generated. + +There were .res files for each ship and each race which you can communicate +with. These files 'included' the file 'star3do.res', which itself included +'star3do.typ'. + +There were also header files icode.h, igfxres.h, imusicre.h, isndres.h, +istrtab.h, resinst.h, respkg.h and restypes.h in each of the ship and comm +directories, which defined a few resource constants, which were presumably also +generated from these .res files. + + +== Outtake not taken out == + +There was an outtake accidentally left in the original speech for the Druuge. +It can still be found at + http://sc2.svn.sourceforge.net/viewvc/*checkout*/sc2/trunk/sc2/content/comm/druuge/druug011.ogg?revision=133&pathrev=1113 + + +== Original title screen and menu == + +The original title screen -- which included the text 'Star Control' and +'Accolade' and could hence not be used in UQM -- can be found at + http://sc2.svn.sourceforge.net/viewvc/sc2/trunk/sc2/content/lbm/title.tga?revision=6&pathrev=6 +The original main menu (which did not include 'setup' or 'quit' options) +can be found at + http://sc2.svn.sourceforge.net/viewvc/sc2/trunk/sc2/content/lbm/newgame0.tga?revision=6&pathrev=6 + + diff --git a/sc2/src/uqm/comm/arilou/arilou.res b/sc2/src/uqm/comm/arilou/arilou.res deleted file mode 100644 index 55ad99385..000000000 --- a/sc2/src/uqm/comm/arilou/arilou.res +++ /dev/null @@ -1,10 +0,0 @@ -INCLUDE ../../star3do.typ - -PATH comm/arilou - -PACKAGE ARILOU_PACKAGE arilou.con - GFXRES ARILOU_PMAP_ANIM arilou.ani - FONTRES ARILOU_FONT arilou.fon - MUSICRES ARILOU_MUSIC arilou.mod - STRTAB ARILOU_CONVERSATION_PHRASES arilou.txt - diff --git a/sc2/src/uqm/comm/arilou/ifontres.h b/sc2/src/uqm/comm/arilou/ifontres.h deleted file mode 100644 index 0e135dddb..000000000 --- a/sc2/src/uqm/comm/arilou/ifontres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ARILOU_FONT "comm.arilou.font" diff --git a/sc2/src/uqm/comm/arilou/igfxres.h b/sc2/src/uqm/comm/arilou/igfxres.h deleted file mode 100644 index 25256aa91..000000000 --- a/sc2/src/uqm/comm/arilou/igfxres.h +++ /dev/null @@ -1,6 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ARILOU_COLOR_MAP "comm.arilou.colortable" -#define ARILOU_PMAP_ANIM "comm.arilou.graphics" diff --git a/sc2/src/uqm/comm/arilou/imusicre.h b/sc2/src/uqm/comm/arilou/imusicre.h deleted file mode 100644 index 625488bf3..000000000 --- a/sc2/src/uqm/comm/arilou/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ARILOU_MUSIC "comm.arilou.music" diff --git a/sc2/src/uqm/comm/arilou/istrtab.h b/sc2/src/uqm/comm/arilou/istrtab.h deleted file mode 100644 index 368375d1c..000000000 --- a/sc2/src/uqm/comm/arilou/istrtab.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ARILOU_CONVERSATION_PHRASES "comm.arilou.dialogue" diff --git a/sc2/src/uqm/comm/arilou/resinst.h b/sc2/src/uqm/comm/arilou/resinst.h index ebced6772..ac251f0e2 100644 --- a/sc2/src/uqm/comm/arilou/resinst.h +++ b/sc2/src/uqm/comm/arilou/resinst.h @@ -1,4 +1,5 @@ -#include "igfxres.h" -#include "ifontres.h" -#include "istrtab.h" -#include "imusicre.h" +#define ARILOU_COLOR_MAP "comm.arilou.colortable" +#define ARILOU_PMAP_ANIM "comm.arilou.graphics" +#define ARILOU_FONT "comm.arilou.font" +#define ARILOU_CONVERSATION_PHRASES "comm.arilou.dialogue" +#define ARILOU_MUSIC "comm.arilou.music" diff --git a/sc2/src/uqm/comm/arilou/respkg.h b/sc2/src/uqm/comm/arilou/respkg.h deleted file mode 100644 index 05f1c78ce..000000000 --- a/sc2/src/uqm/comm/arilou/respkg.h +++ /dev/null @@ -1,5 +0,0 @@ -enum -{ - ARILOU_PACKAGE = 1 -}; - diff --git a/sc2/src/uqm/comm/arilou/restypes.h b/sc2/src/uqm/comm/arilou/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/comm/arilou/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/comm/blackur/blackur.res b/sc2/src/uqm/comm/blackur/blackur.res deleted file mode 100644 index 7834a7f46..000000000 --- a/sc2/src/uqm/comm/blackur/blackur.res +++ /dev/null @@ -1,10 +0,0 @@ -INCLUDE ../../star3do.typ - -PATH comm/blackur - -PACKAGE BLACKURQ_PACKAGE blackur.con - GFXRES BLACKURQ_PMAP_ANIM blackur.ani - FONTRES BLACKURQ_FONT blackur.fon - MUSICRES BLACKURQ_MUSIC blackur.mod - STRTAB BLACKURQ_CONVERSATION_PHRASES blackur.txt - diff --git a/sc2/src/uqm/comm/blackur/ifontres.h b/sc2/src/uqm/comm/blackur/ifontres.h deleted file mode 100644 index 0da1652cf..000000000 --- a/sc2/src/uqm/comm/blackur/ifontres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define BLACKURQ_FONT "comm.kohrah.font" diff --git a/sc2/src/uqm/comm/blackur/igfxres.h b/sc2/src/uqm/comm/blackur/igfxres.h deleted file mode 100644 index bf01594c6..000000000 --- a/sc2/src/uqm/comm/blackur/igfxres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define BLACKURQ_PMAP_ANIM "comm.kohrah.graphics" diff --git a/sc2/src/uqm/comm/blackur/imusicre.h b/sc2/src/uqm/comm/blackur/imusicre.h deleted file mode 100644 index 4873fe3a8..000000000 --- a/sc2/src/uqm/comm/blackur/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define BLACKURQ_MUSIC "comm.kohrah.music" diff --git a/sc2/src/uqm/comm/blackur/istrtab.h b/sc2/src/uqm/comm/blackur/istrtab.h deleted file mode 100644 index ac8980fe7..000000000 --- a/sc2/src/uqm/comm/blackur/istrtab.h +++ /dev/null @@ -1,6 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define BLACKURQ_COLOR_MAP "comm.kohrah.colortable" -#define BLACKURQ_CONVERSATION_PHRASES "comm.kohrah.dialogue" diff --git a/sc2/src/uqm/comm/blackur/resinst.h b/sc2/src/uqm/comm/blackur/resinst.h index ebced6772..d3465b6eb 100644 --- a/sc2/src/uqm/comm/blackur/resinst.h +++ b/sc2/src/uqm/comm/blackur/resinst.h @@ -1,4 +1,5 @@ -#include "igfxres.h" -#include "ifontres.h" -#include "istrtab.h" -#include "imusicre.h" +#define BLACKURQ_PMAP_ANIM "comm.kohrah.graphics" +#define BLACKURQ_FONT "comm.kohrah.font" +#define BLACKURQ_COLOR_MAP "comm.kohrah.colortable" +#define BLACKURQ_CONVERSATION_PHRASES "comm.kohrah.dialogue" +#define BLACKURQ_MUSIC "comm.kohrah.music" diff --git a/sc2/src/uqm/comm/blackur/respkg.h b/sc2/src/uqm/comm/blackur/respkg.h deleted file mode 100644 index 4a32eb808..000000000 --- a/sc2/src/uqm/comm/blackur/respkg.h +++ /dev/null @@ -1,5 +0,0 @@ -enum -{ - BLACKURQ_PACKAGE = 1 -}; - diff --git a/sc2/src/uqm/comm/blackur/restypes.h b/sc2/src/uqm/comm/blackur/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/comm/blackur/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/comm/chmmr/chmmr.res b/sc2/src/uqm/comm/chmmr/chmmr.res deleted file mode 100644 index 6da01e827..000000000 --- a/sc2/src/uqm/comm/chmmr/chmmr.res +++ /dev/null @@ -1,10 +0,0 @@ -INCLUDE ../../star3do.typ - -PATH comm/chmmr - -PACKAGE CHMMR_PACKAGE chmmr.con - GFXRES CHMMR_PMAP_ANIM chmmr.ani - FONTRES CHMMR_FONT chmmr.fon - MUSICRES CHMMR_MUSIC chmmr.mod - STRTAB CHMMR_CONVERSATION_PHRASES chmmr.txt - STRTAB CHMMR_COLOR_MAP chmmr.ct diff --git a/sc2/src/uqm/comm/chmmr/ifontres.h b/sc2/src/uqm/comm/chmmr/ifontres.h deleted file mode 100644 index 808cbc7fa..000000000 --- a/sc2/src/uqm/comm/chmmr/ifontres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define CHMMR_FONT "comm.chmmr.font" diff --git a/sc2/src/uqm/comm/chmmr/igfxres.h b/sc2/src/uqm/comm/chmmr/igfxres.h deleted file mode 100644 index 5b951eb29..000000000 --- a/sc2/src/uqm/comm/chmmr/igfxres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define CHMMR_PMAP_ANIM "comm.chmmr.graphics" diff --git a/sc2/src/uqm/comm/chmmr/imusicre.h b/sc2/src/uqm/comm/chmmr/imusicre.h deleted file mode 100644 index 50de46f6b..000000000 --- a/sc2/src/uqm/comm/chmmr/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define CHMMR_MUSIC "comm.chmmr.music" diff --git a/sc2/src/uqm/comm/chmmr/istrtab.h b/sc2/src/uqm/comm/chmmr/istrtab.h deleted file mode 100644 index 887c9be5e..000000000 --- a/sc2/src/uqm/comm/chmmr/istrtab.h +++ /dev/null @@ -1,6 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define CHMMR_COLOR_MAP "comm.chmmr.colortable" -#define CHMMR_CONVERSATION_PHRASES "comm.chmmr.dialogue" diff --git a/sc2/src/uqm/comm/chmmr/resinst.h b/sc2/src/uqm/comm/chmmr/resinst.h index ebced6772..166bb3bd7 100644 --- a/sc2/src/uqm/comm/chmmr/resinst.h +++ b/sc2/src/uqm/comm/chmmr/resinst.h @@ -1,4 +1,5 @@ -#include "igfxres.h" -#include "ifontres.h" -#include "istrtab.h" -#include "imusicre.h" +#define CHMMR_PMAP_ANIM "comm.chmmr.graphics" +#define CHMMR_FONT "comm.chmmr.font" +#define CHMMR_COLOR_MAP "comm.chmmr.colortable" +#define CHMMR_CONVERSATION_PHRASES "comm.chmmr.dialogue" +#define CHMMR_MUSIC "comm.chmmr.music" diff --git a/sc2/src/uqm/comm/chmmr/respkg.h b/sc2/src/uqm/comm/chmmr/respkg.h deleted file mode 100644 index 07016c957..000000000 --- a/sc2/src/uqm/comm/chmmr/respkg.h +++ /dev/null @@ -1,5 +0,0 @@ -enum -{ - CHMMR_PACKAGE = 1 -}; - diff --git a/sc2/src/uqm/comm/chmmr/restypes.h b/sc2/src/uqm/comm/chmmr/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/comm/chmmr/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/comm/comandr/comandr.res b/sc2/src/uqm/comm/comandr/comandr.res deleted file mode 100644 index f5634dcb1..000000000 --- a/sc2/src/uqm/comm/comandr/comandr.res +++ /dev/null @@ -1,15 +0,0 @@ -INCLUDE ../../star3do.typ - -PATH comm/comandr -PACKAGE COMMANDER_PACKAGE comandr.con - GFXRES COMMANDER_PMAP_ANIM comandr.ani - FONTRES COMMANDER_FONT comandr.fon - MUSICRES COMMANDER_MUSIC comandr.mod - STRTAB COMMANDER_COLOR_MAP comandr.ct - -PACKAGE COMMANDER_PHRASE_PACKAGE comandr.con - STRTAB COMMANDER_CONVERSATION_PHRASES comandr.txt - -PATH comm/starbas -PACKAGE STARBASE_PHRASE_PACKAGE comandr.con - STRTAB STARBASE_CONVERSATION_PHRASES starbas.txt diff --git a/sc2/src/uqm/comm/comandr/ifontres.h b/sc2/src/uqm/comm/comandr/ifontres.h deleted file mode 100644 index 5fdded06d..000000000 --- a/sc2/src/uqm/comm/comandr/ifontres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define COMMANDER_FONT "comm.commander.font" diff --git a/sc2/src/uqm/comm/comandr/igfxres.h b/sc2/src/uqm/comm/comandr/igfxres.h deleted file mode 100644 index 5775978a4..000000000 --- a/sc2/src/uqm/comm/comandr/igfxres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define COMMANDER_PMAP_ANIM "comm.commander.graphics" diff --git a/sc2/src/uqm/comm/comandr/imusicre.h b/sc2/src/uqm/comm/comandr/imusicre.h deleted file mode 100644 index 676ca5926..000000000 --- a/sc2/src/uqm/comm/comandr/imusicre.h +++ /dev/null @@ -1,7 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define COMMANDER_LOWPOW_MUSIC "comm.commander.lowpower.music" -#define COMMANDER_MUSIC "comm.commander.music" -#define STARBASE_ALT_MUSIC "comm.starbase.music" diff --git a/sc2/src/uqm/comm/comandr/istrtab.h b/sc2/src/uqm/comm/comandr/istrtab.h deleted file mode 100644 index 11c8a6be4..000000000 --- a/sc2/src/uqm/comm/comandr/istrtab.h +++ /dev/null @@ -1,7 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define COMMANDER_COLOR_MAP "comm.commander.colortable" -#define COMMANDER_CONVERSATION_PHRASES "comm.commander.dialogue" -#define STARBASE_CONVERSATION_PHRASES "comm.starbase.dialogue" diff --git a/sc2/src/uqm/comm/comandr/resinst.h b/sc2/src/uqm/comm/comandr/resinst.h index ebced6772..e88d71c1c 100644 --- a/sc2/src/uqm/comm/comandr/resinst.h +++ b/sc2/src/uqm/comm/comandr/resinst.h @@ -1,4 +1,8 @@ -#include "igfxres.h" -#include "ifontres.h" -#include "istrtab.h" -#include "imusicre.h" +#define COMMANDER_PMAP_ANIM "comm.commander.graphics" +#define COMMANDER_FONT "comm.commander.font" +#define COMMANDER_COLOR_MAP "comm.commander.colortable" +#define COMMANDER_CONVERSATION_PHRASES "comm.commander.dialogue" +#define STARBASE_CONVERSATION_PHRASES "comm.starbase.dialogue" +#define COMMANDER_LOWPOW_MUSIC "comm.commander.lowpower.music" +#define COMMANDER_MUSIC "comm.commander.music" +#define STARBASE_ALT_MUSIC "comm.starbase.music" diff --git a/sc2/src/uqm/comm/comandr/respkg.h b/sc2/src/uqm/comm/comandr/respkg.h deleted file mode 100644 index d532bec34..000000000 --- a/sc2/src/uqm/comm/comandr/respkg.h +++ /dev/null @@ -1,9 +0,0 @@ -enum -{ - COMMANDER_PACKAGE = 1, - COMMANDER_PHRASE_PACKAGE, - STARBASE_PHRASE_PACKAGE, - STARBASE_MUSIC_PACKAGE, - COMMANDER_LOWPOW_PACKAGE, -}; - diff --git a/sc2/src/uqm/comm/comandr/restypes.h b/sc2/src/uqm/comm/comandr/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/comm/comandr/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/comm/druuge/druuge.res b/sc2/src/uqm/comm/druuge/druuge.res deleted file mode 100644 index 562295fec..000000000 --- a/sc2/src/uqm/comm/druuge/druuge.res +++ /dev/null @@ -1,10 +0,0 @@ -INCLUDE ../../star3do.typ - -PATH comm/druuge - -PACKAGE DRUUGE_PACKAGE druuge.con - GFXRES DRUUGE_PMAP_ANIM druuge.ani - FONTRES DRUUGE_FONT druuge.fon - MUSICRES DRUUGE_MUSIC druuge.mod - STRTAB DRUUGE_CONVERSATION_PHRASES druuge.txt - diff --git a/sc2/src/uqm/comm/druuge/ifontres.h b/sc2/src/uqm/comm/druuge/ifontres.h deleted file mode 100644 index 59daa532e..000000000 --- a/sc2/src/uqm/comm/druuge/ifontres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define DRUUGE_FONT "comm.druuge.font" diff --git a/sc2/src/uqm/comm/druuge/igfxres.h b/sc2/src/uqm/comm/druuge/igfxres.h deleted file mode 100644 index 3c59f1af0..000000000 --- a/sc2/src/uqm/comm/druuge/igfxres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define DRUUGE_PMAP_ANIM "comm.druuge.graphics" diff --git a/sc2/src/uqm/comm/druuge/imusicre.h b/sc2/src/uqm/comm/druuge/imusicre.h deleted file mode 100644 index ae1b7de74..000000000 --- a/sc2/src/uqm/comm/druuge/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define DRUUGE_MUSIC "comm.druuge.music" diff --git a/sc2/src/uqm/comm/druuge/istrtab.h b/sc2/src/uqm/comm/druuge/istrtab.h deleted file mode 100644 index c8c990d03..000000000 --- a/sc2/src/uqm/comm/druuge/istrtab.h +++ /dev/null @@ -1,6 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define DRUUGE_COLOR_MAP "comm.druuge.colortable" -#define DRUUGE_CONVERSATION_PHRASES "comm.druuge.dialogue" diff --git a/sc2/src/uqm/comm/druuge/resinst.h b/sc2/src/uqm/comm/druuge/resinst.h index ebced6772..1db46237c 100644 --- a/sc2/src/uqm/comm/druuge/resinst.h +++ b/sc2/src/uqm/comm/druuge/resinst.h @@ -1,4 +1,5 @@ -#include "igfxres.h" -#include "ifontres.h" -#include "istrtab.h" -#include "imusicre.h" +#define DRUUGE_PMAP_ANIM "comm.druuge.graphics" +#define DRUUGE_FONT "comm.druuge.font" +#define DRUUGE_COLOR_MAP "comm.druuge.colortable" +#define DRUUGE_CONVERSATION_PHRASES "comm.druuge.dialogue" +#define DRUUGE_MUSIC "comm.druuge.music" diff --git a/sc2/src/uqm/comm/druuge/respkg.h b/sc2/src/uqm/comm/druuge/respkg.h deleted file mode 100644 index 348018d7a..000000000 --- a/sc2/src/uqm/comm/druuge/respkg.h +++ /dev/null @@ -1,5 +0,0 @@ -enum -{ - DRUUGE_PACKAGE = 1 -}; - diff --git a/sc2/src/uqm/comm/druuge/restypes.h b/sc2/src/uqm/comm/druuge/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/comm/druuge/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/comm/ilwrath/ifontres.h b/sc2/src/uqm/comm/ilwrath/ifontres.h deleted file mode 100644 index 9637b0377..000000000 --- a/sc2/src/uqm/comm/ilwrath/ifontres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ILWRATH_FONT "comm.ilwrath.font" diff --git a/sc2/src/uqm/comm/ilwrath/igfxres.h b/sc2/src/uqm/comm/ilwrath/igfxres.h deleted file mode 100644 index b58e285be..000000000 --- a/sc2/src/uqm/comm/ilwrath/igfxres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ILWRATH_PMAP_ANIM "comm.ilwrath.graphics" diff --git a/sc2/src/uqm/comm/ilwrath/ilwrath.res b/sc2/src/uqm/comm/ilwrath/ilwrath.res deleted file mode 100644 index af3009eaf..000000000 --- a/sc2/src/uqm/comm/ilwrath/ilwrath.res +++ /dev/null @@ -1,10 +0,0 @@ -INCLUDE ../../star3do.typ - -PATH comm/ilwrath - -PACKAGE ILWRATH_PACKAGE ilwrath.con - GFXRES ILWRATH_PMAP_ANIM ilwrath.ani - FONTRES ILWRATH_FONT ilwrath.fon - MUSICRES ILWRATH_MUSIC ilwrath.mod - STRTAB ILWRATH_CONVERSATION_PHRASES ilwrath.txt - diff --git a/sc2/src/uqm/comm/ilwrath/imusicre.h b/sc2/src/uqm/comm/ilwrath/imusicre.h deleted file mode 100644 index 7c5f0b322..000000000 --- a/sc2/src/uqm/comm/ilwrath/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ILWRATH_MUSIC "comm.ilwrath.music" diff --git a/sc2/src/uqm/comm/ilwrath/istrtab.h b/sc2/src/uqm/comm/ilwrath/istrtab.h deleted file mode 100644 index 1471ddd50..000000000 --- a/sc2/src/uqm/comm/ilwrath/istrtab.h +++ /dev/null @@ -1,6 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ILWRATH_COLOR_MAP "comm.ilwrath.colortable" -#define ILWRATH_CONVERSATION_PHRASES "comm.ilwrath.dialogue" diff --git a/sc2/src/uqm/comm/ilwrath/resinst.h b/sc2/src/uqm/comm/ilwrath/resinst.h index ebced6772..2c90b03cd 100644 --- a/sc2/src/uqm/comm/ilwrath/resinst.h +++ b/sc2/src/uqm/comm/ilwrath/resinst.h @@ -1,4 +1,5 @@ -#include "igfxres.h" -#include "ifontres.h" -#include "istrtab.h" -#include "imusicre.h" +#define ILWRATH_PMAP_ANIM "comm.ilwrath.graphics" +#define ILWRATH_FONT "comm.ilwrath.font" +#define ILWRATH_COLOR_MAP "comm.ilwrath.colortable" +#define ILWRATH_CONVERSATION_PHRASES "comm.ilwrath.dialogue" +#define ILWRATH_MUSIC "comm.ilwrath.music" diff --git a/sc2/src/uqm/comm/ilwrath/respkg.h b/sc2/src/uqm/comm/ilwrath/respkg.h deleted file mode 100644 index 8f0b77e23..000000000 --- a/sc2/src/uqm/comm/ilwrath/respkg.h +++ /dev/null @@ -1,5 +0,0 @@ -enum -{ - ILWRATH_PACKAGE = 1 -}; - diff --git a/sc2/src/uqm/comm/ilwrath/restypes.h b/sc2/src/uqm/comm/ilwrath/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/comm/ilwrath/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/comm/melnorm/ifontres.h b/sc2/src/uqm/comm/melnorm/ifontres.h deleted file mode 100644 index deec3afab..000000000 --- a/sc2/src/uqm/comm/melnorm/ifontres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define MELNORME_FONT "comm.melnorme.font" diff --git a/sc2/src/uqm/comm/melnorm/igfxres.h b/sc2/src/uqm/comm/melnorm/igfxres.h deleted file mode 100644 index 192d9c9fd..000000000 --- a/sc2/src/uqm/comm/melnorm/igfxres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define MELNORME_PMAP_ANIM "comm.melnorme.graphics" diff --git a/sc2/src/uqm/comm/melnorm/imusicre.h b/sc2/src/uqm/comm/melnorm/imusicre.h deleted file mode 100644 index 69d5bec89..000000000 --- a/sc2/src/uqm/comm/melnorm/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define MELNORME_MUSIC "comm.melnorme.music" diff --git a/sc2/src/uqm/comm/melnorm/istrtab.h b/sc2/src/uqm/comm/melnorm/istrtab.h deleted file mode 100644 index 72dedb885..000000000 --- a/sc2/src/uqm/comm/melnorm/istrtab.h +++ /dev/null @@ -1,6 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define MELNORME_COLOR_MAP "comm.melnorme.colortable" -#define MELNORME_CONVERSATION_PHRASES "comm.melnorme.dialogue" diff --git a/sc2/src/uqm/comm/melnorm/melnorm.res b/sc2/src/uqm/comm/melnorm/melnorm.res deleted file mode 100644 index 4286f3a60..000000000 --- a/sc2/src/uqm/comm/melnorm/melnorm.res +++ /dev/null @@ -1,10 +0,0 @@ -INCLUDE ../../star3do.typ - -PATH comm/melnorm - -PACKAGE MELNORME_PACKAGE melnorm.con - GFXRES MELNORME_PMAP_ANIM melnorm.ani - FONTRES MELNORME_FONT melnorm.fon - MUSICRES MELNORME_MUSIC melnorm.mod - STRTAB MELNORME_CONVERSATION_PHRASES melnorm.txt - STRTAB MELNORME_COLOR_MAP melnorm.ct diff --git a/sc2/src/uqm/comm/melnorm/resinst.h b/sc2/src/uqm/comm/melnorm/resinst.h index ebced6772..8d0f00dec 100644 --- a/sc2/src/uqm/comm/melnorm/resinst.h +++ b/sc2/src/uqm/comm/melnorm/resinst.h @@ -1,4 +1,5 @@ -#include "igfxres.h" -#include "ifontres.h" -#include "istrtab.h" -#include "imusicre.h" +#define MELNORME_PMAP_ANIM "comm.melnorme.graphics" +#define MELNORME_FONT "comm.melnorme.font" +#define MELNORME_COLOR_MAP "comm.melnorme.colortable" +#define MELNORME_CONVERSATION_PHRASES "comm.melnorme.dialogue" +#define MELNORME_MUSIC "comm.melnorme.music" diff --git a/sc2/src/uqm/comm/melnorm/respkg.h b/sc2/src/uqm/comm/melnorm/respkg.h deleted file mode 100644 index 94c3a3ecc..000000000 --- a/sc2/src/uqm/comm/melnorm/respkg.h +++ /dev/null @@ -1,5 +0,0 @@ -enum -{ - MELNORME_PACKAGE = 1 -}; - diff --git a/sc2/src/uqm/comm/melnorm/restypes.h b/sc2/src/uqm/comm/melnorm/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/comm/melnorm/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/comm/mycon/ifontres.h b/sc2/src/uqm/comm/mycon/ifontres.h deleted file mode 100644 index 564e1efc3..000000000 --- a/sc2/src/uqm/comm/mycon/ifontres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define MYCON_FONT "comm.mycon.font" diff --git a/sc2/src/uqm/comm/mycon/igfxres.h b/sc2/src/uqm/comm/mycon/igfxres.h deleted file mode 100644 index 7b1b71b31..000000000 --- a/sc2/src/uqm/comm/mycon/igfxres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define MYCON_PMAP_ANIM "comm.mycon.graphics" diff --git a/sc2/src/uqm/comm/mycon/imusicre.h b/sc2/src/uqm/comm/mycon/imusicre.h deleted file mode 100644 index 2d8ae5d79..000000000 --- a/sc2/src/uqm/comm/mycon/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define MYCON_MUSIC "comm.mycon.music" diff --git a/sc2/src/uqm/comm/mycon/istrtab.h b/sc2/src/uqm/comm/mycon/istrtab.h deleted file mode 100644 index 3cbeb6ee0..000000000 --- a/sc2/src/uqm/comm/mycon/istrtab.h +++ /dev/null @@ -1,6 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define MYCON_COLOR_MAP "comm.mycon.colortable" -#define MYCON_CONVERSATION_PHRASES "comm.mycon.dialogue" diff --git a/sc2/src/uqm/comm/mycon/mycon.res b/sc2/src/uqm/comm/mycon/mycon.res deleted file mode 100644 index 6509ed212..000000000 --- a/sc2/src/uqm/comm/mycon/mycon.res +++ /dev/null @@ -1,10 +0,0 @@ -INCLUDE ../../star3do.typ - -PATH comm/mycon - -PACKAGE MYCON_PACKAGE mycon.con - GFXRES MYCON_PMAP_ANIM mycon.ani - FONTRES MYCON_FONT mycon.fon - MUSICRES MYCON_MUSIC mycon.mod - STRTAB MYCON_CONVERSATION_PHRASES mycon.txt - diff --git a/sc2/src/uqm/comm/mycon/resinst.h b/sc2/src/uqm/comm/mycon/resinst.h index ebced6772..db5591024 100644 --- a/sc2/src/uqm/comm/mycon/resinst.h +++ b/sc2/src/uqm/comm/mycon/resinst.h @@ -1,4 +1,5 @@ -#include "igfxres.h" -#include "ifontres.h" -#include "istrtab.h" -#include "imusicre.h" +#define MYCON_PMAP_ANIM "comm.mycon.graphics" +#define MYCON_FONT "comm.mycon.font" +#define MYCON_COLOR_MAP "comm.mycon.colortable" +#define MYCON_CONVERSATION_PHRASES "comm.mycon.dialogue" +#define MYCON_MUSIC "comm.mycon.music" diff --git a/sc2/src/uqm/comm/mycon/respkg.h b/sc2/src/uqm/comm/mycon/respkg.h deleted file mode 100644 index 963fdabc2..000000000 --- a/sc2/src/uqm/comm/mycon/respkg.h +++ /dev/null @@ -1,5 +0,0 @@ -enum -{ - MYCON_PACKAGE = 1 -}; - diff --git a/sc2/src/uqm/comm/mycon/restypes.h b/sc2/src/uqm/comm/mycon/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/comm/mycon/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/comm/orz/ifontres.h b/sc2/src/uqm/comm/orz/ifontres.h deleted file mode 100644 index e15cda517..000000000 --- a/sc2/src/uqm/comm/orz/ifontres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ORZ_FONT "comm.orz.font" diff --git a/sc2/src/uqm/comm/orz/igfxres.h b/sc2/src/uqm/comm/orz/igfxres.h deleted file mode 100644 index 0fe117937..000000000 --- a/sc2/src/uqm/comm/orz/igfxres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ORZ_PMAP_ANIM "comm.orz.graphics" diff --git a/sc2/src/uqm/comm/orz/imusicre.h b/sc2/src/uqm/comm/orz/imusicre.h deleted file mode 100644 index a6174aaef..000000000 --- a/sc2/src/uqm/comm/orz/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ORZ_MUSIC "comm.orz.music" diff --git a/sc2/src/uqm/comm/orz/istrtab.h b/sc2/src/uqm/comm/orz/istrtab.h deleted file mode 100644 index 69827053c..000000000 --- a/sc2/src/uqm/comm/orz/istrtab.h +++ /dev/null @@ -1,6 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ORZ_COLOR_MAP "comm.orz.colortable" -#define ORZ_CONVERSATION_PHRASES "comm.orz.dialogue" diff --git a/sc2/src/uqm/comm/orz/orz.res b/sc2/src/uqm/comm/orz/orz.res deleted file mode 100644 index e73838a5f..000000000 --- a/sc2/src/uqm/comm/orz/orz.res +++ /dev/null @@ -1,10 +0,0 @@ -INCLUDE ../../star3do.typ - -PATH comm/orz - -PACKAGE ORZ_PACKAGE orz.con - GFXRES ORZ_PMAP_ANIM orz.ani - FONTRES ORZ_FONT orz.fon - MUSICRES ORZ_MUSIC orz.mod - STRTAB ORZ_CONVERSATION_PHRASES orz.txt - STRTAB ORZ_COLOR_MAP orz.ct diff --git a/sc2/src/uqm/comm/orz/resinst.h b/sc2/src/uqm/comm/orz/resinst.h index ebced6772..da1890d16 100644 --- a/sc2/src/uqm/comm/orz/resinst.h +++ b/sc2/src/uqm/comm/orz/resinst.h @@ -1,4 +1,5 @@ -#include "igfxres.h" -#include "ifontres.h" -#include "istrtab.h" -#include "imusicre.h" +#define ORZ_PMAP_ANIM "comm.orz.graphics" +#define ORZ_FONT "comm.orz.font" +#define ORZ_COLOR_MAP "comm.orz.colortable" +#define ORZ_CONVERSATION_PHRASES "comm.orz.dialogue" +#define ORZ_MUSIC "comm.orz.music" diff --git a/sc2/src/uqm/comm/orz/respkg.h b/sc2/src/uqm/comm/orz/respkg.h deleted file mode 100644 index 8c73dcb8d..000000000 --- a/sc2/src/uqm/comm/orz/respkg.h +++ /dev/null @@ -1,5 +0,0 @@ -enum -{ - ORZ_PACKAGE = 1 -}; - diff --git a/sc2/src/uqm/comm/orz/restypes.h b/sc2/src/uqm/comm/orz/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/comm/orz/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/comm/pkunk/ifontres.h b/sc2/src/uqm/comm/pkunk/ifontres.h deleted file mode 100644 index bdd73344a..000000000 --- a/sc2/src/uqm/comm/pkunk/ifontres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define PKUNK_FONT "comm.pkunk.font" diff --git a/sc2/src/uqm/comm/pkunk/igfxres.h b/sc2/src/uqm/comm/pkunk/igfxres.h deleted file mode 100644 index fb24d6b71..000000000 --- a/sc2/src/uqm/comm/pkunk/igfxres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define PKUNK_PMAP_ANIM "comm.pkunk.graphics" diff --git a/sc2/src/uqm/comm/pkunk/imusicre.h b/sc2/src/uqm/comm/pkunk/imusicre.h deleted file mode 100644 index 105a65cde..000000000 --- a/sc2/src/uqm/comm/pkunk/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define PKUNK_MUSIC "comm.pkunk.music" diff --git a/sc2/src/uqm/comm/pkunk/istrtab.h b/sc2/src/uqm/comm/pkunk/istrtab.h deleted file mode 100644 index 519569ee3..000000000 --- a/sc2/src/uqm/comm/pkunk/istrtab.h +++ /dev/null @@ -1,6 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define PKUNK_COLOR_MAP "comm.pkunk.colortable" -#define PKUNK_CONVERSATION_PHRASES "comm.pkunk.dialogue" diff --git a/sc2/src/uqm/comm/pkunk/pkunk.res b/sc2/src/uqm/comm/pkunk/pkunk.res deleted file mode 100644 index 082411b7b..000000000 --- a/sc2/src/uqm/comm/pkunk/pkunk.res +++ /dev/null @@ -1,10 +0,0 @@ -INCLUDE ../../star3do.typ - -PATH comm/pkunk - -PACKAGE PKUNK_PACKAGE pkunk.con - GFXRES PKUNK_PMAP_ANIM pkunk.ani - FONTRES PKUNK_FONT pkunk.fon - MUSICRES PKUNK_MUSIC pkunk.mod - STRTAB PKUNK_CONVERSATION_PHRASES pkunk.txt - diff --git a/sc2/src/uqm/comm/pkunk/resinst.h b/sc2/src/uqm/comm/pkunk/resinst.h index ebced6772..2a45b79b1 100644 --- a/sc2/src/uqm/comm/pkunk/resinst.h +++ b/sc2/src/uqm/comm/pkunk/resinst.h @@ -1,4 +1,5 @@ -#include "igfxres.h" -#include "ifontres.h" -#include "istrtab.h" -#include "imusicre.h" +#define PKUNK_PMAP_ANIM "comm.pkunk.graphics" +#define PKUNK_FONT "comm.pkunk.font" +#define PKUNK_COLOR_MAP "comm.pkunk.colortable" +#define PKUNK_CONVERSATION_PHRASES "comm.pkunk.dialogue" +#define PKUNK_MUSIC "comm.pkunk.music" diff --git a/sc2/src/uqm/comm/pkunk/respkg.h b/sc2/src/uqm/comm/pkunk/respkg.h deleted file mode 100644 index c804d87cf..000000000 --- a/sc2/src/uqm/comm/pkunk/respkg.h +++ /dev/null @@ -1,5 +0,0 @@ -enum -{ - PKUNK_PACKAGE = 1 -}; - diff --git a/sc2/src/uqm/comm/pkunk/restypes.h b/sc2/src/uqm/comm/pkunk/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/comm/pkunk/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/comm/shofixt/ifontres.h b/sc2/src/uqm/comm/shofixt/ifontres.h deleted file mode 100644 index 6cccd9a0d..000000000 --- a/sc2/src/uqm/comm/shofixt/ifontres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SHOFIXTI_FONT "comm.shofixti.font" diff --git a/sc2/src/uqm/comm/shofixt/igfxres.h b/sc2/src/uqm/comm/shofixt/igfxres.h deleted file mode 100644 index ed37d88b8..000000000 --- a/sc2/src/uqm/comm/shofixt/igfxres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SHOFIXTI_PMAP_ANIM "comm.shofixti.graphics" diff --git a/sc2/src/uqm/comm/shofixt/imusicre.h b/sc2/src/uqm/comm/shofixt/imusicre.h deleted file mode 100644 index 7cc490258..000000000 --- a/sc2/src/uqm/comm/shofixt/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SHOFIXTI_MUSIC "comm.shofixti.music" diff --git a/sc2/src/uqm/comm/shofixt/istrtab.h b/sc2/src/uqm/comm/shofixt/istrtab.h deleted file mode 100644 index cc0202f1e..000000000 --- a/sc2/src/uqm/comm/shofixt/istrtab.h +++ /dev/null @@ -1,6 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SHOFIXTI_COLOR_MAP "comm.shofixti.colortable" -#define SHOFIXTI_CONVERSATION_PHRASES "comm.shofixti.dialogue" diff --git a/sc2/src/uqm/comm/shofixt/resinst.h b/sc2/src/uqm/comm/shofixt/resinst.h index ebced6772..3fcd62a45 100644 --- a/sc2/src/uqm/comm/shofixt/resinst.h +++ b/sc2/src/uqm/comm/shofixt/resinst.h @@ -1,4 +1,5 @@ -#include "igfxres.h" -#include "ifontres.h" -#include "istrtab.h" -#include "imusicre.h" +#define SHOFIXTI_PMAP_ANIM "comm.shofixti.graphics" +#define SHOFIXTI_FONT "comm.shofixti.font" +#define SHOFIXTI_COLOR_MAP "comm.shofixti.colortable" +#define SHOFIXTI_CONVERSATION_PHRASES "comm.shofixti.dialogue" +#define SHOFIXTI_MUSIC "comm.shofixti.music" diff --git a/sc2/src/uqm/comm/shofixt/respkg.h b/sc2/src/uqm/comm/shofixt/respkg.h deleted file mode 100644 index 0f7349626..000000000 --- a/sc2/src/uqm/comm/shofixt/respkg.h +++ /dev/null @@ -1,5 +0,0 @@ -enum -{ - SHOFIXTI_PACKAGE = 1 -}; - diff --git a/sc2/src/uqm/comm/shofixt/restypes.h b/sc2/src/uqm/comm/shofixt/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/comm/shofixt/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/comm/shofixt/shofixt.res b/sc2/src/uqm/comm/shofixt/shofixt.res deleted file mode 100644 index 4bb1f0d48..000000000 --- a/sc2/src/uqm/comm/shofixt/shofixt.res +++ /dev/null @@ -1,10 +0,0 @@ -INCLUDE ../../star3do.typ - -PATH comm/shofixt - -PACKAGE SHOFIXTI_PACKAGE shofixt.con - GFXRES SHOFIXTI_PMAP_ANIM shofixt.ani - FONTRES SHOFIXTI_FONT shofixt.fon - MUSICRES SHOFIXTI_MUSIC shofixt.mod - STRTAB SHOFIXTI_CONVERSATION_PHRASES shofixt.txt - diff --git a/sc2/src/uqm/comm/slyhome/ifontres.h b/sc2/src/uqm/comm/slyhome/ifontres.h deleted file mode 100644 index 4ae8fe0a3..000000000 --- a/sc2/src/uqm/comm/slyhome/ifontres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SLYLANDRO_FONT "comm.slylandro.font" diff --git a/sc2/src/uqm/comm/slyhome/igfxres.h b/sc2/src/uqm/comm/slyhome/igfxres.h deleted file mode 100644 index 74100dc66..000000000 --- a/sc2/src/uqm/comm/slyhome/igfxres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SLYLANDRO_PMAP_ANIM "comm.slylandro.graphics" diff --git a/sc2/src/uqm/comm/slyhome/imusicre.h b/sc2/src/uqm/comm/slyhome/imusicre.h deleted file mode 100644 index 2167cca1d..000000000 --- a/sc2/src/uqm/comm/slyhome/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SLYLANDRO_MUSIC "comm.slylandro.music" diff --git a/sc2/src/uqm/comm/slyhome/istrtab.h b/sc2/src/uqm/comm/slyhome/istrtab.h deleted file mode 100644 index 6cf282773..000000000 --- a/sc2/src/uqm/comm/slyhome/istrtab.h +++ /dev/null @@ -1,6 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SLYLANDRO_COLOR_MAP "comm.slylandro.colortable" -#define SLYLANDRO_CONVERSATION_PHRASES "comm.slylandro.dialogue" diff --git a/sc2/src/uqm/comm/slyhome/resinst.h b/sc2/src/uqm/comm/slyhome/resinst.h index ebced6772..2c12e53c0 100644 --- a/sc2/src/uqm/comm/slyhome/resinst.h +++ b/sc2/src/uqm/comm/slyhome/resinst.h @@ -1,4 +1,5 @@ -#include "igfxres.h" -#include "ifontres.h" -#include "istrtab.h" -#include "imusicre.h" +#define SLYLANDRO_PMAP_ANIM "comm.slylandro.graphics" +#define SLYLANDRO_FONT "comm.slylandro.font" +#define SLYLANDRO_COLOR_MAP "comm.slylandro.colortable" +#define SLYLANDRO_CONVERSATION_PHRASES "comm.slylandro.dialogue" +#define SLYLANDRO_MUSIC "comm.slylandro.music" diff --git a/sc2/src/uqm/comm/slyhome/respkg.h b/sc2/src/uqm/comm/slyhome/respkg.h deleted file mode 100644 index e103d5190..000000000 --- a/sc2/src/uqm/comm/slyhome/respkg.h +++ /dev/null @@ -1,5 +0,0 @@ -enum -{ - SLYLANDRO_PACKAGE = 1 -}; - diff --git a/sc2/src/uqm/comm/slyhome/restypes.h b/sc2/src/uqm/comm/slyhome/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/comm/slyhome/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/comm/slyhome/slyhome.res b/sc2/src/uqm/comm/slyhome/slyhome.res deleted file mode 100644 index dc73c0080..000000000 --- a/sc2/src/uqm/comm/slyhome/slyhome.res +++ /dev/null @@ -1,10 +0,0 @@ -INCLUDE ../../star3do.typ - -PATH comm/slyhome - -PACKAGE SLYLANDRO_PACKAGE slyhome.con - GFXRES SLYLANDRO_PMAP_ANIM slyhome.ani - FONTRES SLYLANDRO_FONT slyhome.fon - MUSICRES SLYLANDRO_MUSIC slyhome.mod - STRTAB SLYLANDRO_CONVERSATION_PHRASES slyhome.txt - STRTAB SLYLANDRO_COLOR_MAP slyhome.ct diff --git a/sc2/src/uqm/comm/slyland/ifontres.h b/sc2/src/uqm/comm/slyland/ifontres.h deleted file mode 100644 index d22ead638..000000000 --- a/sc2/src/uqm/comm/slyland/ifontres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SLYLAND_FONT "comm.probe.font" diff --git a/sc2/src/uqm/comm/slyland/igfxres.h b/sc2/src/uqm/comm/slyland/igfxres.h deleted file mode 100644 index 82891681b..000000000 --- a/sc2/src/uqm/comm/slyland/igfxres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SLYLAND_PMAP_ANIM "comm.probe.graphics" diff --git a/sc2/src/uqm/comm/slyland/imusicre.h b/sc2/src/uqm/comm/slyland/imusicre.h deleted file mode 100644 index a1db1e73f..000000000 --- a/sc2/src/uqm/comm/slyland/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SLYLAND_MUSIC "comm.probe.music" diff --git a/sc2/src/uqm/comm/slyland/istrtab.h b/sc2/src/uqm/comm/slyland/istrtab.h deleted file mode 100644 index a179fc807..000000000 --- a/sc2/src/uqm/comm/slyland/istrtab.h +++ /dev/null @@ -1,6 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SLYLAND_COLOR_MAP "comm.probe.colortable" -#define SLYLAND_CONVERSATION_PHRASES "comm.probe.dialogue" diff --git a/sc2/src/uqm/comm/slyland/resinst.h b/sc2/src/uqm/comm/slyland/resinst.h index ebced6772..162a09eec 100644 --- a/sc2/src/uqm/comm/slyland/resinst.h +++ b/sc2/src/uqm/comm/slyland/resinst.h @@ -1,4 +1,5 @@ -#include "igfxres.h" -#include "ifontres.h" -#include "istrtab.h" -#include "imusicre.h" +#define SLYLAND_PMAP_ANIM "comm.probe.graphics" +#define SLYLAND_FONT "comm.probe.font" +#define SLYLAND_COLOR_MAP "comm.probe.colortable" +#define SLYLAND_CONVERSATION_PHRASES "comm.probe.dialogue" +#define SLYLAND_MUSIC "comm.probe.music" diff --git a/sc2/src/uqm/comm/slyland/respkg.h b/sc2/src/uqm/comm/slyland/respkg.h deleted file mode 100644 index fc3e6b101..000000000 --- a/sc2/src/uqm/comm/slyland/respkg.h +++ /dev/null @@ -1,5 +0,0 @@ -enum -{ - SLYLAND_PACKAGE = 1 -}; - diff --git a/sc2/src/uqm/comm/slyland/restypes.h b/sc2/src/uqm/comm/slyland/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/comm/slyland/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/comm/slyland/slyland.res b/sc2/src/uqm/comm/slyland/slyland.res deleted file mode 100644 index d689a2fd3..000000000 --- a/sc2/src/uqm/comm/slyland/slyland.res +++ /dev/null @@ -1,10 +0,0 @@ -INCLUDE ../../star3do.typ - -PATH comm/slyland - -PACKAGE SLYLAND_PACKAGE slyland.con - GFXRES SLYLAND_PMAP_ANIM slyland.ani - FONTRES SLYLAND_FONT slyland.fon - MUSICRES SLYLAND_MUSIC slyland.mod - STRTAB SLYLAND_CONVERSATION_PHRASES slyland.txt - diff --git a/sc2/src/uqm/comm/spathi/ifontres.h b/sc2/src/uqm/comm/spathi/ifontres.h deleted file mode 100644 index 1413454ab..000000000 --- a/sc2/src/uqm/comm/spathi/ifontres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SPATHI_FONT "comm.spathi.font" diff --git a/sc2/src/uqm/comm/spathi/igfxres.h b/sc2/src/uqm/comm/spathi/igfxres.h deleted file mode 100644 index 9cabd6df0..000000000 --- a/sc2/src/uqm/comm/spathi/igfxres.h +++ /dev/null @@ -1,6 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SPATHI_HOME_PMAP_ANIM "comm.safeones.graphics" -#define SPATHI_PMAP_ANIM "comm.spathi.graphics" diff --git a/sc2/src/uqm/comm/spathi/imusicre.h b/sc2/src/uqm/comm/spathi/imusicre.h deleted file mode 100644 index ef6592ecd..000000000 --- a/sc2/src/uqm/comm/spathi/imusicre.h +++ /dev/null @@ -1,7 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define FWIFFO_MUSIC "comm.fwiffo.music" -#define SPAHOME_MUSIC "comm.safeones.music" -#define SPATHI_MUSIC "comm.spathi.music" diff --git a/sc2/src/uqm/comm/spathi/istrtab.h b/sc2/src/uqm/comm/spathi/istrtab.h deleted file mode 100644 index c24d8e414..000000000 --- a/sc2/src/uqm/comm/spathi/istrtab.h +++ /dev/null @@ -1,8 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SPATHI_COLOR_MAP "comm.spathi.colortable" -#define SPATHI_CONVERSATION_PHRASES "comm.spathi.dialogue" -#define SPATHI_HOME_COLOR_MAP "comm.safeones.colortable" -#define SPATHI_HOME_CONVERSATION_PHRASES "comm.safeones.dialogue" diff --git a/sc2/src/uqm/comm/spathi/resinst.h b/sc2/src/uqm/comm/spathi/resinst.h index ebced6772..a94bb27b5 100644 --- a/sc2/src/uqm/comm/spathi/resinst.h +++ b/sc2/src/uqm/comm/spathi/resinst.h @@ -1,4 +1,10 @@ -#include "igfxres.h" -#include "ifontres.h" -#include "istrtab.h" -#include "imusicre.h" +#define SPATHI_HOME_PMAP_ANIM "comm.safeones.graphics" +#define SPATHI_PMAP_ANIM "comm.spathi.graphics" +#define SPATHI_FONT "comm.spathi.font" +#define SPATHI_COLOR_MAP "comm.spathi.colortable" +#define SPATHI_CONVERSATION_PHRASES "comm.spathi.dialogue" +#define SPATHI_HOME_COLOR_MAP "comm.safeones.colortable" +#define SPATHI_HOME_CONVERSATION_PHRASES "comm.safeones.dialogue" +#define FWIFFO_MUSIC "comm.fwiffo.music" +#define SPAHOME_MUSIC "comm.safeones.music" +#define SPATHI_MUSIC "comm.spathi.music" diff --git a/sc2/src/uqm/comm/spathi/respkg.h b/sc2/src/uqm/comm/spathi/respkg.h deleted file mode 100644 index 6eb526a68..000000000 --- a/sc2/src/uqm/comm/spathi/respkg.h +++ /dev/null @@ -1,9 +0,0 @@ -enum -{ - SPATHI_ART_PACKAGE = 1, - SPATHI_HOME_ART_PACKAGE, - SPATHI_COMMON_PACKAGE, - SPATHI_HOME_MUSIC_PACKAGE, - SPATHI_FWIFFO_MUSIC_PACKAGE, -}; - diff --git a/sc2/src/uqm/comm/spathi/restypes.h b/sc2/src/uqm/comm/spathi/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/comm/spathi/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/comm/spathi/spathi.res b/sc2/src/uqm/comm/spathi/spathi.res deleted file mode 100644 index ab1e21e05..000000000 --- a/sc2/src/uqm/comm/spathi/spathi.res +++ /dev/null @@ -1,17 +0,0 @@ -INCLUDE ../../star3do.typ - -PATH comm/spathi -PACKAGE SPATHI_ART_PACKAGE spathi.con - GFXRES SPATHI_PMAP_ANIM spathi.ani - FONTRES SPATHI_FONT spathi.fon - STRTAB SPATHI_CONVERSATION_PHRASES spathi.txt - -PATH comm/spahome -PACKAGE SPATHI_HOME_ART_PACKAGE spathi.con - GFXRES SPATHI_HOME_PMAP_ANIM spahome.ani - STRTAB SPATHI_HOME_COLOR_MAP spahome.ct - STRTAB SPATHI_HOME_CONVERSATION_PHRASES spahome.txt - -PATH comm/spathi -PACKAGE SPATHI_COMMON_PACKAGE spathi.con - MUSICRES SPATHI_MUSIC spathi.mod diff --git a/sc2/src/uqm/comm/supox/ifontres.h b/sc2/src/uqm/comm/supox/ifontres.h deleted file mode 100644 index 6d3390b67..000000000 --- a/sc2/src/uqm/comm/supox/ifontres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SUPOX_FONT "comm.supox.font" diff --git a/sc2/src/uqm/comm/supox/igfxres.h b/sc2/src/uqm/comm/supox/igfxres.h deleted file mode 100644 index a5d8fddf6..000000000 --- a/sc2/src/uqm/comm/supox/igfxres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SUPOX_PMAP_ANIM "comm.supox.graphics" diff --git a/sc2/src/uqm/comm/supox/imusicre.h b/sc2/src/uqm/comm/supox/imusicre.h deleted file mode 100644 index 89716cea6..000000000 --- a/sc2/src/uqm/comm/supox/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SUPOX_MUSIC "comm.supox.music" diff --git a/sc2/src/uqm/comm/supox/istrtab.h b/sc2/src/uqm/comm/supox/istrtab.h deleted file mode 100644 index 1016e1cbd..000000000 --- a/sc2/src/uqm/comm/supox/istrtab.h +++ /dev/null @@ -1,6 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SUPOX_COLOR_MAP "comm.supox.colortable" -#define SUPOX_CONVERSATION_PHRASES "comm.supox.dialogue" diff --git a/sc2/src/uqm/comm/supox/resinst.h b/sc2/src/uqm/comm/supox/resinst.h index ebced6772..e56472523 100644 --- a/sc2/src/uqm/comm/supox/resinst.h +++ b/sc2/src/uqm/comm/supox/resinst.h @@ -1,4 +1,5 @@ -#include "igfxres.h" -#include "ifontres.h" -#include "istrtab.h" -#include "imusicre.h" +#define SUPOX_PMAP_ANIM "comm.supox.graphics" +#define SUPOX_FONT "comm.supox.font" +#define SUPOX_COLOR_MAP "comm.supox.colortable" +#define SUPOX_CONVERSATION_PHRASES "comm.supox.dialogue" +#define SUPOX_MUSIC "comm.supox.music" diff --git a/sc2/src/uqm/comm/supox/respkg.h b/sc2/src/uqm/comm/supox/respkg.h deleted file mode 100644 index 994623220..000000000 --- a/sc2/src/uqm/comm/supox/respkg.h +++ /dev/null @@ -1,5 +0,0 @@ -enum -{ - SUPOX_PACKAGE = 1 -}; - diff --git a/sc2/src/uqm/comm/supox/restypes.h b/sc2/src/uqm/comm/supox/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/comm/supox/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/comm/supox/supox.res b/sc2/src/uqm/comm/supox/supox.res deleted file mode 100644 index bb74f611a..000000000 --- a/sc2/src/uqm/comm/supox/supox.res +++ /dev/null @@ -1,10 +0,0 @@ -INCLUDE ../../star3do.typ - -PATH comm/supox - -PACKAGE SUPOX_PACKAGE supox.con - GFXRES SUPOX_PMAP_ANIM supox.ani - FONTRES SUPOX_FONT supox.fon - MUSICRES SUPOX_MUSIC supox.mod - STRTAB SUPOX_CONVERSATION_PHRASES supox.txt - diff --git a/sc2/src/uqm/comm/syreen/ifontres.h b/sc2/src/uqm/comm/syreen/ifontres.h deleted file mode 100644 index 280ecf6bf..000000000 --- a/sc2/src/uqm/comm/syreen/ifontres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SYREEN_FONT "comm.syreen.font" diff --git a/sc2/src/uqm/comm/syreen/igfxres.h b/sc2/src/uqm/comm/syreen/igfxres.h deleted file mode 100644 index ee7f2f41b..000000000 --- a/sc2/src/uqm/comm/syreen/igfxres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SYREEN_PMAP_ANIM "comm.syreen.graphics" diff --git a/sc2/src/uqm/comm/syreen/imusicre.h b/sc2/src/uqm/comm/syreen/imusicre.h deleted file mode 100644 index 369e791e3..000000000 --- a/sc2/src/uqm/comm/syreen/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SYREEN_MUSIC "comm.syreen.music" diff --git a/sc2/src/uqm/comm/syreen/istrtab.h b/sc2/src/uqm/comm/syreen/istrtab.h deleted file mode 100644 index 1ea7a6815..000000000 --- a/sc2/src/uqm/comm/syreen/istrtab.h +++ /dev/null @@ -1,6 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SYREEN_COLOR_MAP "comm.syreen.colortable" -#define SYREEN_CONVERSATION_PHRASES "comm.syreen.dialogue" diff --git a/sc2/src/uqm/comm/syreen/resinst.h b/sc2/src/uqm/comm/syreen/resinst.h index ebced6772..675c0812e 100644 --- a/sc2/src/uqm/comm/syreen/resinst.h +++ b/sc2/src/uqm/comm/syreen/resinst.h @@ -1,4 +1,5 @@ -#include "igfxres.h" -#include "ifontres.h" -#include "istrtab.h" -#include "imusicre.h" +#define SYREEN_PMAP_ANIM "comm.syreen.graphics" +#define SYREEN_FONT "comm.syreen.font" +#define SYREEN_COLOR_MAP "comm.syreen.colortable" +#define SYREEN_CONVERSATION_PHRASES "comm.syreen.dialogue" +#define SYREEN_MUSIC "comm.syreen.music" diff --git a/sc2/src/uqm/comm/syreen/respkg.h b/sc2/src/uqm/comm/syreen/respkg.h deleted file mode 100644 index 80bba0320..000000000 --- a/sc2/src/uqm/comm/syreen/respkg.h +++ /dev/null @@ -1,5 +0,0 @@ -enum -{ - SYREEN_PACKAGE = 1 -}; - diff --git a/sc2/src/uqm/comm/syreen/restypes.h b/sc2/src/uqm/comm/syreen/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/comm/syreen/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/comm/syreen/syreen.res b/sc2/src/uqm/comm/syreen/syreen.res deleted file mode 100644 index 0ffca2608..000000000 --- a/sc2/src/uqm/comm/syreen/syreen.res +++ /dev/null @@ -1,10 +0,0 @@ -INCLUDE ../../star3do.typ - -PATH comm/syreen - -PACKAGE SYREEN_PACKAGE syreen.con - GFXRES SYREEN_PMAP_ANIM syreen.ani - FONTRES SYREEN_FONT syreen.fon - MUSICRES SYREEN_MUSIC syreen.mod - STRTAB SYREEN_CONVERSATION_PHRASES syreen.txt - STRTAB SYREEN_COLOR_MAP syreen.ct diff --git a/sc2/src/uqm/comm/talkpet/ifontres.h b/sc2/src/uqm/comm/talkpet/ifontres.h deleted file mode 100644 index ff89a7d18..000000000 --- a/sc2/src/uqm/comm/talkpet/ifontres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define TALKING_PET_FONT "comm.talkingpet.font" diff --git a/sc2/src/uqm/comm/talkpet/igfxres.h b/sc2/src/uqm/comm/talkpet/igfxres.h deleted file mode 100644 index a6ddac3d3..000000000 --- a/sc2/src/uqm/comm/talkpet/igfxres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define TALKING_PET_PMAP_ANIM "comm.talkingpet.graphics" diff --git a/sc2/src/uqm/comm/talkpet/imusicre.h b/sc2/src/uqm/comm/talkpet/imusicre.h deleted file mode 100644 index 787f15b8d..000000000 --- a/sc2/src/uqm/comm/talkpet/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define TALKING_PET_MUSIC "comm.talkingpet.music" diff --git a/sc2/src/uqm/comm/talkpet/istrtab.h b/sc2/src/uqm/comm/talkpet/istrtab.h deleted file mode 100644 index 6c916b5ad..000000000 --- a/sc2/src/uqm/comm/talkpet/istrtab.h +++ /dev/null @@ -1,6 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define TALKING_PET_COLOR_MAP "comm.talkingpet.colortable" -#define TALKING_PET_CONVERSATION_PHRASES "comm.talkingpet.dialogue" diff --git a/sc2/src/uqm/comm/talkpet/resinst.h b/sc2/src/uqm/comm/talkpet/resinst.h index ebced6772..fa3f30243 100644 --- a/sc2/src/uqm/comm/talkpet/resinst.h +++ b/sc2/src/uqm/comm/talkpet/resinst.h @@ -1,4 +1,5 @@ -#include "igfxres.h" -#include "ifontres.h" -#include "istrtab.h" -#include "imusicre.h" +#define TALKING_PET_PMAP_ANIM "comm.talkingpet.graphics" +#define TALKING_PET_FONT "comm.talkingpet.font" +#define TALKING_PET_COLOR_MAP "comm.talkingpet.colortable" +#define TALKING_PET_CONVERSATION_PHRASES "comm.talkingpet.dialogue" +#define TALKING_PET_MUSIC "comm.talkingpet.music" diff --git a/sc2/src/uqm/comm/talkpet/respkg.h b/sc2/src/uqm/comm/talkpet/respkg.h deleted file mode 100644 index 58de0172d..000000000 --- a/sc2/src/uqm/comm/talkpet/respkg.h +++ /dev/null @@ -1,5 +0,0 @@ -enum -{ - TALKING_PET_PACKAGE = 1 -}; - diff --git a/sc2/src/uqm/comm/talkpet/restypes.h b/sc2/src/uqm/comm/talkpet/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/comm/talkpet/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/comm/talkpet/talkpet.res b/sc2/src/uqm/comm/talkpet/talkpet.res deleted file mode 100644 index 6d17e602c..000000000 --- a/sc2/src/uqm/comm/talkpet/talkpet.res +++ /dev/null @@ -1,10 +0,0 @@ -INCLUDE ../../star3do.typ - -PATH comm/talkpet - -PACKAGE TALKING_PET_PACKAGE talkpet.con - GFXRES TALKING_PET_PMAP_ANIM talkpet.ani - FONTRES TALKING_PET_FONT talkpet.fon - MUSICRES TALKING_PET_MUSIC talkpet.mod - STRTAB TALKING_PET_CONVERSATION_PHRASES talkpet.txt - STRTAB TALKING_PET_COLOR_MAP talkpet.ct diff --git a/sc2/src/uqm/comm/thradd/ifontres.h b/sc2/src/uqm/comm/thradd/ifontres.h deleted file mode 100644 index 3e90228e1..000000000 --- a/sc2/src/uqm/comm/thradd/ifontres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define THRADD_FONT "comm.thraddash.font" diff --git a/sc2/src/uqm/comm/thradd/igfxres.h b/sc2/src/uqm/comm/thradd/igfxres.h deleted file mode 100644 index 1b6e1d7d4..000000000 --- a/sc2/src/uqm/comm/thradd/igfxres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define THRADD_PMAP_ANIM "comm.thraddash.graphics" diff --git a/sc2/src/uqm/comm/thradd/imusicre.h b/sc2/src/uqm/comm/thradd/imusicre.h deleted file mode 100644 index 85e19cfba..000000000 --- a/sc2/src/uqm/comm/thradd/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define THRADD_MUSIC "comm.thraddash.music" diff --git a/sc2/src/uqm/comm/thradd/istrtab.h b/sc2/src/uqm/comm/thradd/istrtab.h deleted file mode 100644 index bdb3088cc..000000000 --- a/sc2/src/uqm/comm/thradd/istrtab.h +++ /dev/null @@ -1,6 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define THRADD_COLOR_MAP "comm.thraddash.colortable" -#define THRADD_CONVERSATION_PHRASES "comm.thraddash.dialogue" diff --git a/sc2/src/uqm/comm/thradd/resinst.h b/sc2/src/uqm/comm/thradd/resinst.h index ebced6772..c5fe93b09 100644 --- a/sc2/src/uqm/comm/thradd/resinst.h +++ b/sc2/src/uqm/comm/thradd/resinst.h @@ -1,4 +1,5 @@ -#include "igfxres.h" -#include "ifontres.h" -#include "istrtab.h" -#include "imusicre.h" +#define THRADD_PMAP_ANIM "comm.thraddash.graphics" +#define THRADD_FONT "comm.thraddash.font" +#define THRADD_COLOR_MAP "comm.thraddash.colortable" +#define THRADD_CONVERSATION_PHRASES "comm.thraddash.dialogue" +#define THRADD_MUSIC "comm.thraddash.music" diff --git a/sc2/src/uqm/comm/thradd/respkg.h b/sc2/src/uqm/comm/thradd/respkg.h deleted file mode 100644 index 039e8e2c3..000000000 --- a/sc2/src/uqm/comm/thradd/respkg.h +++ /dev/null @@ -1,5 +0,0 @@ -enum -{ - THRADD_PACKAGE = 1 -}; - diff --git a/sc2/src/uqm/comm/thradd/restypes.h b/sc2/src/uqm/comm/thradd/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/comm/thradd/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/comm/thradd/thradd.res b/sc2/src/uqm/comm/thradd/thradd.res deleted file mode 100644 index 83a9ab802..000000000 --- a/sc2/src/uqm/comm/thradd/thradd.res +++ /dev/null @@ -1,10 +0,0 @@ -INCLUDE ../../star3do.typ - -PATH comm/thradd - -PACKAGE THRADD_PACKAGE thradd.con - GFXRES THRADD_PMAP_ANIM thradd.ani - FONTRES THRADD_FONT thradd.fon - MUSICRES THRADD_MUSIC thradd.mod - STRTAB THRADD_CONVERSATION_PHRASES thradd.txt - diff --git a/sc2/src/uqm/comm/umgah/ifontres.h b/sc2/src/uqm/comm/umgah/ifontres.h deleted file mode 100644 index c02106992..000000000 --- a/sc2/src/uqm/comm/umgah/ifontres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define UMGAH_FONT "comm.umgah.font" diff --git a/sc2/src/uqm/comm/umgah/igfxres.h b/sc2/src/uqm/comm/umgah/igfxres.h deleted file mode 100644 index 19ea82c32..000000000 --- a/sc2/src/uqm/comm/umgah/igfxres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define UMGAH_PMAP_ANIM "comm.umgah.graphics" diff --git a/sc2/src/uqm/comm/umgah/imusicre.h b/sc2/src/uqm/comm/umgah/imusicre.h deleted file mode 100644 index 3a4d1baa5..000000000 --- a/sc2/src/uqm/comm/umgah/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define UMGAH_MUSIC "comm.umgah.music" diff --git a/sc2/src/uqm/comm/umgah/istrtab.h b/sc2/src/uqm/comm/umgah/istrtab.h deleted file mode 100644 index 8394af61a..000000000 --- a/sc2/src/uqm/comm/umgah/istrtab.h +++ /dev/null @@ -1,6 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define UMGAH_COLOR_MAP "comm.umgah.colortable" -#define UMGAH_CONVERSATION_PHRASES "comm.umgah.dialogue" diff --git a/sc2/src/uqm/comm/umgah/resinst.h b/sc2/src/uqm/comm/umgah/resinst.h index ebced6772..6ea768089 100644 --- a/sc2/src/uqm/comm/umgah/resinst.h +++ b/sc2/src/uqm/comm/umgah/resinst.h @@ -1,4 +1,5 @@ -#include "igfxres.h" -#include "ifontres.h" -#include "istrtab.h" -#include "imusicre.h" +#define UMGAH_PMAP_ANIM "comm.umgah.graphics" +#define UMGAH_FONT "comm.umgah.font" +#define UMGAH_COLOR_MAP "comm.umgah.colortable" +#define UMGAH_CONVERSATION_PHRASES "comm.umgah.dialogue" +#define UMGAH_MUSIC "comm.umgah.music" diff --git a/sc2/src/uqm/comm/umgah/respkg.h b/sc2/src/uqm/comm/umgah/respkg.h deleted file mode 100644 index 69b1a810d..000000000 --- a/sc2/src/uqm/comm/umgah/respkg.h +++ /dev/null @@ -1,5 +0,0 @@ -enum -{ - UMGAH_PACKAGE = 1 -}; - diff --git a/sc2/src/uqm/comm/umgah/restypes.h b/sc2/src/uqm/comm/umgah/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/comm/umgah/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/comm/umgah/umgah.res b/sc2/src/uqm/comm/umgah/umgah.res deleted file mode 100644 index d5c4a5a67..000000000 --- a/sc2/src/uqm/comm/umgah/umgah.res +++ /dev/null @@ -1,10 +0,0 @@ -INCLUDE ../../star3do.typ - -PATH comm/umgah - -PACKAGE UMGAH_PACKAGE umgah.con - GFXRES UMGAH_PMAP_ANIM umgah.ani - FONTRES UMGAH_FONT umgah.fon - MUSICRES UMGAH_MUSIC umgah.mod - STRTAB UMGAH_CONVERSATION_PHRASES umgah.txt - diff --git a/sc2/src/uqm/comm/urquan/ifontres.h b/sc2/src/uqm/comm/urquan/ifontres.h deleted file mode 100644 index 98168564c..000000000 --- a/sc2/src/uqm/comm/urquan/ifontres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define URQUAN_FONT "comm.urquan.font" diff --git a/sc2/src/uqm/comm/urquan/igfxres.h b/sc2/src/uqm/comm/urquan/igfxres.h deleted file mode 100644 index c7ab0672a..000000000 --- a/sc2/src/uqm/comm/urquan/igfxres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define URQUAN_PMAP_ANIM "comm.urquan.graphics" diff --git a/sc2/src/uqm/comm/urquan/imusicre.h b/sc2/src/uqm/comm/urquan/imusicre.h deleted file mode 100644 index 21788952c..000000000 --- a/sc2/src/uqm/comm/urquan/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define URQUAN_MUSIC "comm.urquan.music" diff --git a/sc2/src/uqm/comm/urquan/istrtab.h b/sc2/src/uqm/comm/urquan/istrtab.h deleted file mode 100644 index a7827ee4a..000000000 --- a/sc2/src/uqm/comm/urquan/istrtab.h +++ /dev/null @@ -1,6 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define URQUAN_COLOR_MAP "comm.urquan.colortable" -#define URQUAN_CONVERSATION_PHRASES "comm.urquan.dialogue" diff --git a/sc2/src/uqm/comm/urquan/resinst.h b/sc2/src/uqm/comm/urquan/resinst.h index ebced6772..26f95edcb 100644 --- a/sc2/src/uqm/comm/urquan/resinst.h +++ b/sc2/src/uqm/comm/urquan/resinst.h @@ -1,4 +1,5 @@ -#include "igfxres.h" -#include "ifontres.h" -#include "istrtab.h" -#include "imusicre.h" +#define URQUAN_PMAP_ANIM "comm.urquan.graphics" +#define URQUAN_FONT "comm.urquan.font" +#define URQUAN_COLOR_MAP "comm.urquan.colortable" +#define URQUAN_CONVERSATION_PHRASES "comm.urquan.dialogue" +#define URQUAN_MUSIC "comm.urquan.music" diff --git a/sc2/src/uqm/comm/urquan/respkg.h b/sc2/src/uqm/comm/urquan/respkg.h deleted file mode 100644 index 58fbb6fb6..000000000 --- a/sc2/src/uqm/comm/urquan/respkg.h +++ /dev/null @@ -1,5 +0,0 @@ -enum -{ - URQUAN_PACKAGE = 1 -}; - diff --git a/sc2/src/uqm/comm/urquan/restypes.h b/sc2/src/uqm/comm/urquan/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/comm/urquan/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/comm/urquan/urquan.res b/sc2/src/uqm/comm/urquan/urquan.res deleted file mode 100644 index 0ef33fab4..000000000 --- a/sc2/src/uqm/comm/urquan/urquan.res +++ /dev/null @@ -1,10 +0,0 @@ -INCLUDE ../../star3do.typ - -PATH comm/urquan - -PACKAGE URQUAN_PACKAGE urquan.con - GFXRES URQUAN_PMAP_ANIM urquan.ani - FONTRES URQUAN_FONT urquan.fon - MUSICRES URQUAN_MUSIC urquan.mod - STRTAB URQUAN_CONVERSATION_PHRASES urquan.txt - diff --git a/sc2/src/uqm/comm/utwig/ifontres.h b/sc2/src/uqm/comm/utwig/ifontres.h deleted file mode 100644 index 290bfc426..000000000 --- a/sc2/src/uqm/comm/utwig/ifontres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define UTWIG_FONT "comm.utwig.font" diff --git a/sc2/src/uqm/comm/utwig/igfxres.h b/sc2/src/uqm/comm/utwig/igfxres.h deleted file mode 100644 index 42d09abfa..000000000 --- a/sc2/src/uqm/comm/utwig/igfxres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define UTWIG_PMAP_ANIM "comm.utwig.graphics" diff --git a/sc2/src/uqm/comm/utwig/imusicre.h b/sc2/src/uqm/comm/utwig/imusicre.h deleted file mode 100644 index 619016a0b..000000000 --- a/sc2/src/uqm/comm/utwig/imusicre.h +++ /dev/null @@ -1,6 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define UTWIG_MUSIC "comm.utwig.music" -#define UTWIG_ULTRON_MUSIC "comm.utwig.ultron.music" diff --git a/sc2/src/uqm/comm/utwig/istrtab.h b/sc2/src/uqm/comm/utwig/istrtab.h deleted file mode 100644 index 2570e5761..000000000 --- a/sc2/src/uqm/comm/utwig/istrtab.h +++ /dev/null @@ -1,6 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define UTWIG_COLOR_MAP "comm.utwig.colortable" -#define UTWIG_CONVERSATION_PHRASES "comm.utwig.dialogue" diff --git a/sc2/src/uqm/comm/utwig/resinst.h b/sc2/src/uqm/comm/utwig/resinst.h index ebced6772..880f46dac 100644 --- a/sc2/src/uqm/comm/utwig/resinst.h +++ b/sc2/src/uqm/comm/utwig/resinst.h @@ -1,4 +1,6 @@ -#include "igfxres.h" -#include "ifontres.h" -#include "istrtab.h" -#include "imusicre.h" +#define UTWIG_PMAP_ANIM "comm.utwig.graphics" +#define UTWIG_FONT "comm.utwig.font" +#define UTWIG_COLOR_MAP "comm.utwig.colortable" +#define UTWIG_CONVERSATION_PHRASES "comm.utwig.dialogue" +#define UTWIG_MUSIC "comm.utwig.music" +#define UTWIG_ULTRON_MUSIC "comm.utwig.ultron.music" diff --git a/sc2/src/uqm/comm/utwig/respkg.h b/sc2/src/uqm/comm/utwig/respkg.h deleted file mode 100644 index fd6b206e0..000000000 --- a/sc2/src/uqm/comm/utwig/respkg.h +++ /dev/null @@ -1,6 +0,0 @@ -enum -{ - UTWIG_PACKAGE = 1, - UTWIG_ULTRON_MUSIC_PACKAGE, -}; - diff --git a/sc2/src/uqm/comm/utwig/restypes.h b/sc2/src/uqm/comm/utwig/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/comm/utwig/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/comm/utwig/utwig.res b/sc2/src/uqm/comm/utwig/utwig.res deleted file mode 100644 index 8a4a9f70c..000000000 --- a/sc2/src/uqm/comm/utwig/utwig.res +++ /dev/null @@ -1,10 +0,0 @@ -INCLUDE ../../star3do.typ - -PATH comm/utwig - -PACKAGE UTWIG_PACKAGE utwig.con - GFXRES UTWIG_PMAP_ANIM utwig.ani - FONTRES UTWIG_FONT utwig.fon - MUSICRES UTWIG_MUSIC utwig.mod - STRTAB UTWIG_CONVERSATION_PHRASES utwig.txt - diff --git a/sc2/src/uqm/comm/vux/ifontres.h b/sc2/src/uqm/comm/vux/ifontres.h deleted file mode 100644 index 4f53feb25..000000000 --- a/sc2/src/uqm/comm/vux/ifontres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define VUX_FONT "comm.vux.font" diff --git a/sc2/src/uqm/comm/vux/igfxres.h b/sc2/src/uqm/comm/vux/igfxres.h deleted file mode 100644 index e0e18ebdb..000000000 --- a/sc2/src/uqm/comm/vux/igfxres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define VUX_PMAP_ANIM "comm.vux.graphics" diff --git a/sc2/src/uqm/comm/vux/imusicre.h b/sc2/src/uqm/comm/vux/imusicre.h deleted file mode 100644 index cdb3e0c5b..000000000 --- a/sc2/src/uqm/comm/vux/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define VUX_MUSIC "comm.vux.music" diff --git a/sc2/src/uqm/comm/vux/istrtab.h b/sc2/src/uqm/comm/vux/istrtab.h deleted file mode 100644 index ad3557ab5..000000000 --- a/sc2/src/uqm/comm/vux/istrtab.h +++ /dev/null @@ -1,6 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define VUX_COLOR_MAP "comm.vux.colortable" -#define VUX_CONVERSATION_PHRASES "comm.vux.dialogue" diff --git a/sc2/src/uqm/comm/vux/resinst.h b/sc2/src/uqm/comm/vux/resinst.h index ebced6772..0cc7dca3e 100644 --- a/sc2/src/uqm/comm/vux/resinst.h +++ b/sc2/src/uqm/comm/vux/resinst.h @@ -1,4 +1,5 @@ -#include "igfxres.h" -#include "ifontres.h" -#include "istrtab.h" -#include "imusicre.h" +#define VUX_PMAP_ANIM "comm.vux.graphics" +#define VUX_FONT "comm.vux.font" +#define VUX_COLOR_MAP "comm.vux.colortable" +#define VUX_CONVERSATION_PHRASES "comm.vux.dialogue" +#define VUX_MUSIC "comm.vux.music" diff --git a/sc2/src/uqm/comm/vux/respkg.h b/sc2/src/uqm/comm/vux/respkg.h deleted file mode 100644 index 5e8f93151..000000000 --- a/sc2/src/uqm/comm/vux/respkg.h +++ /dev/null @@ -1,5 +0,0 @@ -enum -{ - VUX_PACKAGE = 1 -}; - diff --git a/sc2/src/uqm/comm/vux/restypes.h b/sc2/src/uqm/comm/vux/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/comm/vux/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/comm/vux/vux.res b/sc2/src/uqm/comm/vux/vux.res deleted file mode 100644 index bb48cfc1e..000000000 --- a/sc2/src/uqm/comm/vux/vux.res +++ /dev/null @@ -1,11 +0,0 @@ -INCLUDE ../../star3do.typ - -PATH comm/vux - -PACKAGE VUX_PACKAGE vux.con - GFXRES VUX_PMAP_ANIM vux.ani - FONTRES VUX_FONT vux.fon - MUSICRES VUX_MUSIC vux.mod - STRTAB VUX_CONVERSATION_PHRASES vux.txt - STRTAB VUX_COLOR_MAP vux.ct - diff --git a/sc2/src/uqm/comm/yehat/ifontres.h b/sc2/src/uqm/comm/yehat/ifontres.h deleted file mode 100644 index 2ac172a76..000000000 --- a/sc2/src/uqm/comm/yehat/ifontres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define YEHAT_FONT "comm.yehat.font" diff --git a/sc2/src/uqm/comm/yehat/igfxres.h b/sc2/src/uqm/comm/yehat/igfxres.h deleted file mode 100644 index 21ed09d6d..000000000 --- a/sc2/src/uqm/comm/yehat/igfxres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define YEHAT_PMAP_ANIM "comm.yehat.graphics" diff --git a/sc2/src/uqm/comm/yehat/imusicre.h b/sc2/src/uqm/comm/yehat/imusicre.h deleted file mode 100644 index c6ff268b4..000000000 --- a/sc2/src/uqm/comm/yehat/imusicre.h +++ /dev/null @@ -1,6 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define REBEL_MUSIC "comm.yehat.rebel.music" -#define YEHAT_MUSIC "comm.yehat.music" diff --git a/sc2/src/uqm/comm/yehat/istrtab.h b/sc2/src/uqm/comm/yehat/istrtab.h deleted file mode 100644 index 3061ee7e8..000000000 --- a/sc2/src/uqm/comm/yehat/istrtab.h +++ /dev/null @@ -1,7 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define REBEL_CONVERSATION_PHRASES "comm.yehat.rebel.dialogue" -#define YEHAT_COLOR_MAP "comm.yehat.colortable" -#define YEHAT_CONVERSATION_PHRASES "comm.yehat.dialogue" diff --git a/sc2/src/uqm/comm/yehat/resinst.h b/sc2/src/uqm/comm/yehat/resinst.h index ebced6772..dc5e66bd6 100644 --- a/sc2/src/uqm/comm/yehat/resinst.h +++ b/sc2/src/uqm/comm/yehat/resinst.h @@ -1,4 +1,7 @@ -#include "igfxres.h" -#include "ifontres.h" -#include "istrtab.h" -#include "imusicre.h" +#define YEHAT_PMAP_ANIM "comm.yehat.graphics" +#define YEHAT_FONT "comm.yehat.font" +#define REBEL_CONVERSATION_PHRASES "comm.yehat.rebel.dialogue" +#define YEHAT_COLOR_MAP "comm.yehat.colortable" +#define YEHAT_CONVERSATION_PHRASES "comm.yehat.dialogue" +#define REBEL_MUSIC "comm.yehat.rebel.music" +#define YEHAT_MUSIC "comm.yehat.music" diff --git a/sc2/src/uqm/comm/yehat/respkg.h b/sc2/src/uqm/comm/yehat/respkg.h deleted file mode 100644 index f5acc837a..000000000 --- a/sc2/src/uqm/comm/yehat/respkg.h +++ /dev/null @@ -1,8 +0,0 @@ -enum -{ - YEHAT_PACKAGE = 1, - YEHAT_PHRASE_PACKAGE, - REBEL_PHRASE_PACKAGE, - REBEL_MUSIC_PACKAGE, -}; - diff --git a/sc2/src/uqm/comm/yehat/restypes.h b/sc2/src/uqm/comm/yehat/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/comm/yehat/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/comm/yehat/yehat.res b/sc2/src/uqm/comm/yehat/yehat.res deleted file mode 100644 index 070fa6ee0..000000000 --- a/sc2/src/uqm/comm/yehat/yehat.res +++ /dev/null @@ -1,15 +0,0 @@ -INCLUDE ../../star3do.typ - -PATH comm/yehat -PACKAGE YEHAT_PACKAGE yehat.con - GFXRES YEHAT_PMAP_ANIM yehat.ani - FONTRES YEHAT_FONT yehat.ani - MUSICRES YEHAT_MUSIC yehat.mod - -PACKAGE YEHAT_PHRASE_PACKAGE yehat.con - STRTAB YEHAT_CONVERSATION_PHRASES yehat.txt - -PATH comm/rebel -PACKAGE REBEL_PHRASE_PACKAGE yehat.con - STRTAB REBEL_CONVERSATION_PHRASES rebel.txt - diff --git a/sc2/src/uqm/comm/zoqfot/ifontres.h b/sc2/src/uqm/comm/zoqfot/ifontres.h deleted file mode 100644 index 86e66b55a..000000000 --- a/sc2/src/uqm/comm/zoqfot/ifontres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ZOQFOTPIK_FONT "comm.zoqfotpik.font" diff --git a/sc2/src/uqm/comm/zoqfot/igfxres.h b/sc2/src/uqm/comm/zoqfot/igfxres.h deleted file mode 100644 index f098c53a5..000000000 --- a/sc2/src/uqm/comm/zoqfot/igfxres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ZOQFOTPIK_PMAP_ANIM "comm.zoqfotpik.graphics" diff --git a/sc2/src/uqm/comm/zoqfot/imusicre.h b/sc2/src/uqm/comm/zoqfot/imusicre.h deleted file mode 100644 index 4a7fa53d6..000000000 --- a/sc2/src/uqm/comm/zoqfot/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ZOQFOTPIK_MUSIC "comm.zoqfotpik.music" diff --git a/sc2/src/uqm/comm/zoqfot/istrtab.h b/sc2/src/uqm/comm/zoqfot/istrtab.h deleted file mode 100644 index 521f6b58b..000000000 --- a/sc2/src/uqm/comm/zoqfot/istrtab.h +++ /dev/null @@ -1,6 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ZOQFOTPIK_COLOR_MAP "comm.zoqfotpik.colortable" -#define ZOQFOTPIK_CONVERSATION_PHRASES "comm.zoqfotpik.dialogue" diff --git a/sc2/src/uqm/comm/zoqfot/resinst.h b/sc2/src/uqm/comm/zoqfot/resinst.h index ebced6772..3273cf4a5 100644 --- a/sc2/src/uqm/comm/zoqfot/resinst.h +++ b/sc2/src/uqm/comm/zoqfot/resinst.h @@ -1,4 +1,5 @@ -#include "igfxres.h" -#include "ifontres.h" -#include "istrtab.h" -#include "imusicre.h" +#define ZOQFOTPIK_PMAP_ANIM "comm.zoqfotpik.graphics" +#define ZOQFOTPIK_FONT "comm.zoqfotpik.font" +#define ZOQFOTPIK_COLOR_MAP "comm.zoqfotpik.colortable" +#define ZOQFOTPIK_CONVERSATION_PHRASES "comm.zoqfotpik.dialogue" +#define ZOQFOTPIK_MUSIC "comm.zoqfotpik.music" diff --git a/sc2/src/uqm/comm/zoqfot/respkg.h b/sc2/src/uqm/comm/zoqfot/respkg.h deleted file mode 100644 index 4eb7faabc..000000000 --- a/sc2/src/uqm/comm/zoqfot/respkg.h +++ /dev/null @@ -1,5 +0,0 @@ -enum -{ - ZOQFOTPIK_PACKAGE = 1 -}; - diff --git a/sc2/src/uqm/comm/zoqfot/restypes.h b/sc2/src/uqm/comm/zoqfot/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/comm/zoqfot/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/comm/zoqfot/zoqfot.res b/sc2/src/uqm/comm/zoqfot/zoqfot.res deleted file mode 100644 index a7bdfc467..000000000 --- a/sc2/src/uqm/comm/zoqfot/zoqfot.res +++ /dev/null @@ -1,10 +0,0 @@ -INCLUDE ../../star3do.typ - -PATH comm/zoqfot - -PACKAGE ZOQFOTPIK_PACKAGE zoqfot.con - GFXRES ZOQFOTPIK_PMAP_ANIM zoqfot.ani - FONTRES ZOQFOTPIK_FONT zoqfot.fon - MUSICRES ZOQFOTPIK_MUSIC zoqfot.mod - STRTAB ZOQFOTPIK_CONVERSATION_PHRASES zoqfot.txt - diff --git a/sc2/src/uqm/ships/androsyn/androsyn.res b/sc2/src/uqm/ships/androsyn/androsyn.res deleted file mode 100644 index fe1edcd6f..000000000 --- a/sc2/src/uqm/ships/androsyn/androsyn.res +++ /dev/null @@ -1,26 +0,0 @@ -INCLUDE ../star3do.typ - -PATH androsyn - -PACKAGE ANDROSYNTH_CODE_PACKAGE androsyn.shp - CODE ANDROSYNTH_CODE androsyn.cod - GFXRES ANDROSYNTH_ICON_MASK_PMAP_ANIM andicons.ani - GFXRES ANDROSYNTH_MICON_MASK_PMAP_ANIM andmicon.ani - STRTAB ANDROSYNTH_RACE_STRINGS andtext.txt - -PACKAGE ANDROSYNTH_PACKAGE androsyn.shp - GFXRES ANDROSYNTH_BIG_MASK_PMAP_ANIM androsyn.big - GFXRES ANDROSYNTH_MED_MASK_PMAP_ANIM androsyn.med - GFXRES ANDROSYNTH_SML_MASK_PMAP_ANIM androsyn.sml - GFXRES BUBBLE_BIG_MASK_PMAP_ANIM bubble.big - GFXRES BUBBLE_MED_MASK_PMAP_ANIM bubble.med - GFXRES BUBBLE_SML_MASK_PMAP_ANIM bubble.sml - GFXRES BLAZER_BIG_MASK_PMAP_ANIM blazer.big - GFXRES BLAZER_MED_MASK_PMAP_ANIM blazer.med - GFXRES BLAZER_SML_MASK_PMAP_ANIM blazer.sml - - GFXRES ANDROSYNTH_CAPT_MASK_PMAP_ANIM andcap.ani - SNDRES ANDROSYNTH_SHIP_SOUNDS andsound.snd - - MUSICRES ANDROSYNTH_VICTORY_SONG andditty.mod - diff --git a/sc2/src/uqm/ships/androsyn/icode.h b/sc2/src/uqm/ships/androsyn/icode.h index 67f053a15..86af2df1d 100644 --- a/sc2/src/uqm/ships/androsyn/icode.h +++ b/sc2/src/uqm/ships/androsyn/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define ANDROSYNTH_CODE "ship.androsynth.code" diff --git a/sc2/src/uqm/ships/androsyn/igfxres.h b/sc2/src/uqm/ships/androsyn/igfxres.h deleted file mode 100644 index 12dea7a95..000000000 --- a/sc2/src/uqm/ships/androsyn/igfxres.h +++ /dev/null @@ -1,16 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ANDROSYNTH_BIG_MASK_PMAP_ANIM "ship.androsynth.graphics.guardian.large" -#define ANDROSYNTH_CAPT_MASK_PMAP_ANIM "ship.androsynth.graphics.captain" -#define ANDROSYNTH_ICON_MASK_PMAP_ANIM "ship.androsynth.icons" -#define ANDROSYNTH_MED_MASK_PMAP_ANIM "ship.androsynth.graphics.guardian.medium" -#define ANDROSYNTH_MICON_MASK_PMAP_ANIM "ship.androsynth.meleeicons" -#define ANDROSYNTH_SML_MASK_PMAP_ANIM "ship.androsynth.graphics.guardian.small" -#define BLAZER_BIG_MASK_PMAP_ANIM "ship.androsynth.graphics.blazer.large" -#define BLAZER_MED_MASK_PMAP_ANIM "ship.androsynth.graphics.blazer.medium" -#define BLAZER_SML_MASK_PMAP_ANIM "ship.androsynth.graphics.blazer.small" -#define BUBBLE_BIG_MASK_PMAP_ANIM "ship.androsynth.graphics.bubble.large" -#define BUBBLE_MED_MASK_PMAP_ANIM "ship.androsynth.graphics.bubble.medium" -#define BUBBLE_SML_MASK_PMAP_ANIM "ship.androsynth.graphics.bubble.small" diff --git a/sc2/src/uqm/ships/androsyn/imusicre.h b/sc2/src/uqm/ships/androsyn/imusicre.h deleted file mode 100644 index 084d44530..000000000 --- a/sc2/src/uqm/ships/androsyn/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ANDROSYNTH_VICTORY_SONG "ship.androsynth.ditty" diff --git a/sc2/src/uqm/ships/androsyn/isndres.h b/sc2/src/uqm/ships/androsyn/isndres.h deleted file mode 100644 index 9640b4864..000000000 --- a/sc2/src/uqm/ships/androsyn/isndres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ANDROSYNTH_SHIP_SOUNDS "ship.androsynth.sounds" diff --git a/sc2/src/uqm/ships/androsyn/istrtab.h b/sc2/src/uqm/ships/androsyn/istrtab.h deleted file mode 100644 index b6b75292c..000000000 --- a/sc2/src/uqm/ships/androsyn/istrtab.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ANDROSYNTH_RACE_STRINGS "ship.androsynth.text" diff --git a/sc2/src/uqm/ships/androsyn/resinst.h b/sc2/src/uqm/ships/androsyn/resinst.h index d5310a924..b8b0cd400 100644 --- a/sc2/src/uqm/ships/androsyn/resinst.h +++ b/sc2/src/uqm/ships/androsyn/resinst.h @@ -1,5 +1,17 @@ -#include "igfxres.h" -#include "istrtab.h" -#include "isndres.h" -#include "imusicre.h" +#define ANDROSYNTH_BIG_MASK_PMAP_ANIM "ship.androsynth.graphics.guardian.large" +#define ANDROSYNTH_CAPT_MASK_PMAP_ANIM "ship.androsynth.graphics.captain" +#define ANDROSYNTH_ICON_MASK_PMAP_ANIM "ship.androsynth.icons" +#define ANDROSYNTH_MED_MASK_PMAP_ANIM "ship.androsynth.graphics.guardian.medium" +#define ANDROSYNTH_MICON_MASK_PMAP_ANIM "ship.androsynth.meleeicons" +#define ANDROSYNTH_SML_MASK_PMAP_ANIM "ship.androsynth.graphics.guardian.small" +#define BLAZER_BIG_MASK_PMAP_ANIM "ship.androsynth.graphics.blazer.large" +#define BLAZER_MED_MASK_PMAP_ANIM "ship.androsynth.graphics.blazer.medium" +#define BLAZER_SML_MASK_PMAP_ANIM "ship.androsynth.graphics.blazer.small" +#define BUBBLE_BIG_MASK_PMAP_ANIM "ship.androsynth.graphics.bubble.large" +#define BUBBLE_MED_MASK_PMAP_ANIM "ship.androsynth.graphics.bubble.medium" +#define BUBBLE_SML_MASK_PMAP_ANIM "ship.androsynth.graphics.bubble.small" +#define ANDROSYNTH_RACE_STRINGS "ship.androsynth.text" +#define ANDROSYNTH_SHIP_SOUNDS "ship.androsynth.sounds" +#define ANDROSYNTH_VICTORY_SONG "ship.androsynth.ditty" + #include "icode.h" diff --git a/sc2/src/uqm/ships/androsyn/respkg.h b/sc2/src/uqm/ships/androsyn/respkg.h deleted file mode 100644 index 5461dd039..000000000 --- a/sc2/src/uqm/ships/androsyn/respkg.h +++ /dev/null @@ -1,6 +0,0 @@ -enum -{ - ANDROSYNTH_CODE_PACKAGE = 1, - ANDROSYNTH_PACKAGE -}; - diff --git a/sc2/src/uqm/ships/androsyn/restypes.h b/sc2/src/uqm/ships/androsyn/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/androsyn/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/arilou/arilou.res b/sc2/src/uqm/ships/arilou/arilou.res deleted file mode 100644 index b1227718a..000000000 --- a/sc2/src/uqm/ships/arilou/arilou.res +++ /dev/null @@ -1,23 +0,0 @@ -INCLUDE ../star3do.typ - -PATH arilou - -PACKAGE ARILOU_CODE_PACKAGE arilou.shp - CODE ARILOU_CODE arilou.cod - GFXRES ARILOU_ICON_MASK_PMAP_ANIM ariicons.ani - GFXRES ARILOU_MICON_MASK_PMAP_ANIM arimicon.ani - STRTAB ARILOU_RACE_STRINGS aritext.txt - -PACKAGE ARILOU_PACKAGE arilou.shp - GFXRES ARILOU_BIG_MASK_PMAP_ANIM arilou.big - GFXRES ARILOU_MED_MASK_PMAP_ANIM arilou.med - GFXRES ARILOU_SML_MASK_PMAP_ANIM arilou.sml - GFXRES WARP_BIG_MASK_PMAP_ANIM warp.big - GFXRES WARP_MED_MASK_PMAP_ANIM warp.med - GFXRES WARP_SML_MASK_PMAP_ANIM warp.sml - - GFXRES ARILOU_CAPTAIN_MASK_PMAP_ANIM aricap.ani - SNDRES ARILOU_SHIP_SOUNDS arisound.snd - - MUSICRES ARILOU_VICTORY_SONG ariditty.mod - diff --git a/sc2/src/uqm/ships/arilou/icode.h b/sc2/src/uqm/ships/arilou/icode.h index 81d4fff2c..b845d29bb 100644 --- a/sc2/src/uqm/ships/arilou/icode.h +++ b/sc2/src/uqm/ships/arilou/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define ARILOU_CODE "ship.arilou.code" diff --git a/sc2/src/uqm/ships/arilou/igfxres.h b/sc2/src/uqm/ships/arilou/igfxres.h deleted file mode 100644 index 85ea5e3c7..000000000 --- a/sc2/src/uqm/ships/arilou/igfxres.h +++ /dev/null @@ -1,13 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ARILOU_BIG_MASK_PMAP_ANIM "ship.arilou.graphics.skiff.large" -#define ARILOU_CAPTAIN_MASK_PMAP_ANIM "ship.arilou.graphics.captain" -#define ARILOU_ICON_MASK_PMAP_ANIM "ship.arilou.icons" -#define ARILOU_MED_MASK_PMAP_ANIM "ship.arilou.graphics.skiff.medium" -#define ARILOU_MICON_MASK_PMAP_ANIM "ship.arilou.meleeicons" -#define ARILOU_SML_MASK_PMAP_ANIM "ship.arilou.graphics.skiff.small" -#define WARP_BIG_MASK_PMAP_ANIM "ship.arilou.graphics.warp.large" -#define WARP_MED_MASK_PMAP_ANIM "ship.arilou.graphics.warp.medium" -#define WARP_SML_MASK_PMAP_ANIM "ship.arilou.graphics.warp.small" diff --git a/sc2/src/uqm/ships/arilou/imusicre.h b/sc2/src/uqm/ships/arilou/imusicre.h deleted file mode 100644 index af2eb0790..000000000 --- a/sc2/src/uqm/ships/arilou/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ARILOU_VICTORY_SONG "ship.arilou.ditty" diff --git a/sc2/src/uqm/ships/arilou/isndres.h b/sc2/src/uqm/ships/arilou/isndres.h deleted file mode 100644 index 3093976d3..000000000 --- a/sc2/src/uqm/ships/arilou/isndres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ARILOU_SHIP_SOUNDS "ship.arilou.sounds" diff --git a/sc2/src/uqm/ships/arilou/istrtab.h b/sc2/src/uqm/ships/arilou/istrtab.h deleted file mode 100644 index 4a10002f2..000000000 --- a/sc2/src/uqm/ships/arilou/istrtab.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ARILOU_RACE_STRINGS "ship.arilou.text" diff --git a/sc2/src/uqm/ships/arilou/resinst.h b/sc2/src/uqm/ships/arilou/resinst.h index d5310a924..f723b93f0 100644 --- a/sc2/src/uqm/ships/arilou/resinst.h +++ b/sc2/src/uqm/ships/arilou/resinst.h @@ -1,5 +1,14 @@ -#include "igfxres.h" -#include "istrtab.h" -#include "isndres.h" -#include "imusicre.h" +#define ARILOU_BIG_MASK_PMAP_ANIM "ship.arilou.graphics.skiff.large" +#define ARILOU_CAPTAIN_MASK_PMAP_ANIM "ship.arilou.graphics.captain" +#define ARILOU_ICON_MASK_PMAP_ANIM "ship.arilou.icons" +#define ARILOU_MED_MASK_PMAP_ANIM "ship.arilou.graphics.skiff.medium" +#define ARILOU_MICON_MASK_PMAP_ANIM "ship.arilou.meleeicons" +#define ARILOU_SML_MASK_PMAP_ANIM "ship.arilou.graphics.skiff.small" +#define WARP_BIG_MASK_PMAP_ANIM "ship.arilou.graphics.warp.large" +#define WARP_MED_MASK_PMAP_ANIM "ship.arilou.graphics.warp.medium" +#define WARP_SML_MASK_PMAP_ANIM "ship.arilou.graphics.warp.small" +#define ARILOU_RACE_STRINGS "ship.arilou.text" +#define ARILOU_SHIP_SOUNDS "ship.arilou.sounds" +#define ARILOU_VICTORY_SONG "ship.arilou.ditty" + #include "icode.h" diff --git a/sc2/src/uqm/ships/arilou/respkg.h b/sc2/src/uqm/ships/arilou/respkg.h deleted file mode 100644 index 0015d086a..000000000 --- a/sc2/src/uqm/ships/arilou/respkg.h +++ /dev/null @@ -1,6 +0,0 @@ -enum -{ - ARILOU_CODE_PACKAGE = 1, - ARILOU_PACKAGE -}; - diff --git a/sc2/src/uqm/ships/arilou/restypes.h b/sc2/src/uqm/ships/arilou/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/arilou/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/blackurq/blackurq.res b/sc2/src/uqm/ships/blackurq/blackurq.res deleted file mode 100644 index 339e690b6..000000000 --- a/sc2/src/uqm/ships/blackurq/blackurq.res +++ /dev/null @@ -1,26 +0,0 @@ -INCLUDE ../star3do.typ - -PATH blackurq - -PACKAGE KOHR_AH_CODE_PACKAGE blackurq.shp - CODE KOHR_AH_CODE blackurq.cod - GFXRES KOHR_AH_ICON_MASK_PMAP_ANIM blaicons.ani - GFXRES KOHR_AH_MICON_MASK_PMAP_ANIM blamicon.ani - STRTAB KOHR_AH_RACE_STRINGS blatext.txt - -PACKAGE KOHR_AH_PACKAGE blackurq.shp - GFXRES KOHR_AH_BIG_MASK_PMAP_ANIM blackurq.big - GFXRES KOHR_AH_MED_MASK_PMAP_ANIM blackurq.med - GFXRES KOHR_AH_SML_MASK_PMAP_ANIM blackurq.sml - GFXRES BUZZSAW_BIG_MASK_PMAP_ANIM buzbig.ani - GFXRES BUZZSAW_MED_MASK_PMAP_ANIM buzmed.ani - GFXRES BUZZSAW_SML_MASK_PMAP_ANIM buzsml.ani - GFXRES GAS_BIG_MASK_PMAP_ANIM gasbig.ani - GFXRES GAS_MED_MASK_PMAP_ANIM gasmed.ani - GFXRES GAS_SML_MASK_PMAP_ANIM gassml.ani - - GFXRES KOHR_AH_CAPTAIN_MASK_PMAP_ANIM blacap.ani - SNDRES KOHR_AH_SHIP_SOUNDS blasound.snd - - MUSICRES KOHR_AH_VICTORY_SONG bladitty.mod - diff --git a/sc2/src/uqm/ships/blackurq/icode.h b/sc2/src/uqm/ships/blackurq/icode.h index 99c0ca227..afa7c16c5 100644 --- a/sc2/src/uqm/ships/blackurq/icode.h +++ b/sc2/src/uqm/ships/blackurq/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define KOHR_AH_CODE "ship.kohrah.code" diff --git a/sc2/src/uqm/ships/blackurq/igfxres.h b/sc2/src/uqm/ships/blackurq/igfxres.h deleted file mode 100644 index 58bd46770..000000000 --- a/sc2/src/uqm/ships/blackurq/igfxres.h +++ /dev/null @@ -1,16 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define BUZZSAW_BIG_MASK_PMAP_ANIM "ship.kohrah.graphics.buzzsaw.large" -#define BUZZSAW_MED_MASK_PMAP_ANIM "ship.kohrah.graphics.buzzsaw.medium" -#define BUZZSAW_SML_MASK_PMAP_ANIM "ship.kohrah.graphics.buzzsaw.small" -#define GAS_BIG_MASK_PMAP_ANIM "ship.kohrah.graphics.gas.large" -#define GAS_MED_MASK_PMAP_ANIM "ship.kohrah.graphics.gas.medium" -#define GAS_SML_MASK_PMAP_ANIM "ship.kohrah.graphics.gas.small" -#define KOHR_AH_BIG_MASK_PMAP_ANIM "ship.kohrah.graphics.marauder.large" -#define KOHR_AH_CAPTAIN_MASK_PMAP_ANIM "ship.kohrah.graphics.captain" -#define KOHR_AH_ICON_MASK_PMAP_ANIM "ship.kohrah.icons" -#define KOHR_AH_MED_MASK_PMAP_ANIM "ship.kohrah.graphics.marauder.medium" -#define KOHR_AH_MICON_MASK_PMAP_ANIM "ship.kohrah.meleeicons" -#define KOHR_AH_SML_MASK_PMAP_ANIM "ship.kohrah.graphics.marauder.small" diff --git a/sc2/src/uqm/ships/blackurq/imusicre.h b/sc2/src/uqm/ships/blackurq/imusicre.h deleted file mode 100644 index ff9d76efb..000000000 --- a/sc2/src/uqm/ships/blackurq/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define KOHR_AH_VICTORY_SONG "ship.kohrah.ditty" diff --git a/sc2/src/uqm/ships/blackurq/isndres.h b/sc2/src/uqm/ships/blackurq/isndres.h deleted file mode 100644 index 77b32bce8..000000000 --- a/sc2/src/uqm/ships/blackurq/isndres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define KOHR_AH_SHIP_SOUNDS "ship.kohrah.sounds" diff --git a/sc2/src/uqm/ships/blackurq/istrtab.h b/sc2/src/uqm/ships/blackurq/istrtab.h deleted file mode 100644 index 5307dc2e5..000000000 --- a/sc2/src/uqm/ships/blackurq/istrtab.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define KOHR_AH_RACE_STRINGS "ship.kohrah.text" diff --git a/sc2/src/uqm/ships/blackurq/resinst.h b/sc2/src/uqm/ships/blackurq/resinst.h index d5310a924..c185a50ca 100644 --- a/sc2/src/uqm/ships/blackurq/resinst.h +++ b/sc2/src/uqm/ships/blackurq/resinst.h @@ -1,5 +1,17 @@ -#include "igfxres.h" -#include "istrtab.h" -#include "isndres.h" -#include "imusicre.h" +#define BUZZSAW_BIG_MASK_PMAP_ANIM "ship.kohrah.graphics.buzzsaw.large" +#define BUZZSAW_MED_MASK_PMAP_ANIM "ship.kohrah.graphics.buzzsaw.medium" +#define BUZZSAW_SML_MASK_PMAP_ANIM "ship.kohrah.graphics.buzzsaw.small" +#define GAS_BIG_MASK_PMAP_ANIM "ship.kohrah.graphics.gas.large" +#define GAS_MED_MASK_PMAP_ANIM "ship.kohrah.graphics.gas.medium" +#define GAS_SML_MASK_PMAP_ANIM "ship.kohrah.graphics.gas.small" +#define KOHR_AH_BIG_MASK_PMAP_ANIM "ship.kohrah.graphics.marauder.large" +#define KOHR_AH_CAPTAIN_MASK_PMAP_ANIM "ship.kohrah.graphics.captain" +#define KOHR_AH_ICON_MASK_PMAP_ANIM "ship.kohrah.icons" +#define KOHR_AH_MED_MASK_PMAP_ANIM "ship.kohrah.graphics.marauder.medium" +#define KOHR_AH_MICON_MASK_PMAP_ANIM "ship.kohrah.meleeicons" +#define KOHR_AH_SML_MASK_PMAP_ANIM "ship.kohrah.graphics.marauder.small" +#define KOHR_AH_RACE_STRINGS "ship.kohrah.text" +#define KOHR_AH_SHIP_SOUNDS "ship.kohrah.sounds" +#define KOHR_AH_VICTORY_SONG "ship.kohrah.ditty" + #include "icode.h" diff --git a/sc2/src/uqm/ships/blackurq/respkg.h b/sc2/src/uqm/ships/blackurq/respkg.h deleted file mode 100644 index d5ceb8ab7..000000000 --- a/sc2/src/uqm/ships/blackurq/respkg.h +++ /dev/null @@ -1,6 +0,0 @@ -enum -{ - KOHR_AH_CODE_PACKAGE = 1, - KOHR_AH_PACKAGE -}; - diff --git a/sc2/src/uqm/ships/blackurq/restypes.h b/sc2/src/uqm/ships/blackurq/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/blackurq/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/chenjesu/chenjesu.res b/sc2/src/uqm/ships/chenjesu/chenjesu.res deleted file mode 100644 index 30b932604..000000000 --- a/sc2/src/uqm/ships/chenjesu/chenjesu.res +++ /dev/null @@ -1,26 +0,0 @@ -INCLUDE ../star3do.typ - -PATH chenjesu - -PACKAGE CHENJESU_CODE_PACKAGE chenjesu.shp - CODE CHENJESU_CODE chenjesu.cod - GFXRES CHENJESU_ICON_MASK_PMAP_ANIM cheicons.ani - GFXRES CHENJESU_MICON_MASK_PMAP_ANIM chemicon.ani - STRTAB CHENJESU_RACE_STRINGS chetext.txt - -PACKAGE CHENJESU_PACKAGE chenjesu.shp - GFXRES CHENJESU_BIG_MASK_PMAP_ANIM chenjesu.big - GFXRES CHENJESU_MED_MASK_PMAP_ANIM chenjesu.med - GFXRES CHENJESU_SML_MASK_PMAP_ANIM chenjesu.sml - GFXRES SPARK_BIG_MASK_PMAP_ANIM spark.big - GFXRES SPARK_MED_MASK_PMAP_ANIM spark.med - GFXRES SPARK_SML_MASK_PMAP_ANIM spark.sml - GFXRES DOGGY_BIG_MASK_PMAP_ANIM doggy.big - GFXRES DOGGY_MED_MASK_PMAP_ANIM doggy.med - GFXRES DOGGY_SML_MASK_PMAP_ANIM doggy.sml - - GFXRES CHENJESU_CAPTAIN_MASK_PMAP_ANIM checap.ani - SNDRES CHENJESU_SHIP_SOUNDS chesound.snd - - MUSICRES CHENJESU_VICTORY_SONG cheditty.mod - diff --git a/sc2/src/uqm/ships/chenjesu/icode.h b/sc2/src/uqm/ships/chenjesu/icode.h index 1f4b693ef..1f01274bf 100644 --- a/sc2/src/uqm/ships/chenjesu/icode.h +++ b/sc2/src/uqm/ships/chenjesu/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define CHENJESU_CODE "ship.chenjesu.code" diff --git a/sc2/src/uqm/ships/chenjesu/igfxres.h b/sc2/src/uqm/ships/chenjesu/igfxres.h deleted file mode 100644 index 377f29420..000000000 --- a/sc2/src/uqm/ships/chenjesu/igfxres.h +++ /dev/null @@ -1,16 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define CHENJESU_BIG_MASK_PMAP_ANIM "ship.chenjesu.graphics.broodhome.large" -#define CHENJESU_CAPTAIN_MASK_PMAP_ANIM "ship.chenjesu.graphics.captain" -#define CHENJESU_ICON_MASK_PMAP_ANIM "ship.chenjesu.icons" -#define CHENJESU_MED_MASK_PMAP_ANIM "ship.chenjesu.graphics.broodhome.medium" -#define CHENJESU_MICON_MASK_PMAP_ANIM "ship.chenjesu.meleeicons" -#define CHENJESU_SML_MASK_PMAP_ANIM "ship.chenjesu.graphics.broodhome.small" -#define DOGGY_BIG_MASK_PMAP_ANIM "ship.chenjesu.graphics.doggy.large" -#define DOGGY_MED_MASK_PMAP_ANIM "ship.chenjesu.graphics.doggy.medium" -#define DOGGY_SML_MASK_PMAP_ANIM "ship.chenjesu.graphics.doggy.small" -#define SPARK_BIG_MASK_PMAP_ANIM "ship.chenjesu.graphics.spark.large" -#define SPARK_MED_MASK_PMAP_ANIM "ship.chenjesu.graphics.spark.medium" -#define SPARK_SML_MASK_PMAP_ANIM "ship.chenjesu.graphics.spark.small" diff --git a/sc2/src/uqm/ships/chenjesu/imusicre.h b/sc2/src/uqm/ships/chenjesu/imusicre.h deleted file mode 100644 index a78e50130..000000000 --- a/sc2/src/uqm/ships/chenjesu/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define CHENJESU_VICTORY_SONG "ship.chenjesu.ditty" diff --git a/sc2/src/uqm/ships/chenjesu/isndres.h b/sc2/src/uqm/ships/chenjesu/isndres.h deleted file mode 100644 index 4267e36c4..000000000 --- a/sc2/src/uqm/ships/chenjesu/isndres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define CHENJESU_SHIP_SOUNDS "ship.chenjesu.sounds" diff --git a/sc2/src/uqm/ships/chenjesu/istrtab.h b/sc2/src/uqm/ships/chenjesu/istrtab.h deleted file mode 100644 index 4e854b363..000000000 --- a/sc2/src/uqm/ships/chenjesu/istrtab.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define CHENJESU_RACE_STRINGS "ship.chenjesu.text" diff --git a/sc2/src/uqm/ships/chenjesu/resinst.h b/sc2/src/uqm/ships/chenjesu/resinst.h index d5310a924..646f2b0ef 100644 --- a/sc2/src/uqm/ships/chenjesu/resinst.h +++ b/sc2/src/uqm/ships/chenjesu/resinst.h @@ -1,5 +1,17 @@ -#include "igfxres.h" -#include "istrtab.h" -#include "isndres.h" -#include "imusicre.h" +#define CHENJESU_BIG_MASK_PMAP_ANIM "ship.chenjesu.graphics.broodhome.large" +#define CHENJESU_CAPTAIN_MASK_PMAP_ANIM "ship.chenjesu.graphics.captain" +#define CHENJESU_ICON_MASK_PMAP_ANIM "ship.chenjesu.icons" +#define CHENJESU_MED_MASK_PMAP_ANIM "ship.chenjesu.graphics.broodhome.medium" +#define CHENJESU_MICON_MASK_PMAP_ANIM "ship.chenjesu.meleeicons" +#define CHENJESU_SML_MASK_PMAP_ANIM "ship.chenjesu.graphics.broodhome.small" +#define DOGGY_BIG_MASK_PMAP_ANIM "ship.chenjesu.graphics.doggy.large" +#define DOGGY_MED_MASK_PMAP_ANIM "ship.chenjesu.graphics.doggy.medium" +#define DOGGY_SML_MASK_PMAP_ANIM "ship.chenjesu.graphics.doggy.small" +#define SPARK_BIG_MASK_PMAP_ANIM "ship.chenjesu.graphics.spark.large" +#define SPARK_MED_MASK_PMAP_ANIM "ship.chenjesu.graphics.spark.medium" +#define SPARK_SML_MASK_PMAP_ANIM "ship.chenjesu.graphics.spark.small" +#define CHENJESU_RACE_STRINGS "ship.chenjesu.text" +#define CHENJESU_SHIP_SOUNDS "ship.chenjesu.sounds" +#define CHENJESU_VICTORY_SONG "ship.chenjesu.ditty" + #include "icode.h" diff --git a/sc2/src/uqm/ships/chenjesu/respkg.h b/sc2/src/uqm/ships/chenjesu/respkg.h deleted file mode 100644 index d3c7fbcc4..000000000 --- a/sc2/src/uqm/ships/chenjesu/respkg.h +++ /dev/null @@ -1,6 +0,0 @@ -enum -{ - CHENJESU_CODE_PACKAGE = 1, - CHENJESU_PACKAGE -}; - diff --git a/sc2/src/uqm/ships/chenjesu/restypes.h b/sc2/src/uqm/ships/chenjesu/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/chenjesu/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/chmmr/chmmr.res b/sc2/src/uqm/ships/chmmr/chmmr.res deleted file mode 100644 index 315e4a29c..000000000 --- a/sc2/src/uqm/ships/chmmr/chmmr.res +++ /dev/null @@ -1,26 +0,0 @@ -INCLUDE ../star3do.typ - -PATH chmmr - -PACKAGE CHMMR_CODE_PACKAGE chmmr.shp - CODE CHMMR_CODE chmmr.cod - GFXRES CHMMR_ICON_MASK_PMAP_ANIM chmicons.ani - GFXRES CHMMR_MICON_MASK_PMAP_ANIM chmmicon.ani - STRTAB CHMMR_RACE_STRINGS chmtext.txt - -PACKAGE CHMMR_PACKAGE chmmr.shp - GFXRES CHMMR_BIG_MASK_PMAP_ANIM chmmr.big - GFXRES CHMMR_MED_MASK_PMAP_ANIM chmmr.med - GFXRES CHMMR_SML_MASK_PMAP_ANIM chmmr.sml - GFXRES MUZZLE_BIG_MASK_PMAP_ANIM muzbig.ani - GFXRES MUZZLE_MED_MASK_PMAP_ANIM muzmed.ani - GFXRES MUZZLE_SML_MASK_PMAP_ANIM muzsml.ani - GFXRES SATELLITE_BIG_MASK_PMAP_ANIM satbig.ani - GFXRES SATELLITE_MED_MASK_PMAP_ANIM satmed.ani - GFXRES SATELLITE_SML_MASK_PMAP_ANIM satsml.ani - - GFXRES CHMMR_CAPTAIN_MASK_PMAP_ANIM chmcap.ani - SNDRES CHMMR_SHIP_SOUNDS chmsound.snd - - MUSICRES CHMMR_VICTORY_SONG chmditty.mod - diff --git a/sc2/src/uqm/ships/chmmr/icode.h b/sc2/src/uqm/ships/chmmr/icode.h index 0873a155d..a2344eef1 100644 --- a/sc2/src/uqm/ships/chmmr/icode.h +++ b/sc2/src/uqm/ships/chmmr/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define CHMMR_CODE "ship.chmmr.code" diff --git a/sc2/src/uqm/ships/chmmr/igfxres.h b/sc2/src/uqm/ships/chmmr/igfxres.h deleted file mode 100644 index d3e21f6e3..000000000 --- a/sc2/src/uqm/ships/chmmr/igfxres.h +++ /dev/null @@ -1,16 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define CHMMR_BIG_MASK_PMAP_ANIM "ship.chmmr.graphics.avatar.large" -#define CHMMR_CAPTAIN_MASK_PMAP_ANIM "ship.chmmr.graphics.captain" -#define CHMMR_ICON_MASK_PMAP_ANIM "ship.chmmr.icons" -#define CHMMR_MED_MASK_PMAP_ANIM "ship.chmmr.graphics.avatar.medium" -#define CHMMR_MICON_MASK_PMAP_ANIM "ship.chmmr.meleeicons" -#define CHMMR_SML_MASK_PMAP_ANIM "ship.chmmr.graphics.avatar.small" -#define MUZZLE_BIG_MASK_PMAP_ANIM "ship.chmmr.graphics.muzzle.large" -#define MUZZLE_MED_MASK_PMAP_ANIM "ship.chmmr.graphics.muzzle.medium" -#define MUZZLE_SML_MASK_PMAP_ANIM "ship.chmmr.graphics.muzzle.small" -#define SATELLITE_BIG_MASK_PMAP_ANIM "ship.chmmr.graphics.satellite.large" -#define SATELLITE_MED_MASK_PMAP_ANIM "ship.chmmr.graphics.satellite.medium" -#define SATELLITE_SML_MASK_PMAP_ANIM "ship.chmmr.graphics.satellite.small" diff --git a/sc2/src/uqm/ships/chmmr/imusicre.h b/sc2/src/uqm/ships/chmmr/imusicre.h deleted file mode 100644 index 54437b4bf..000000000 --- a/sc2/src/uqm/ships/chmmr/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define CHMMR_VICTORY_SONG "ship.chmmr.ditty" diff --git a/sc2/src/uqm/ships/chmmr/isndres.h b/sc2/src/uqm/ships/chmmr/isndres.h deleted file mode 100644 index 7943871af..000000000 --- a/sc2/src/uqm/ships/chmmr/isndres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define CHMMR_SHIP_SOUNDS "ship.chmmr.sounds" diff --git a/sc2/src/uqm/ships/chmmr/istrtab.h b/sc2/src/uqm/ships/chmmr/istrtab.h deleted file mode 100644 index cf229a069..000000000 --- a/sc2/src/uqm/ships/chmmr/istrtab.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define CHMMR_RACE_STRINGS "ship.chmmr.text" diff --git a/sc2/src/uqm/ships/chmmr/resinst.h b/sc2/src/uqm/ships/chmmr/resinst.h index d5310a924..37566d569 100644 --- a/sc2/src/uqm/ships/chmmr/resinst.h +++ b/sc2/src/uqm/ships/chmmr/resinst.h @@ -1,5 +1,17 @@ -#include "igfxres.h" -#include "istrtab.h" -#include "isndres.h" -#include "imusicre.h" +#define CHMMR_BIG_MASK_PMAP_ANIM "ship.chmmr.graphics.avatar.large" +#define CHMMR_CAPTAIN_MASK_PMAP_ANIM "ship.chmmr.graphics.captain" +#define CHMMR_ICON_MASK_PMAP_ANIM "ship.chmmr.icons" +#define CHMMR_MED_MASK_PMAP_ANIM "ship.chmmr.graphics.avatar.medium" +#define CHMMR_MICON_MASK_PMAP_ANIM "ship.chmmr.meleeicons" +#define CHMMR_SML_MASK_PMAP_ANIM "ship.chmmr.graphics.avatar.small" +#define MUZZLE_BIG_MASK_PMAP_ANIM "ship.chmmr.graphics.muzzle.large" +#define MUZZLE_MED_MASK_PMAP_ANIM "ship.chmmr.graphics.muzzle.medium" +#define MUZZLE_SML_MASK_PMAP_ANIM "ship.chmmr.graphics.muzzle.small" +#define SATELLITE_BIG_MASK_PMAP_ANIM "ship.chmmr.graphics.satellite.large" +#define SATELLITE_MED_MASK_PMAP_ANIM "ship.chmmr.graphics.satellite.medium" +#define SATELLITE_SML_MASK_PMAP_ANIM "ship.chmmr.graphics.satellite.small" +#define CHMMR_RACE_STRINGS "ship.chmmr.text" +#define CHMMR_SHIP_SOUNDS "ship.chmmr.sounds" +#define CHMMR_VICTORY_SONG "ship.chmmr.ditty" + #include "icode.h" diff --git a/sc2/src/uqm/ships/chmmr/respkg.h b/sc2/src/uqm/ships/chmmr/respkg.h deleted file mode 100644 index 929aca9c3..000000000 --- a/sc2/src/uqm/ships/chmmr/respkg.h +++ /dev/null @@ -1,6 +0,0 @@ -enum -{ - CHMMR_CODE_PACKAGE = 1, - CHMMR_PACKAGE -}; - diff --git a/sc2/src/uqm/ships/chmmr/restypes.h b/sc2/src/uqm/ships/chmmr/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/chmmr/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/druuge/druuge.res b/sc2/src/uqm/ships/druuge/druuge.res deleted file mode 100644 index 39bb86dc2..000000000 --- a/sc2/src/uqm/ships/druuge/druuge.res +++ /dev/null @@ -1,23 +0,0 @@ -INCLUDE ../star3do.typ - -PATH druuge - -PACKAGE DRUUGE_CODE_PACKAGE druuge.shp - CODE DRUUGE_CODE druuge.cod - GFXRES DRUUGE_ICON_MASK_PMAP_ANIM druicons.ani - GFXRES DRUUGE_MICON_MASK_PMAP_ANIM drumicon.ani - STRTAB DRUUGE_RACE_STRINGS drutext.txt - -PACKAGE DRUUGE_PACKAGE druuge.shp - GFXRES DRUUGE_BIG_MASK_PMAP_ANIM druuge.big - GFXRES DRUUGE_MED_MASK_PMAP_ANIM druuge.med - GFXRES DRUUGE_SML_MASK_PMAP_ANIM druuge.sml - GFXRES DRUUGE_CANNON_BIG_MASK_PMAP_ANIM canbig.ani - GFXRES DRUUGE_CANNON_MED_MASK_PMAP_ANIM canmed.ani - GFXRES DRUUGE_CANNON_SML_MASK_PMAP_ANIM cansml.ani - - GFXRES DRUUGE_CAPT_MASK_PMAP_ANIM drucap.ani - SNDRES DRUUGE_SHIP_SOUNDS drusound.snd - - MUSICRES DRUUGE_VICTORY_SONG druditty.mod - diff --git a/sc2/src/uqm/ships/druuge/icode.h b/sc2/src/uqm/ships/druuge/icode.h index 859949011..b173fe0fe 100644 --- a/sc2/src/uqm/ships/druuge/icode.h +++ b/sc2/src/uqm/ships/druuge/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define DRUUGE_CODE "ship.druuge.code" diff --git a/sc2/src/uqm/ships/druuge/igfxres.h b/sc2/src/uqm/ships/druuge/igfxres.h deleted file mode 100644 index 4fc448d5d..000000000 --- a/sc2/src/uqm/ships/druuge/igfxres.h +++ /dev/null @@ -1,13 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define DRUUGE_BIG_MASK_PMAP_ANIM "ship.druuge.graphics.mauler.large" -#define DRUUGE_CANNON_BIG_MASK_PMAP_ANIM "ship.druuge.graphics.cannon.large" -#define DRUUGE_CANNON_MED_MASK_PMAP_ANIM "ship.druuge.graphics.cannon.medium" -#define DRUUGE_CANNON_SML_MASK_PMAP_ANIM "ship.druuge.graphics.cannon.small" -#define DRUUGE_CAPT_MASK_PMAP_ANIM "ship.druuge.graphics.captain" -#define DRUUGE_ICON_MASK_PMAP_ANIM "ship.druuge.icons" -#define DRUUGE_MED_MASK_PMAP_ANIM "ship.druuge.graphics.mauler.medium" -#define DRUUGE_MICON_MASK_PMAP_ANIM "ship.druuge.meleeicons" -#define DRUUGE_SML_MASK_PMAP_ANIM "ship.druuge.graphics.mauler.small" diff --git a/sc2/src/uqm/ships/druuge/imusicre.h b/sc2/src/uqm/ships/druuge/imusicre.h deleted file mode 100644 index 320a2c9e5..000000000 --- a/sc2/src/uqm/ships/druuge/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define DRUUGE_VICTORY_SONG "ship.druuge.ditty" diff --git a/sc2/src/uqm/ships/druuge/isndres.h b/sc2/src/uqm/ships/druuge/isndres.h deleted file mode 100644 index 6236cc6b8..000000000 --- a/sc2/src/uqm/ships/druuge/isndres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define DRUUGE_SHIP_SOUNDS "ship.druuge.sounds" diff --git a/sc2/src/uqm/ships/druuge/istrtab.h b/sc2/src/uqm/ships/druuge/istrtab.h deleted file mode 100644 index e6df7a9da..000000000 --- a/sc2/src/uqm/ships/druuge/istrtab.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define DRUUGE_RACE_STRINGS "ship.druuge.text" diff --git a/sc2/src/uqm/ships/druuge/resinst.h b/sc2/src/uqm/ships/druuge/resinst.h index d5310a924..51960103d 100644 --- a/sc2/src/uqm/ships/druuge/resinst.h +++ b/sc2/src/uqm/ships/druuge/resinst.h @@ -1,5 +1,14 @@ -#include "igfxres.h" -#include "istrtab.h" -#include "isndres.h" -#include "imusicre.h" +#define DRUUGE_BIG_MASK_PMAP_ANIM "ship.druuge.graphics.mauler.large" +#define DRUUGE_CANNON_BIG_MASK_PMAP_ANIM "ship.druuge.graphics.cannon.large" +#define DRUUGE_CANNON_MED_MASK_PMAP_ANIM "ship.druuge.graphics.cannon.medium" +#define DRUUGE_CANNON_SML_MASK_PMAP_ANIM "ship.druuge.graphics.cannon.small" +#define DRUUGE_CAPT_MASK_PMAP_ANIM "ship.druuge.graphics.captain" +#define DRUUGE_ICON_MASK_PMAP_ANIM "ship.druuge.icons" +#define DRUUGE_MED_MASK_PMAP_ANIM "ship.druuge.graphics.mauler.medium" +#define DRUUGE_MICON_MASK_PMAP_ANIM "ship.druuge.meleeicons" +#define DRUUGE_SML_MASK_PMAP_ANIM "ship.druuge.graphics.mauler.small" +#define DRUUGE_RACE_STRINGS "ship.druuge.text" +#define DRUUGE_SHIP_SOUNDS "ship.druuge.sounds" +#define DRUUGE_VICTORY_SONG "ship.druuge.ditty" + #include "icode.h" diff --git a/sc2/src/uqm/ships/druuge/respkg.h b/sc2/src/uqm/ships/druuge/respkg.h deleted file mode 100644 index c9e383c58..000000000 --- a/sc2/src/uqm/ships/druuge/respkg.h +++ /dev/null @@ -1,6 +0,0 @@ -enum -{ - DRUUGE_CODE_PACKAGE = 1, - DRUUGE_PACKAGE -}; - diff --git a/sc2/src/uqm/ships/druuge/restypes.h b/sc2/src/uqm/ships/druuge/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/druuge/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/human/human.res b/sc2/src/uqm/ships/human/human.res deleted file mode 100644 index cd2e51574..000000000 --- a/sc2/src/uqm/ships/human/human.res +++ /dev/null @@ -1,23 +0,0 @@ -INCLUDE ../star3do.typ - -PATH human - -PACKAGE HUMAN_CODE_PACKAGE human.shp - CODE HUMAN_CODE human.cod - GFXRES HUMAN_ICON_MASK_PMAP_ANIM humicons.ani - GFXRES HUMAN_MICON_MASK_PMAP_ANIM hummicon.ani - STRTAB HUMAN_RACE_STRINGS humtext.txt - -PACKAGE HUMAN_PACKAGE human.shp - GFXRES HUMAN_BIG_MASK_PMAP_ANIM human.big - GFXRES HUMAN_MED_MASK_PMAP_ANIM human.med - GFXRES HUMAN_SML_MASK_PMAP_ANIM human.sml - GFXRES SATURN_BIG_MASK_PMAP_ANIM saturn.big - GFXRES SATURN_MED_MASK_PMAP_ANIM saturn.med - GFXRES SATURN_SML_MASK_PMAP_ANIM saturn.sml - - GFXRES HUMAN_CAPTAIN_MASK_PMAP_ANIM humcap.ani - SNDRES HUMAN_SHIP_SOUNDS humsound.snd - - MUSICRES HUMAN_VICTORY_SONG humditty.mod - diff --git a/sc2/src/uqm/ships/human/icode.h b/sc2/src/uqm/ships/human/icode.h index acfd62ec3..0700876fa 100644 --- a/sc2/src/uqm/ships/human/icode.h +++ b/sc2/src/uqm/ships/human/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define HUMAN_CODE "ship.earthling.code" diff --git a/sc2/src/uqm/ships/human/igfxres.h b/sc2/src/uqm/ships/human/igfxres.h deleted file mode 100644 index ca8dbf449..000000000 --- a/sc2/src/uqm/ships/human/igfxres.h +++ /dev/null @@ -1,13 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define HUMAN_BIG_MASK_PMAP_ANIM "ship.earthling.graphics.human.large" -#define HUMAN_CAPTAIN_MASK_PMAP_ANIM "ship.earthling.graphics.captain" -#define HUMAN_ICON_MASK_PMAP_ANIM "ship.earthling.icons" -#define HUMAN_MED_MASK_PMAP_ANIM "ship.earthling.graphics.human.medium" -#define HUMAN_MICON_MASK_PMAP_ANIM "ship.earthling.meleeicons" -#define HUMAN_SML_MASK_PMAP_ANIM "ship.earthling.graphics.human.small" -#define SATURN_BIG_MASK_PMAP_ANIM "ship.earthling.graphics.saturn.large" -#define SATURN_MED_MASK_PMAP_ANIM "ship.earthling.graphics.saturn.medium" -#define SATURN_SML_MASK_PMAP_ANIM "ship.earthling.graphics.saturn.small" diff --git a/sc2/src/uqm/ships/human/imusicre.h b/sc2/src/uqm/ships/human/imusicre.h deleted file mode 100644 index 417f0db53..000000000 --- a/sc2/src/uqm/ships/human/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define HUMAN_VICTORY_SONG "ship.earthling.ditty" diff --git a/sc2/src/uqm/ships/human/isndres.h b/sc2/src/uqm/ships/human/isndres.h deleted file mode 100644 index 48dc5e99f..000000000 --- a/sc2/src/uqm/ships/human/isndres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define HUMAN_SHIP_SOUNDS "ship.earthling.sounds" diff --git a/sc2/src/uqm/ships/human/istrtab.h b/sc2/src/uqm/ships/human/istrtab.h deleted file mode 100644 index 2e586c889..000000000 --- a/sc2/src/uqm/ships/human/istrtab.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define HUMAN_RACE_STRINGS "ship.earthling.text" diff --git a/sc2/src/uqm/ships/human/resinst.h b/sc2/src/uqm/ships/human/resinst.h index d5310a924..b43c29953 100644 --- a/sc2/src/uqm/ships/human/resinst.h +++ b/sc2/src/uqm/ships/human/resinst.h @@ -1,5 +1,14 @@ -#include "igfxres.h" -#include "istrtab.h" -#include "isndres.h" -#include "imusicre.h" +#define HUMAN_BIG_MASK_PMAP_ANIM "ship.earthling.graphics.human.large" +#define HUMAN_CAPTAIN_MASK_PMAP_ANIM "ship.earthling.graphics.captain" +#define HUMAN_ICON_MASK_PMAP_ANIM "ship.earthling.icons" +#define HUMAN_MED_MASK_PMAP_ANIM "ship.earthling.graphics.human.medium" +#define HUMAN_MICON_MASK_PMAP_ANIM "ship.earthling.meleeicons" +#define HUMAN_SML_MASK_PMAP_ANIM "ship.earthling.graphics.human.small" +#define SATURN_BIG_MASK_PMAP_ANIM "ship.earthling.graphics.saturn.large" +#define SATURN_MED_MASK_PMAP_ANIM "ship.earthling.graphics.saturn.medium" +#define SATURN_SML_MASK_PMAP_ANIM "ship.earthling.graphics.saturn.small" +#define HUMAN_RACE_STRINGS "ship.earthling.text" +#define HUMAN_SHIP_SOUNDS "ship.earthling.sounds" +#define HUMAN_VICTORY_SONG "ship.earthling.ditty" + #include "icode.h" diff --git a/sc2/src/uqm/ships/human/respkg.h b/sc2/src/uqm/ships/human/respkg.h deleted file mode 100644 index 0b21b0017..000000000 --- a/sc2/src/uqm/ships/human/respkg.h +++ /dev/null @@ -1,6 +0,0 @@ -enum -{ - HUMAN_CODE_PACKAGE = 1, - HUMAN_PACKAGE -}; - diff --git a/sc2/src/uqm/ships/human/restypes.h b/sc2/src/uqm/ships/human/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/human/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/ilwrath/icode.h b/sc2/src/uqm/ships/ilwrath/icode.h index fa78adc05..275cd9e77 100644 --- a/sc2/src/uqm/ships/ilwrath/icode.h +++ b/sc2/src/uqm/ships/ilwrath/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define ILWRATH_CODE "ship.ilwrath.code" diff --git a/sc2/src/uqm/ships/ilwrath/igfxres.h b/sc2/src/uqm/ships/ilwrath/igfxres.h deleted file mode 100644 index 3e94c4106..000000000 --- a/sc2/src/uqm/ships/ilwrath/igfxres.h +++ /dev/null @@ -1,13 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define FIRE_BIG_MASK_PMAP_ANIM "ship.ilwrath.graphics.fire.large" -#define FIRE_MED_MASK_PMAP_ANIM "ship.ilwrath.graphics.fire.medium" -#define FIRE_SML_MASK_PMAP_ANIM "ship.ilwrath.graphics.fire.small" -#define ILWRATH_BIG_MASK_PMAP_ANIM "ship.ilwrath.graphics.avenger.large" -#define ILWRATH_CAPTAIN_MASK_PMAP_ANIM "ship.ilwrath.graphics.captain" -#define ILWRATH_ICON_MASK_PMAP_ANIM "ship.ilwrath.icons" -#define ILWRATH_MED_MASK_PMAP_ANIM "ship.ilwrath.graphics.avenger.medium" -#define ILWRATH_MICON_MASK_PMAP_ANIM "ship.ilwrath.meleeicons" -#define ILWRATH_SML_MASK_PMAP_ANIM "ship.ilwrath.graphics.avenger.small" diff --git a/sc2/src/uqm/ships/ilwrath/ilwrath.res b/sc2/src/uqm/ships/ilwrath/ilwrath.res deleted file mode 100644 index aa9e1c88a..000000000 --- a/sc2/src/uqm/ships/ilwrath/ilwrath.res +++ /dev/null @@ -1,23 +0,0 @@ -INCLUDE ../star3do.typ - -PATH ilwrath - -PACKAGE ILWRATH_CODE_PACKAGE ilwrath.shp - CODE ILWRATH_CODE ilwrath.cod - GFXRES ILWRATH_ICON_MASK_PMAP_ANIM ilwicons.ani - GFXRES ILWRATH_MICON_MASK_PMAP_ANIM ilwmicon.ani - STRTAB ILWRATH_RACE_STRINGS ilwtext.txt - -PACKAGE ILWRATH_PACKAGE ilwrath.shp - GFXRES ILWRATH_BIG_MASK_PMAP_ANIM ilwrath.big - GFXRES ILWRATH_MED_MASK_PMAP_ANIM ilwrath.med - GFXRES ILWRATH_SML_MASK_PMAP_ANIM ilwrath.sml - GFXRES FIRE_BIG_MASK_PMAP_ANIM fire.big - GFXRES FIRE_MED_MASK_PMAP_ANIM fire.med - GFXRES FIRE_SML_MASK_PMAP_ANIM fire.sml - - GFXRES ILWRATH_CAPTAIN_MASK_PMAP_ANIM ilwcap.ani - SNDRES ILWRATH_SHIP_SOUNDS ilwsound.snd - - MUSICRES ILWRATH_VICTORY_SONG ilwditty.mod - diff --git a/sc2/src/uqm/ships/ilwrath/imusicre.h b/sc2/src/uqm/ships/ilwrath/imusicre.h deleted file mode 100644 index 40daaf0ba..000000000 --- a/sc2/src/uqm/ships/ilwrath/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ILWRATH_VICTORY_SONG "ship.ilwrath.ditty" diff --git a/sc2/src/uqm/ships/ilwrath/isndres.h b/sc2/src/uqm/ships/ilwrath/isndres.h deleted file mode 100644 index 2107fbbd7..000000000 --- a/sc2/src/uqm/ships/ilwrath/isndres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ILWRATH_SHIP_SOUNDS "ship.ilwrath.sounds" diff --git a/sc2/src/uqm/ships/ilwrath/istrtab.h b/sc2/src/uqm/ships/ilwrath/istrtab.h deleted file mode 100644 index a172f0070..000000000 --- a/sc2/src/uqm/ships/ilwrath/istrtab.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ILWRATH_RACE_STRINGS "ship.ilwrath.text" diff --git a/sc2/src/uqm/ships/ilwrath/resinst.h b/sc2/src/uqm/ships/ilwrath/resinst.h index d5310a924..ae9f8f8b0 100644 --- a/sc2/src/uqm/ships/ilwrath/resinst.h +++ b/sc2/src/uqm/ships/ilwrath/resinst.h @@ -1,5 +1,14 @@ -#include "igfxres.h" -#include "istrtab.h" -#include "isndres.h" -#include "imusicre.h" +#define FIRE_BIG_MASK_PMAP_ANIM "ship.ilwrath.graphics.fire.large" +#define FIRE_MED_MASK_PMAP_ANIM "ship.ilwrath.graphics.fire.medium" +#define FIRE_SML_MASK_PMAP_ANIM "ship.ilwrath.graphics.fire.small" +#define ILWRATH_BIG_MASK_PMAP_ANIM "ship.ilwrath.graphics.avenger.large" +#define ILWRATH_CAPTAIN_MASK_PMAP_ANIM "ship.ilwrath.graphics.captain" +#define ILWRATH_ICON_MASK_PMAP_ANIM "ship.ilwrath.icons" +#define ILWRATH_MED_MASK_PMAP_ANIM "ship.ilwrath.graphics.avenger.medium" +#define ILWRATH_MICON_MASK_PMAP_ANIM "ship.ilwrath.meleeicons" +#define ILWRATH_SML_MASK_PMAP_ANIM "ship.ilwrath.graphics.avenger.small" +#define ILWRATH_RACE_STRINGS "ship.ilwrath.text" +#define ILWRATH_SHIP_SOUNDS "ship.ilwrath.sounds" +#define ILWRATH_VICTORY_SONG "ship.ilwrath.ditty" + #include "icode.h" diff --git a/sc2/src/uqm/ships/ilwrath/respkg.h b/sc2/src/uqm/ships/ilwrath/respkg.h deleted file mode 100644 index 1c88ac649..000000000 --- a/sc2/src/uqm/ships/ilwrath/respkg.h +++ /dev/null @@ -1,6 +0,0 @@ -enum -{ - ILWRATH_CODE_PACKAGE = 1, - ILWRATH_PACKAGE -}; - diff --git a/sc2/src/uqm/ships/ilwrath/restypes.h b/sc2/src/uqm/ships/ilwrath/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/ilwrath/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/lastbat/icode.h b/sc2/src/uqm/ships/lastbat/icode.h index 087c891b6..d0b2e5c6c 100644 --- a/sc2/src/uqm/ships/lastbat/icode.h +++ b/sc2/src/uqm/ships/lastbat/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define SAMATRA_CODE "ship.samatra.code" diff --git a/sc2/src/uqm/ships/lastbat/igfxres.h b/sc2/src/uqm/ships/lastbat/igfxres.h deleted file mode 100644 index 188dcad32..000000000 --- a/sc2/src/uqm/ships/lastbat/igfxres.h +++ /dev/null @@ -1,14 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define GENERATOR_BIG_MASK_ANIM "ship.samatra.graphics.generator.large" -#define GENERATOR_MED_MASK_PMAP_ANIM "ship.samatra.graphics.generator.medium" -#define GENERATOR_SML_MASK_PMAP_ANIM "ship.samatra.graphics.generator.small" -#define SAMATRA_BIG_MASK_ANIM "ship.samatra.graphics.samatra.large" -#define SAMATRA_CAPTAIN_MASK_PMAP_ANIM "ship.samatra.graphics.captain" -#define SAMATRA_MED_MASK_PMAP_ANIM "ship.samatra.graphics.samatra.medium" -#define SAMATRA_SML_MASK_PMAP_ANIM "ship.samatra.graphics.samatra.small" -#define SENTINEL_BIG_MASK_ANIM "ship.samatra.graphics.sentinel.large" -#define SENTINEL_MED_MASK_PMAP_ANIM "ship.samatra.graphics.sentinel.medium" -#define SENTINEL_SML_MASK_PMAP_ANIM "ship.samatra.graphics.sentinel.small" diff --git a/sc2/src/uqm/ships/lastbat/imusicre.h b/sc2/src/uqm/ships/lastbat/imusicre.h deleted file mode 100644 index 0e0bf9b30..000000000 --- a/sc2/src/uqm/ships/lastbat/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SAMATRA_VICTORY_SONG "ship.samatra.ditty" diff --git a/sc2/src/uqm/ships/lastbat/isndres.h b/sc2/src/uqm/ships/lastbat/isndres.h deleted file mode 100644 index fdd5dfb0f..000000000 --- a/sc2/src/uqm/ships/lastbat/isndres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SAMATRA_SHIP_SOUNDS "ship.samatra.sounds" diff --git a/sc2/src/uqm/ships/lastbat/istrtab.h b/sc2/src/uqm/ships/lastbat/istrtab.h deleted file mode 100644 index d29fbb831..000000000 --- a/sc2/src/uqm/ships/lastbat/istrtab.h +++ /dev/null @@ -1,3 +0,0 @@ -// Dead file - - diff --git a/sc2/src/uqm/ships/lastbat/lastbat.res b/sc2/src/uqm/ships/lastbat/lastbat.res deleted file mode 100644 index 25c2845a6..000000000 --- a/sc2/src/uqm/ships/lastbat/lastbat.res +++ /dev/null @@ -1,23 +0,0 @@ -INCLUDE ../star3do.typ - -PATH lastbat - -PACKAGE SAMATRA_CODE_PACKAGE lastbat.sc2 - CODE SAMATRA_CODE lastbat.cod - -PACKAGE SAMATRA_PACKAGE lastbat.sc2 - GFXRES SAMATRA_BIG_MASK_ANIM lastbat.big - GFXRES SAMATRA_MED_MASK_PMAP_ANIM lastbat.med - GFXRES SAMATRA_SML_MASK_PMAP_ANIM lastbat.sml - GFXRES SENTINEL_BIG_MASK_ANIM senbig.ani - GFXRES SENTINEL_MED_MASK_PMAP_ANIM senmed.ani - GFXRES SENTINEL_SML_MASK_PMAP_ANIM sensml.ani - GFXRES GENERATOR_BIG_MASK_ANIM genbig.ani - GFXRES GENERATOR_MED_MASK_PMAP_ANIM genmed.ani - GFXRES GENERATOR_SML_MASK_PMAP_ANIM gensml.ani - - SNDRES SAMATRA_SHIP_SOUNDS lassound.snd - -PACKAGE SAMATRA_STATUS_PACKAGE lastbat.sc2 - GFXRES SAMATRA_CAPTAIN_MASK_PMAP_ANIM lascap.ani - diff --git a/sc2/src/uqm/ships/lastbat/resinst.h b/sc2/src/uqm/ships/lastbat/resinst.h index 17ee6ae6e..389c637f4 100644 --- a/sc2/src/uqm/ships/lastbat/resinst.h +++ b/sc2/src/uqm/ships/lastbat/resinst.h @@ -1,3 +1,14 @@ -#include "igfxres.h" -#include "isndres.h" +#define GENERATOR_BIG_MASK_ANIM "ship.samatra.graphics.generator.large" +#define GENERATOR_MED_MASK_PMAP_ANIM "ship.samatra.graphics.generator.medium" +#define GENERATOR_SML_MASK_PMAP_ANIM "ship.samatra.graphics.generator.small" +#define SAMATRA_BIG_MASK_ANIM "ship.samatra.graphics.samatra.large" +#define SAMATRA_CAPTAIN_MASK_PMAP_ANIM "ship.samatra.graphics.captain" +#define SAMATRA_MED_MASK_PMAP_ANIM "ship.samatra.graphics.samatra.medium" +#define SAMATRA_SML_MASK_PMAP_ANIM "ship.samatra.graphics.samatra.small" +#define SENTINEL_BIG_MASK_ANIM "ship.samatra.graphics.sentinel.large" +#define SENTINEL_MED_MASK_PMAP_ANIM "ship.samatra.graphics.sentinel.medium" +#define SENTINEL_SML_MASK_PMAP_ANIM "ship.samatra.graphics.sentinel.small" +#define SAMATRA_SHIP_SOUNDS "ship.samatra.sounds" +#define SAMATRA_VICTORY_SONG "ship.samatra.ditty" + #include "icode.h" diff --git a/sc2/src/uqm/ships/lastbat/respkg.h b/sc2/src/uqm/ships/lastbat/respkg.h deleted file mode 100644 index e60b0bf2f..000000000 --- a/sc2/src/uqm/ships/lastbat/respkg.h +++ /dev/null @@ -1,7 +0,0 @@ -enum -{ - SAMATRA_CODE_PACKAGE = 1, - SAMATRA_PACKAGE, - SAMATRA_STATUS_PACKAGE -}; - diff --git a/sc2/src/uqm/ships/lastbat/restypes.h b/sc2/src/uqm/ships/lastbat/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/lastbat/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/melnorme/icode.h b/sc2/src/uqm/ships/melnorme/icode.h index d9dd355f5..53b39c09a 100644 --- a/sc2/src/uqm/ships/melnorme/icode.h +++ b/sc2/src/uqm/ships/melnorme/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define MELNORME_CODE "ship.melnorme.code" diff --git a/sc2/src/uqm/ships/melnorme/igfxres.h b/sc2/src/uqm/ships/melnorme/igfxres.h deleted file mode 100644 index 784d64c7b..000000000 --- a/sc2/src/uqm/ships/melnorme/igfxres.h +++ /dev/null @@ -1,16 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define CONFUSE_BIG_MASK_PMAP_ANIM "ship.melnorme.graphics.confuse.large" -#define CONFUSE_MED_MASK_PMAP_ANIM "ship.melnorme.graphics.confuse.medium" -#define CONFUSE_SML_MASK_PMAP_ANIM "ship.melnorme.graphics.confuse.small" -#define MELNORME_BIG_MASK_PMAP_ANIM "ship.melnorme.graphics.trader.large" -#define MELNORME_CAPTAIN_MASK_PMAP_ANIM "ship.melnorme.graphics.captain" -#define MELNORME_ICON_MASK_PMAP_ANIM "ship.melnorme.icons" -#define MELNORME_MED_MASK_PMAP_ANIM "ship.melnorme.graphics.trader.medium" -#define MELNORME_MICON_MASK_PMAP_ANIM "ship.melnorme.meleeicons" -#define MELNORME_SML_MASK_PMAP_ANIM "ship.melnorme.graphics.trader.small" -#define PUMPUP_BIG_MASK_PMAP_ANIM "ship.melnorme.graphics.pumpup.large" -#define PUMPUP_MED_MASK_PMAP_ANIM "ship.melnorme.graphics.pumpup.medium" -#define PUMPUP_SML_MASK_PMAP_ANIM "ship.melnorme.graphics.pumpup.small" diff --git a/sc2/src/uqm/ships/melnorme/imusicre.h b/sc2/src/uqm/ships/melnorme/imusicre.h deleted file mode 100644 index cfc05daca..000000000 --- a/sc2/src/uqm/ships/melnorme/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define MELNORME_VICTORY_SONG "ship.melnorme.ditty" diff --git a/sc2/src/uqm/ships/melnorme/isndres.h b/sc2/src/uqm/ships/melnorme/isndres.h deleted file mode 100644 index 2322ade73..000000000 --- a/sc2/src/uqm/ships/melnorme/isndres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define MELNORME_SHIP_SOUNDS "ship.melnorme.sounds" diff --git a/sc2/src/uqm/ships/melnorme/istrtab.h b/sc2/src/uqm/ships/melnorme/istrtab.h deleted file mode 100644 index e41cffbae..000000000 --- a/sc2/src/uqm/ships/melnorme/istrtab.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define MELNORME_RACE_STRINGS "ship.melnorme.text" diff --git a/sc2/src/uqm/ships/melnorme/melnorme.res b/sc2/src/uqm/ships/melnorme/melnorme.res deleted file mode 100644 index dc7629033..000000000 --- a/sc2/src/uqm/ships/melnorme/melnorme.res +++ /dev/null @@ -1,26 +0,0 @@ -INCLUDE ../star3do.typ - -PATH melnorme - -PACKAGE MELNORME_CODE_PACKAGE melnorme.shp - CODE MELNORME_CODE melnorme.cod - GFXRES MELNORME_ICON_MASK_PMAP_ANIM melicons.ani - GFXRES MELNORME_MICON_MASK_PMAP_ANIM melmicon.ani - STRTAB MELNORME_RACE_STRINGS meltext.txt - -PACKAGE MELNORME_PACKAGE melnorme.shp - GFXRES MELNORME_BIG_MASK_PMAP_ANIM melnorme.big - GFXRES MELNORME_MED_MASK_PMAP_ANIM melnorme.med - GFXRES MELNORME_SML_MASK_PMAP_ANIM melnorme.sml - GFXRES PUMPUP_BIG_MASK_PMAP_ANIM pumpbig.ani - GFXRES PUMPUP_MED_MASK_PMAP_ANIM pumpmed.ani - GFXRES PUMPUP_SML_MASK_PMAP_ANIM pumpsml.ani - GFXRES CONFUSE_BIG_MASK_PMAP_ANIM confubig.ani - GFXRES CONFUSE_MED_MASK_PMAP_ANIM confumed.ani - GFXRES CONFUSE_SML_MASK_PMAP_ANIM confusml.ani - - GFXRES MELNORME_CAPTAIN_MASK_PMAP_ANIM melcap.ani - SNDRES MELNORME_SHIP_SOUNDS melsound.snd - - MUSICRES MELNORME_VICTORY_SONG melditty.mod - diff --git a/sc2/src/uqm/ships/melnorme/resinst.h b/sc2/src/uqm/ships/melnorme/resinst.h index d5310a924..a42872f4c 100644 --- a/sc2/src/uqm/ships/melnorme/resinst.h +++ b/sc2/src/uqm/ships/melnorme/resinst.h @@ -1,5 +1,17 @@ -#include "igfxres.h" -#include "istrtab.h" -#include "isndres.h" -#include "imusicre.h" +#define CONFUSE_BIG_MASK_PMAP_ANIM "ship.melnorme.graphics.confuse.large" +#define CONFUSE_MED_MASK_PMAP_ANIM "ship.melnorme.graphics.confuse.medium" +#define CONFUSE_SML_MASK_PMAP_ANIM "ship.melnorme.graphics.confuse.small" +#define MELNORME_BIG_MASK_PMAP_ANIM "ship.melnorme.graphics.trader.large" +#define MELNORME_CAPTAIN_MASK_PMAP_ANIM "ship.melnorme.graphics.captain" +#define MELNORME_ICON_MASK_PMAP_ANIM "ship.melnorme.icons" +#define MELNORME_MED_MASK_PMAP_ANIM "ship.melnorme.graphics.trader.medium" +#define MELNORME_MICON_MASK_PMAP_ANIM "ship.melnorme.meleeicons" +#define MELNORME_SML_MASK_PMAP_ANIM "ship.melnorme.graphics.trader.small" +#define PUMPUP_BIG_MASK_PMAP_ANIM "ship.melnorme.graphics.pumpup.large" +#define PUMPUP_MED_MASK_PMAP_ANIM "ship.melnorme.graphics.pumpup.medium" +#define PUMPUP_SML_MASK_PMAP_ANIM "ship.melnorme.graphics.pumpup.small" +#define MELNORME_RACE_STRINGS "ship.melnorme.text" +#define MELNORME_SHIP_SOUNDS "ship.melnorme.sounds" +#define MELNORME_VICTORY_SONG "ship.melnorme.ditty" + #include "icode.h" diff --git a/sc2/src/uqm/ships/melnorme/respkg.h b/sc2/src/uqm/ships/melnorme/respkg.h deleted file mode 100644 index a2bf4c206..000000000 --- a/sc2/src/uqm/ships/melnorme/respkg.h +++ /dev/null @@ -1,6 +0,0 @@ -enum -{ - MELNORME_CODE_PACKAGE = 1, - MELNORME_PACKAGE -}; - diff --git a/sc2/src/uqm/ships/melnorme/restypes.h b/sc2/src/uqm/ships/melnorme/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/melnorme/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/mmrnmhrm/icode.h b/sc2/src/uqm/ships/mmrnmhrm/icode.h index ba3f593b5..7a9457c9a 100644 --- a/sc2/src/uqm/ships/mmrnmhrm/icode.h +++ b/sc2/src/uqm/ships/mmrnmhrm/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define MMRNMHRM_CODE "ship.mmrnmhrm.code" diff --git a/sc2/src/uqm/ships/mmrnmhrm/igfxres.h b/sc2/src/uqm/ships/mmrnmhrm/igfxres.h deleted file mode 100644 index 110a4a74d..000000000 --- a/sc2/src/uqm/ships/mmrnmhrm/igfxres.h +++ /dev/null @@ -1,16 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define MMRNMHRM_BIG_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.xform.large" -#define MMRNMHRM_CAPTAIN_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.captain" -#define MMRNMHRM_ICON_MASK_PMAP_ANIM "ship.mmrnmhrm.icons" -#define MMRNMHRM_MED_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.xform.medium" -#define MMRNMHRM_MICON_MASK_PMAP_ANIM "ship.mmrnmhrm.meleeicons" -#define MMRNMHRM_SML_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.xform.small" -#define TORP_BIG_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.torpedo.large" -#define TORP_MED_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.torpedo.medium" -#define TORP_SML_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.torpedo.small" -#define YWING_BIG_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.ywing.large" -#define YWING_MED_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.ywing.medium" -#define YWING_SML_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.ywing.small" diff --git a/sc2/src/uqm/ships/mmrnmhrm/imusicre.h b/sc2/src/uqm/ships/mmrnmhrm/imusicre.h deleted file mode 100644 index 4ee389463..000000000 --- a/sc2/src/uqm/ships/mmrnmhrm/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define MMRNMHRM_VICTORY_SONG "ship.mmrnmhrm.ditty" diff --git a/sc2/src/uqm/ships/mmrnmhrm/isndres.h b/sc2/src/uqm/ships/mmrnmhrm/isndres.h deleted file mode 100644 index c9cbcd621..000000000 --- a/sc2/src/uqm/ships/mmrnmhrm/isndres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define MMRNMHRM_SHIP_SOUNDS "ship.mmrnmhrm.sounds" diff --git a/sc2/src/uqm/ships/mmrnmhrm/istrtab.h b/sc2/src/uqm/ships/mmrnmhrm/istrtab.h deleted file mode 100644 index e597180c6..000000000 --- a/sc2/src/uqm/ships/mmrnmhrm/istrtab.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define MMRNMHRM_RACE_STRINGS "ship.mmrnmhrm.text" diff --git a/sc2/src/uqm/ships/mmrnmhrm/mmrnmhrm.res b/sc2/src/uqm/ships/mmrnmhrm/mmrnmhrm.res deleted file mode 100644 index 2f48ffd3c..000000000 --- a/sc2/src/uqm/ships/mmrnmhrm/mmrnmhrm.res +++ /dev/null @@ -1,26 +0,0 @@ -INCLUDE ../star3do.typ - -PATH mmrnmhrm - -PACKAGE MMRNMHRM_CODE_PACKAGE mmrnmhrm.shp - CODE MMRNMHRM_CODE mmrnmhrm.cod - GFXRES MMRNMHRM_ICON_MASK_PMAP_ANIM mmricons.ani - GFXRES MMRNMHRM_MICON_MASK_PMAP_ANIM mmrmicon.ani - STRTAB MMRNMHRM_RACE_STRINGS mmrtext.txt - -PACKAGE MMRNMHRM_PACKAGE mmrnmhrm.shp - GFXRES MMRNMHRM_BIG_MASK_PMAP_ANIM mmrnmhrm.big - GFXRES MMRNMHRM_MED_MASK_PMAP_ANIM mmrnmhrm.med - GFXRES MMRNMHRM_SML_MASK_PMAP_ANIM mmrnmhrm.sml - GFXRES TORP_BIG_MASK_PMAP_ANIM torp.big - GFXRES TORP_MED_MASK_PMAP_ANIM torp.med - GFXRES TORP_SML_MASK_PMAP_ANIM torp.sml - GFXRES YWING_BIG_MASK_PMAP_ANIM ywing.big - GFXRES YWING_MED_MASK_PMAP_ANIM ywing.med - GFXRES YWING_SML_MASK_PMAP_ANIM ywing.sml - - GFXRES MMRNMHRM_CAPTAIN_MASK_PMAP_ANIM mmrcap.ani - SNDRES MMRNMHRM_SHIP_SOUNDS mmrsound.snd - - MUSICRES MMRNMHRM_VICTORY_SONG mmrditty.mod - diff --git a/sc2/src/uqm/ships/mmrnmhrm/resinst.h b/sc2/src/uqm/ships/mmrnmhrm/resinst.h index d5310a924..154535b09 100644 --- a/sc2/src/uqm/ships/mmrnmhrm/resinst.h +++ b/sc2/src/uqm/ships/mmrnmhrm/resinst.h @@ -1,5 +1,17 @@ -#include "igfxres.h" -#include "istrtab.h" -#include "isndres.h" -#include "imusicre.h" +#define MMRNMHRM_BIG_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.xform.large" +#define MMRNMHRM_CAPTAIN_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.captain" +#define MMRNMHRM_ICON_MASK_PMAP_ANIM "ship.mmrnmhrm.icons" +#define MMRNMHRM_MED_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.xform.medium" +#define MMRNMHRM_MICON_MASK_PMAP_ANIM "ship.mmrnmhrm.meleeicons" +#define MMRNMHRM_SML_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.xform.small" +#define TORP_BIG_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.torpedo.large" +#define TORP_MED_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.torpedo.medium" +#define TORP_SML_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.torpedo.small" +#define YWING_BIG_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.ywing.large" +#define YWING_MED_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.ywing.medium" +#define YWING_SML_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.ywing.small" +#define MMRNMHRM_RACE_STRINGS "ship.mmrnmhrm.text" +#define MMRNMHRM_SHIP_SOUNDS "ship.mmrnmhrm.sounds" +#define MMRNMHRM_VICTORY_SONG "ship.mmrnmhrm.ditty" + #include "icode.h" diff --git a/sc2/src/uqm/ships/mmrnmhrm/respkg.h b/sc2/src/uqm/ships/mmrnmhrm/respkg.h deleted file mode 100644 index cfc776ebb..000000000 --- a/sc2/src/uqm/ships/mmrnmhrm/respkg.h +++ /dev/null @@ -1,6 +0,0 @@ -enum -{ - MMRNMHRM_CODE_PACKAGE = 1, - MMRNMHRM_PACKAGE -}; - diff --git a/sc2/src/uqm/ships/mmrnmhrm/restypes.h b/sc2/src/uqm/ships/mmrnmhrm/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/mmrnmhrm/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/mycon/icode.h b/sc2/src/uqm/ships/mycon/icode.h index b3caa5819..067afbc03 100644 --- a/sc2/src/uqm/ships/mycon/icode.h +++ b/sc2/src/uqm/ships/mycon/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define MYCON_CODE "ship.mycon.code" diff --git a/sc2/src/uqm/ships/mycon/igfxres.h b/sc2/src/uqm/ships/mycon/igfxres.h deleted file mode 100644 index b4f92ed5f..000000000 --- a/sc2/src/uqm/ships/mycon/igfxres.h +++ /dev/null @@ -1,13 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define MYCON_BIG_MASK_PMAP_ANIM "ship.mycon.graphics.podship.large" -#define MYCON_CAPTAIN_MASK_PMAP_ANIM "ship.mycon.graphics.captain" -#define MYCON_ICON_MASK_PMAP_ANIM "ship.mycon.icons" -#define MYCON_MED_MASK_PMAP_ANIM "ship.mycon.graphics.podship.medium" -#define MYCON_MICON_MASK_PMAP_ANIM "ship.mycon.meleeicons" -#define MYCON_SML_MASK_PMAP_ANIM "ship.mycon.graphics.podship.small" -#define PLASMA_BIG_MASK_PMAP_ANIM "ship.mycon.graphics.plasma.large" -#define PLASMA_MED_MASK_PMAP_ANIM "ship.mycon.graphics.plasma.medium" -#define PLASMA_SML_MASK_PMAP_ANIM "ship.mycon.graphics.plasma.small" diff --git a/sc2/src/uqm/ships/mycon/imusicre.h b/sc2/src/uqm/ships/mycon/imusicre.h deleted file mode 100644 index e191b40b4..000000000 --- a/sc2/src/uqm/ships/mycon/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define MYCON_VICTORY_SONG "ship.mycon.ditty" diff --git a/sc2/src/uqm/ships/mycon/isndres.h b/sc2/src/uqm/ships/mycon/isndres.h deleted file mode 100644 index 4868fd132..000000000 --- a/sc2/src/uqm/ships/mycon/isndres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define MYCON_SHIP_SOUNDS "ship.mycon.sounds" diff --git a/sc2/src/uqm/ships/mycon/istrtab.h b/sc2/src/uqm/ships/mycon/istrtab.h deleted file mode 100644 index 26f98e5df..000000000 --- a/sc2/src/uqm/ships/mycon/istrtab.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define MYCON_RACE_STRINGS "ship.mycon.text" diff --git a/sc2/src/uqm/ships/mycon/mycon.res b/sc2/src/uqm/ships/mycon/mycon.res deleted file mode 100644 index 1c5067396..000000000 --- a/sc2/src/uqm/ships/mycon/mycon.res +++ /dev/null @@ -1,23 +0,0 @@ -INCLUDE ../star3do.typ - -PATH mycon - -PACKAGE MYCON_CODE_PACKAGE mycon.shp - CODE MYCON_CODE mycon.cod - GFXRES MYCON_ICON_MASK_PMAP_ANIM mycicons.ani - GFXRES MYCON_MICON_MASK_PMAP_ANIM mycmicon.ani - STRTAB MYCON_RACE_STRINGS myctext.txt - -PACKAGE MYCON_PACKAGE mycon.shp - GFXRES MYCON_BIG_MASK_PMAP_ANIM mycon.big - GFXRES MYCON_MED_MASK_PMAP_ANIM mycon.med - GFXRES MYCON_SML_MASK_PMAP_ANIM mycon.sml - GFXRES PLASMA_BIG_MASK_PMAP_ANIM plasma.big - GFXRES PLASMA_MED_MASK_PMAP_ANIM plasma.med - GFXRES PLASMA_SML_MASK_PMAP_ANIM plasma.sml - - GFXRES MYCON_CAPTAIN_MASK_PMAP_ANIM myccap.ani - SNDRES MYCON_SHIP_SOUNDS mycsound.snd - - MUSICRES MYCON_VICTORY_SONG mycditty.mod - diff --git a/sc2/src/uqm/ships/mycon/resinst.h b/sc2/src/uqm/ships/mycon/resinst.h index d5310a924..4a74e4449 100644 --- a/sc2/src/uqm/ships/mycon/resinst.h +++ b/sc2/src/uqm/ships/mycon/resinst.h @@ -1,5 +1,14 @@ -#include "igfxres.h" -#include "istrtab.h" -#include "isndres.h" -#include "imusicre.h" +#define MYCON_BIG_MASK_PMAP_ANIM "ship.mycon.graphics.podship.large" +#define MYCON_CAPTAIN_MASK_PMAP_ANIM "ship.mycon.graphics.captain" +#define MYCON_ICON_MASK_PMAP_ANIM "ship.mycon.icons" +#define MYCON_MED_MASK_PMAP_ANIM "ship.mycon.graphics.podship.medium" +#define MYCON_MICON_MASK_PMAP_ANIM "ship.mycon.meleeicons" +#define MYCON_SML_MASK_PMAP_ANIM "ship.mycon.graphics.podship.small" +#define PLASMA_BIG_MASK_PMAP_ANIM "ship.mycon.graphics.plasma.large" +#define PLASMA_MED_MASK_PMAP_ANIM "ship.mycon.graphics.plasma.medium" +#define PLASMA_SML_MASK_PMAP_ANIM "ship.mycon.graphics.plasma.small" +#define MYCON_RACE_STRINGS "ship.mycon.text" +#define MYCON_SHIP_SOUNDS "ship.mycon.sounds" +#define MYCON_VICTORY_SONG "ship.mycon.ditty" + #include "icode.h" diff --git a/sc2/src/uqm/ships/mycon/respkg.h b/sc2/src/uqm/ships/mycon/respkg.h deleted file mode 100644 index 12b0cd6e3..000000000 --- a/sc2/src/uqm/ships/mycon/respkg.h +++ /dev/null @@ -1,6 +0,0 @@ -enum -{ - MYCON_CODE_PACKAGE = 1, - MYCON_PACKAGE -}; - diff --git a/sc2/src/uqm/ships/mycon/restypes.h b/sc2/src/uqm/ships/mycon/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/mycon/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/orz/icode.h b/sc2/src/uqm/ships/orz/icode.h index bb45c4e35..0d3349081 100644 --- a/sc2/src/uqm/ships/orz/icode.h +++ b/sc2/src/uqm/ships/orz/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define ORZ_CODE "ship.orz.code" diff --git a/sc2/src/uqm/ships/orz/igfxres.h b/sc2/src/uqm/ships/orz/igfxres.h deleted file mode 100644 index f53552817..000000000 --- a/sc2/src/uqm/ships/orz/igfxres.h +++ /dev/null @@ -1,16 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define HOWITZER_BIG_MASK_PMAP_ANIM "ship.orz.graphics.howitzer.large" -#define HOWITZER_MED_MASK_PMAP_ANIM "ship.orz.graphics.howitzer.medium" -#define HOWITZER_SML_MASK_PMAP_ANIM "ship.orz.graphics.howitzer.small" -#define ORZ_BIG_MASK_PMAP_ANIM "ship.orz.graphics.nemesis.large" -#define ORZ_CAPTAIN_MASK_PMAP_ANIM "ship.orz.graphics.captain" -#define ORZ_ICON_MASK_PMAP_ANIM "ship.orz.icons" -#define ORZ_MED_MASK_PMAP_ANIM "ship.orz.graphics.nemesis.medium" -#define ORZ_MICON_MASK_PMAP_ANIM "ship.orz.meleeicons" -#define ORZ_SML_MASK_PMAP_ANIM "ship.orz.graphics.nemesis.small" -#define TURRET_BIG_MASK_PMAP_ANIM "ship.orz.graphics.turret.large" -#define TURRET_MED_MASK_PMAP_ANIM "ship.orz.graphics.turret.medium" -#define TURRET_SML_MASK_PMAP_ANIM "ship.orz.graphics.turret.small" diff --git a/sc2/src/uqm/ships/orz/imusicre.h b/sc2/src/uqm/ships/orz/imusicre.h deleted file mode 100644 index 69e2f84f3..000000000 --- a/sc2/src/uqm/ships/orz/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ORZ_VICTORY_SONG "ship.orz.ditty" diff --git a/sc2/src/uqm/ships/orz/isndres.h b/sc2/src/uqm/ships/orz/isndres.h deleted file mode 100644 index caf0f070b..000000000 --- a/sc2/src/uqm/ships/orz/isndres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ORZ_SHIP_SOUNDS "ship.orz.sounds" diff --git a/sc2/src/uqm/ships/orz/istrtab.h b/sc2/src/uqm/ships/orz/istrtab.h deleted file mode 100644 index bec77edc1..000000000 --- a/sc2/src/uqm/ships/orz/istrtab.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ORZ_RACE_STRINGS "ship.orz.text" diff --git a/sc2/src/uqm/ships/orz/orz.res b/sc2/src/uqm/ships/orz/orz.res deleted file mode 100644 index 71139dd81..000000000 --- a/sc2/src/uqm/ships/orz/orz.res +++ /dev/null @@ -1,26 +0,0 @@ -INCLUDE ../star3do.typ - -PATH orz - -PACKAGE ORZ_CODE_PACKAGE orz.shp - CODE ORZ_CODE orz.cod - GFXRES ORZ_ICON_MASK_PMAP_ANIM orzicons.ani - GFXRES ORZ_MICON_MASK_PMAP_ANIM orzmicon.ani - STRTAB ORZ_RACE_STRINGS orztext.txt - -PACKAGE ORZ_PACKAGE orz.shp - GFXRES ORZ_BIG_MASK_PMAP_ANIM orz.big - GFXRES ORZ_MED_MASK_PMAP_ANIM orz.med - GFXRES ORZ_SML_MASK_PMAP_ANIM orz.sml - GFXRES HOWITZER_BIG_MASK_PMAP_ANIM howbig.ani - GFXRES HOWITZER_MED_MASK_PMAP_ANIM howmed.ani - GFXRES HOWITZER_SML_MASK_PMAP_ANIM howsml.ani - GFXRES TURRET_BIG_MASK_PMAP_ANIM turbig.ani - GFXRES TURRET_MED_MASK_PMAP_ANIM turmed.ani - GFXRES TURRET_SML_MASK_PMAP_ANIM tursml.ani - - GFXRES ORZ_CAPTAIN_MASK_PMAP_ANIM orzcap.ani - SNDRES ORZ_SHIP_SOUNDS orzsound.snd - - MUSICRES ORZ_VICTORY_SONG orzditty.mod - diff --git a/sc2/src/uqm/ships/orz/resinst.h b/sc2/src/uqm/ships/orz/resinst.h index d5310a924..4a43a858d 100644 --- a/sc2/src/uqm/ships/orz/resinst.h +++ b/sc2/src/uqm/ships/orz/resinst.h @@ -1,5 +1,17 @@ -#include "igfxres.h" -#include "istrtab.h" -#include "isndres.h" -#include "imusicre.h" +#define HOWITZER_BIG_MASK_PMAP_ANIM "ship.orz.graphics.howitzer.large" +#define HOWITZER_MED_MASK_PMAP_ANIM "ship.orz.graphics.howitzer.medium" +#define HOWITZER_SML_MASK_PMAP_ANIM "ship.orz.graphics.howitzer.small" +#define ORZ_BIG_MASK_PMAP_ANIM "ship.orz.graphics.nemesis.large" +#define ORZ_CAPTAIN_MASK_PMAP_ANIM "ship.orz.graphics.captain" +#define ORZ_ICON_MASK_PMAP_ANIM "ship.orz.icons" +#define ORZ_MED_MASK_PMAP_ANIM "ship.orz.graphics.nemesis.medium" +#define ORZ_MICON_MASK_PMAP_ANIM "ship.orz.meleeicons" +#define ORZ_SML_MASK_PMAP_ANIM "ship.orz.graphics.nemesis.small" +#define TURRET_BIG_MASK_PMAP_ANIM "ship.orz.graphics.turret.large" +#define TURRET_MED_MASK_PMAP_ANIM "ship.orz.graphics.turret.medium" +#define TURRET_SML_MASK_PMAP_ANIM "ship.orz.graphics.turret.small" +#define ORZ_RACE_STRINGS "ship.orz.text" +#define ORZ_SHIP_SOUNDS "ship.orz.sounds" +#define ORZ_VICTORY_SONG "ship.orz.ditty" + #include "icode.h" diff --git a/sc2/src/uqm/ships/orz/respkg.h b/sc2/src/uqm/ships/orz/respkg.h deleted file mode 100644 index 1eda34968..000000000 --- a/sc2/src/uqm/ships/orz/respkg.h +++ /dev/null @@ -1,6 +0,0 @@ -enum -{ - ORZ_CODE_PACKAGE = 1, - ORZ_PACKAGE -}; - diff --git a/sc2/src/uqm/ships/orz/restypes.h b/sc2/src/uqm/ships/orz/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/orz/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/pkunk/icode.h b/sc2/src/uqm/ships/pkunk/icode.h index 4d0d4e51f..2893b749b 100644 --- a/sc2/src/uqm/ships/pkunk/icode.h +++ b/sc2/src/uqm/ships/pkunk/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define PKUNK_CODE "ship.pkunk.code" diff --git a/sc2/src/uqm/ships/pkunk/igfxres.h b/sc2/src/uqm/ships/pkunk/igfxres.h deleted file mode 100644 index b2024e30d..000000000 --- a/sc2/src/uqm/ships/pkunk/igfxres.h +++ /dev/null @@ -1,13 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define BUG_BIG_MASK_PMAP_ANIM "ship.pkunk.graphics.bug.large" -#define BUG_MED_MASK_PMAP_ANIM "ship.pkunk.graphics.bug.medium" -#define BUG_SML_MASK_PMAP_ANIM "ship.pkunk.graphics.bug.small" -#define PKUNK_BIG_MASK_PMAP_ANIM "ship.pkunk.graphics.fury.large" -#define PKUNK_CAPTAIN_MASK_PMAP_ANIM "ship.pkunk.graphics.captain" -#define PKUNK_ICON_MASK_PMAP_ANIM "ship.pkunk.icons" -#define PKUNK_MED_MASK_PMAP_ANIM "ship.pkunk.graphics.fury.medium" -#define PKUNK_MICON_MASK_PMAP_ANIM "ship.pkunk.meleeicons" -#define PKUNK_SML_MASK_PMAP_ANIM "ship.pkunk.graphics.fury.small" diff --git a/sc2/src/uqm/ships/pkunk/imusicre.h b/sc2/src/uqm/ships/pkunk/imusicre.h deleted file mode 100644 index cb37ddd04..000000000 --- a/sc2/src/uqm/ships/pkunk/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define PKUNK_VICTORY_SONG "ship.pkunk.ditty" diff --git a/sc2/src/uqm/ships/pkunk/isndres.h b/sc2/src/uqm/ships/pkunk/isndres.h deleted file mode 100644 index d6c739231..000000000 --- a/sc2/src/uqm/ships/pkunk/isndres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define PKUNK_SHIP_SOUNDS "ship.pkunk.sounds" diff --git a/sc2/src/uqm/ships/pkunk/istrtab.h b/sc2/src/uqm/ships/pkunk/istrtab.h deleted file mode 100644 index 0a79377e5..000000000 --- a/sc2/src/uqm/ships/pkunk/istrtab.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define PKUNK_RACE_STRINGS "ship.pkunk.text" diff --git a/sc2/src/uqm/ships/pkunk/pkunk.res b/sc2/src/uqm/ships/pkunk/pkunk.res deleted file mode 100644 index 81c917570..000000000 --- a/sc2/src/uqm/ships/pkunk/pkunk.res +++ /dev/null @@ -1,23 +0,0 @@ -INCLUDE ../star3do.typ - -PATH pkunk - -PACKAGE PKUNK_CODE_PACKAGE pkunk.shp - CODE PKUNK_CODE pkunk.cod - GFXRES PKUNK_ICON_MASK_PMAP_ANIM pkuicons.ani - GFXRES PKUNK_MICON_MASK_PMAP_ANIM pkumicon.ani - STRTAB PKUNK_RACE_STRINGS pkutext.txt - -PACKAGE PKUNK_PACKAGE pkunk.shp - GFXRES PKUNK_BIG_MASK_PMAP_ANIM pkunk.big - GFXRES PKUNK_MED_MASK_PMAP_ANIM pkunk.med - GFXRES PKUNK_SML_MASK_PMAP_ANIM pkunk.sml - GFXRES BUG_BIG_MASK_PMAP_ANIM bugbig.ani - GFXRES BUG_MED_MASK_PMAP_ANIM bugmed.ani - GFXRES BUG_SML_MASK_PMAP_ANIM bugsml.ani - - GFXRES PKUNK_CAPTAIN_MASK_PMAP_ANIM pkucap.ani - SNDRES PKUNK_SHIP_SOUNDS pkusound.snd - - MUSICRES PKUNK_VICTORY_SONG pkuditty.mod - diff --git a/sc2/src/uqm/ships/pkunk/resinst.h b/sc2/src/uqm/ships/pkunk/resinst.h index d5310a924..5b1384254 100644 --- a/sc2/src/uqm/ships/pkunk/resinst.h +++ b/sc2/src/uqm/ships/pkunk/resinst.h @@ -1,5 +1,14 @@ -#include "igfxres.h" -#include "istrtab.h" -#include "isndres.h" -#include "imusicre.h" +#define BUG_BIG_MASK_PMAP_ANIM "ship.pkunk.graphics.bug.large" +#define BUG_MED_MASK_PMAP_ANIM "ship.pkunk.graphics.bug.medium" +#define BUG_SML_MASK_PMAP_ANIM "ship.pkunk.graphics.bug.small" +#define PKUNK_BIG_MASK_PMAP_ANIM "ship.pkunk.graphics.fury.large" +#define PKUNK_CAPTAIN_MASK_PMAP_ANIM "ship.pkunk.graphics.captain" +#define PKUNK_ICON_MASK_PMAP_ANIM "ship.pkunk.icons" +#define PKUNK_MED_MASK_PMAP_ANIM "ship.pkunk.graphics.fury.medium" +#define PKUNK_MICON_MASK_PMAP_ANIM "ship.pkunk.meleeicons" +#define PKUNK_SML_MASK_PMAP_ANIM "ship.pkunk.graphics.fury.small" +#define PKUNK_RACE_STRINGS "ship.pkunk.text" +#define PKUNK_SHIP_SOUNDS "ship.pkunk.sounds" +#define PKUNK_VICTORY_SONG "ship.pkunk.ditty" + #include "icode.h" diff --git a/sc2/src/uqm/ships/pkunk/respkg.h b/sc2/src/uqm/ships/pkunk/respkg.h deleted file mode 100644 index 249d10312..000000000 --- a/sc2/src/uqm/ships/pkunk/respkg.h +++ /dev/null @@ -1,6 +0,0 @@ -enum -{ - PKUNK_CODE_PACKAGE = 1, - PKUNK_PACKAGE -}; - diff --git a/sc2/src/uqm/ships/pkunk/restypes.h b/sc2/src/uqm/ships/pkunk/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/pkunk/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/probe/icode.h b/sc2/src/uqm/ships/probe/icode.h index badab2a2e..7d03794d8 100644 --- a/sc2/src/uqm/ships/probe/icode.h +++ b/sc2/src/uqm/ships/probe/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define URQUAN_DRONE_CODE "ship.drone.code" diff --git a/sc2/src/uqm/ships/probe/igfxres.h b/sc2/src/uqm/ships/probe/igfxres.h deleted file mode 100644 index 5365c6d56..000000000 --- a/sc2/src/uqm/ships/probe/igfxres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define URQUAN_DRONE_MICON_MASK_PMAP_ANIM "ship.drone.meleeicons" diff --git a/sc2/src/uqm/ships/probe/istrtab.h b/sc2/src/uqm/ships/probe/istrtab.h deleted file mode 100644 index 19f21066d..000000000 --- a/sc2/src/uqm/ships/probe/istrtab.h +++ /dev/null @@ -1,6 +0,0 @@ -#ifndef _ISTRTAB_H -#define _ISTRTAB_H - -typedef RESOURCE STRTAB_INSTANCE; - -#endif /* _ISTRTAB_H */ diff --git a/sc2/src/uqm/ships/probe/probe.res b/sc2/src/uqm/ships/probe/probe.res deleted file mode 100644 index 7fd219992..000000000 --- a/sc2/src/uqm/ships/probe/probe.res +++ /dev/null @@ -1,8 +0,0 @@ -INCLUDE ../star3do.typ - -PATH probe - -PACKAGE PROBE_CODE_PACKAGE probe.sc2 - CODE PROBE_CODE probe.cod - GFXRES PROBE_MICON_MASK_PMAP_ANIM promicon.ani - diff --git a/sc2/src/uqm/ships/probe/resinst.h b/sc2/src/uqm/ships/probe/resinst.h index 97bd4134b..4e2620f2b 100644 --- a/sc2/src/uqm/ships/probe/resinst.h +++ b/sc2/src/uqm/ships/probe/resinst.h @@ -1,2 +1,3 @@ -#include "igfxres.h" +#define URQUAN_DRONE_MICON_MASK_PMAP_ANIM "ship.drone.meleeicons" + #include "icode.h" diff --git a/sc2/src/uqm/ships/probe/respkg.h b/sc2/src/uqm/ships/probe/respkg.h deleted file mode 100644 index e210c162c..000000000 --- a/sc2/src/uqm/ships/probe/respkg.h +++ /dev/null @@ -1,5 +0,0 @@ -enum -{ - PROBE_CODE_PACKAGE = 1 -}; - diff --git a/sc2/src/uqm/ships/probe/restypes.h b/sc2/src/uqm/ships/probe/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/probe/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/shofixti/icode.h b/sc2/src/uqm/ships/shofixti/icode.h index 4afe8d350..8741de9c4 100644 --- a/sc2/src/uqm/ships/shofixti/icode.h +++ b/sc2/src/uqm/ships/shofixti/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define SHOFIXTI_CODE "ship.shofixti.code" diff --git a/sc2/src/uqm/ships/shofixti/igfxres.h b/sc2/src/uqm/ships/shofixti/igfxres.h deleted file mode 100644 index 31aef24f1..000000000 --- a/sc2/src/uqm/ships/shofixti/igfxres.h +++ /dev/null @@ -1,20 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define DART_BIG_MASK_PMAP_ANIM "ship.shofixti.graphics.missile.large" -#define DART_MED_MASK_PMAP_ANIM "ship.shofixti.graphics.missile.medium" -#define DART_SML_MASK_PMAP_ANIM "ship.shofixti.graphics.missile.small" -#define DESTRUCT_BIG_MASK_ANIM "ship.shofixti.graphics.destruct.large" -#define DESTRUCT_MED_MASK_ANIM "ship.shofixti.graphics.destruct.medium" -#define DESTRUCT_SML_MASK_ANIM "ship.shofixti.graphics.destruct.small" -#define OLDSHOF_BIG_MASK_PMAP_ANIM "ship.shofixti.graphics.oldscout.large" -#define OLDSHOF_CAPTAIN_MASK_PMAP_ANIM "ship.shofixti.graphics.oldcaptain" -#define OLDSHOF_MED_MASK_PMAP_ANIM "ship.shofixti.graphics.oldscout.medium" -#define OLDSHOF_SML_MASK_PMAP_ANIM "ship.shofixti.graphics.oldscout.small" -#define SHOFIXTI_BIG_MASK_PMAP_ANIM "ship.shofixti.graphics.scout.large" -#define SHOFIXTI_CAPTAIN_MASK_PMAP_ANIM "ship.shofixti.graphics.captain" -#define SHOFIXTI_ICON_MASK_PMAP_ANIM "ship.shofixti.icons" -#define SHOFIXTI_MED_MASK_PMAP_ANIM "ship.shofixti.graphics.scout.medium" -#define SHOFIXTI_MICON_MASK_PMAP_ANIM "ship.shofixti.meleeicons" -#define SHOFIXTI_SML_MASK_PMAP_ANIM "ship.shofixti.graphics.scout.small" diff --git a/sc2/src/uqm/ships/shofixti/imusicre.h b/sc2/src/uqm/ships/shofixti/imusicre.h deleted file mode 100644 index 9ae62ad7b..000000000 --- a/sc2/src/uqm/ships/shofixti/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SHOFIXTI_VICTORY_SONG "ship.shofixti.ditty" diff --git a/sc2/src/uqm/ships/shofixti/isndres.h b/sc2/src/uqm/ships/shofixti/isndres.h deleted file mode 100644 index 359b294c7..000000000 --- a/sc2/src/uqm/ships/shofixti/isndres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SHOFIXTI_SHIP_SOUNDS "ship.shofixti.sounds" diff --git a/sc2/src/uqm/ships/shofixti/istrtab.h b/sc2/src/uqm/ships/shofixti/istrtab.h deleted file mode 100644 index 0a573975c..000000000 --- a/sc2/src/uqm/ships/shofixti/istrtab.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SHOFIXTI_RACE_STRINGS "ship.shofixti.text" diff --git a/sc2/src/uqm/ships/shofixti/resinst.h b/sc2/src/uqm/ships/shofixti/resinst.h index d5310a924..5b8e5bc86 100644 --- a/sc2/src/uqm/ships/shofixti/resinst.h +++ b/sc2/src/uqm/ships/shofixti/resinst.h @@ -1,5 +1,21 @@ -#include "igfxres.h" -#include "istrtab.h" -#include "isndres.h" -#include "imusicre.h" +#define DART_BIG_MASK_PMAP_ANIM "ship.shofixti.graphics.missile.large" +#define DART_MED_MASK_PMAP_ANIM "ship.shofixti.graphics.missile.medium" +#define DART_SML_MASK_PMAP_ANIM "ship.shofixti.graphics.missile.small" +#define DESTRUCT_BIG_MASK_ANIM "ship.shofixti.graphics.destruct.large" +#define DESTRUCT_MED_MASK_ANIM "ship.shofixti.graphics.destruct.medium" +#define DESTRUCT_SML_MASK_ANIM "ship.shofixti.graphics.destruct.small" +#define OLDSHOF_BIG_MASK_PMAP_ANIM "ship.shofixti.graphics.oldscout.large" +#define OLDSHOF_CAPTAIN_MASK_PMAP_ANIM "ship.shofixti.graphics.oldcaptain" +#define OLDSHOF_MED_MASK_PMAP_ANIM "ship.shofixti.graphics.oldscout.medium" +#define OLDSHOF_SML_MASK_PMAP_ANIM "ship.shofixti.graphics.oldscout.small" +#define SHOFIXTI_BIG_MASK_PMAP_ANIM "ship.shofixti.graphics.scout.large" +#define SHOFIXTI_CAPTAIN_MASK_PMAP_ANIM "ship.shofixti.graphics.captain" +#define SHOFIXTI_ICON_MASK_PMAP_ANIM "ship.shofixti.icons" +#define SHOFIXTI_MED_MASK_PMAP_ANIM "ship.shofixti.graphics.scout.medium" +#define SHOFIXTI_MICON_MASK_PMAP_ANIM "ship.shofixti.meleeicons" +#define SHOFIXTI_SML_MASK_PMAP_ANIM "ship.shofixti.graphics.scout.small" +#define SHOFIXTI_RACE_STRINGS "ship.shofixti.text" +#define SHOFIXTI_SHIP_SOUNDS "ship.shofixti.sounds" +#define SHOFIXTI_VICTORY_SONG "ship.shofixti.ditty" + #include "icode.h" diff --git a/sc2/src/uqm/ships/shofixti/respkg.h b/sc2/src/uqm/ships/shofixti/respkg.h deleted file mode 100644 index 9f690d41f..000000000 --- a/sc2/src/uqm/ships/shofixti/respkg.h +++ /dev/null @@ -1,8 +0,0 @@ -enum -{ - SHOFIXTI_CODE_PACKAGE = 1, - SHOFIXTI_PACKAGE, - OLDSHOF_PACKAGE, - SHOFIXTI_SHARED_PACKAGE -}; - diff --git a/sc2/src/uqm/ships/shofixti/restypes.h b/sc2/src/uqm/ships/shofixti/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/shofixti/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/shofixti/shofixti.res b/sc2/src/uqm/ships/shofixti/shofixti.res deleted file mode 100644 index e6b5c51fc..000000000 --- a/sc2/src/uqm/ships/shofixti/shofixti.res +++ /dev/null @@ -1,34 +0,0 @@ -INCLUDE ../star3do.typ - -PATH shofixti - -PACKAGE SHOFIXTI_CODE_PACKAGE shofixti.shp - CODE SHOFIXTI_CODE shofixti.cod - GFXRES SHOFIXTI_ICON_MASK_PMAP_ANIM shoicons.ani - GFXRES SHOFIXTI_MICON_MASK_PMAP_ANIM shomicon.ani - STRTAB SHOFIXTI_RACE_STRINGS shotext.txt - -PACKAGE SHOFIXTI_PACKAGE shofixti.shp - GFXRES SHOFIXTI_BIG_MASK_PMAP_ANIM shofixti.big - GFXRES SHOFIXTI_MED_MASK_PMAP_ANIM shofixti.med - GFXRES SHOFIXTI_SML_MASK_PMAP_ANIM shofixti.sml - GFXRES DESTRUCT_BIG_MASK_ANIM destruct.big - GFXRES DESTRUCT_MED_MASK_ANIM destruct.med - GFXRES DESTRUCT_SML_MASK_ANIM destruct.sml - - GFXRES SHOFIXTI_CAPTAIN_MASK_PMAP_ANIM shocap.ani - -PACKAGE OLDSHOF_PACKAGE shofixti.shp - GFXRES OLDSHOF_BIG_MASK_PMAP_ANIM oldshof.big - GFXRES OLDSHOF_MED_MASK_PMAP_ANIM oldshof.med - GFXRES OLDSHOF_SML_MASK_PMAP_ANIM oldshof.sml - - GFXRES OLDSHOF_CAPTAIN_MASK_PMAP_ANIM oldcap.ani - -PACKAGE SHOFIXTI_SHARED_PACKAGE shofixti.shp - GFXRES DART_BIG_MASK_PMAP_ANIM missile.big - GFXRES DART_MED_MASK_PMAP_ANIM missile.med - GFXRES DART_SML_MASK_PMAP_ANIM missile.sml - SNDRES SHOFIXTI_SHIP_SOUNDS shosound.snd - MUSICRES SHOFIXTI_VICTORY_SONG shoditty.mod - diff --git a/sc2/src/uqm/ships/sis_ship/icode.h b/sc2/src/uqm/ships/sis_ship/icode.h index 3d5744955..8c2426283 100644 --- a/sc2/src/uqm/ships/sis_ship/icode.h +++ b/sc2/src/uqm/ships/sis_ship/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define SIS_CODE "ship.flagship.code" diff --git a/sc2/src/uqm/ships/sis_ship/igfxres.h b/sc2/src/uqm/ships/sis_ship/igfxres.h deleted file mode 100644 index 8e9515d62..000000000 --- a/sc2/src/uqm/ships/sis_ship/igfxres.h +++ /dev/null @@ -1,13 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define BLASTER_BIG_MASK_PMAP_ANIM "ship.flagship.graphics.blaster.large" -#define BLASTER_MED_MASK_PMAP_ANIM "ship.flagship.graphics.blaster.medium" -#define BLASTER_SML_MASK_PMAP_ANIM "ship.flagship.graphics.blaster.small" -#define SIS_BIG_MASK_PMAP_ANIM "ship.flagship.graphics.flagship.large" -#define SIS_CAPTAIN_MASK_PMAP_ANIM "ship.flagship.graphics.captain" -#define SIS_HYPER_MASK_PMAP_ANIM "ship.flagship.graphics.hyperspace" -#define SIS_ICON_MASK_PMAP_ANIM "ship.flagship.icons" -#define SIS_MED_MASK_PMAP_ANIM "ship.flagship.graphics.flagship.medium" -#define SIS_SML_MASK_PMAP_ANIM "ship.flagship.graphics.flagship.small" diff --git a/sc2/src/uqm/ships/sis_ship/imusicre.h b/sc2/src/uqm/ships/sis_ship/imusicre.h deleted file mode 100644 index 6cd76a4a8..000000000 --- a/sc2/src/uqm/ships/sis_ship/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SIS_VICTORY_SONG "ship.flagship.ditty" diff --git a/sc2/src/uqm/ships/sis_ship/isndres.h b/sc2/src/uqm/ships/sis_ship/isndres.h deleted file mode 100644 index b59ce9ee3..000000000 --- a/sc2/src/uqm/ships/sis_ship/isndres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SIS_SHIP_SOUNDS "ship.flagship.sounds" diff --git a/sc2/src/uqm/ships/sis_ship/resinst.h b/sc2/src/uqm/ships/sis_ship/resinst.h index 55cb40937..ac97bfe4c 100644 --- a/sc2/src/uqm/ships/sis_ship/resinst.h +++ b/sc2/src/uqm/ships/sis_ship/resinst.h @@ -1,4 +1,13 @@ -#include "igfxres.h" -#include "isndres.h" -#include "imusicre.h" +#define BLASTER_BIG_MASK_PMAP_ANIM "ship.flagship.graphics.blaster.large" +#define BLASTER_MED_MASK_PMAP_ANIM "ship.flagship.graphics.blaster.medium" +#define BLASTER_SML_MASK_PMAP_ANIM "ship.flagship.graphics.blaster.small" +#define SIS_BIG_MASK_PMAP_ANIM "ship.flagship.graphics.flagship.large" +#define SIS_CAPTAIN_MASK_PMAP_ANIM "ship.flagship.graphics.captain" +#define SIS_HYPER_MASK_PMAP_ANIM "ship.flagship.graphics.hyperspace" +#define SIS_ICON_MASK_PMAP_ANIM "ship.flagship.icons" +#define SIS_MED_MASK_PMAP_ANIM "ship.flagship.graphics.flagship.medium" +#define SIS_SML_MASK_PMAP_ANIM "ship.flagship.graphics.flagship.small" +#define SIS_SHIP_SOUNDS "ship.flagship.sounds" +#define SIS_VICTORY_SONG "ship.flagship.ditty" + #include "icode.h" diff --git a/sc2/src/uqm/ships/sis_ship/respkg.h b/sc2/src/uqm/ships/sis_ship/respkg.h deleted file mode 100644 index e33687bf8..000000000 --- a/sc2/src/uqm/ships/sis_ship/respkg.h +++ /dev/null @@ -1,7 +0,0 @@ -enum -{ - SIS_CODE_PACKAGE = 1, - SIS_BATTLE_PACKAGE, - SIS_HYPER_PACKAGE -}; - diff --git a/sc2/src/uqm/ships/sis_ship/restypes.h b/sc2/src/uqm/ships/sis_ship/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/sis_ship/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/sis_ship/sis.res b/sc2/src/uqm/ships/sis_ship/sis.res deleted file mode 100644 index e9a07d00c..000000000 --- a/sc2/src/uqm/ships/sis_ship/sis.res +++ /dev/null @@ -1,24 +0,0 @@ -INCLUDE ../star3do.typ - -PATH sis_ship - -PACKAGE SIS_CODE_PACKAGE sis.dat - CODE SIS_CODE sis.cod - -PACKAGE SIS_BATTLE_PACKAGE sis.dat - GFXRES SIS_ICON_MASK_PMAP_ANIM sisicons.ani - - GFXRES SIS_BIG_MASK_PMAP_ANIM sis.big - GFXRES SIS_MED_MASK_PMAP_ANIM sis.med - GFXRES SIS_SML_MASK_PMAP_ANIM sis.sml - GFXRES BLASTER_BIG_MASK_PMAP_ANIM blasbig.ani - GFXRES BLASTER_MED_MASK_PMAP_ANIM blasmed.ani - GFXRES BLASTER_SML_MASK_PMAP_ANIM blassml.ani - - GFXRES SIS_CAPTAIN_MASK_PMAP_ANIM siscap.ani - SNDRES SIS_SHIP_SOUNDS sissound.snd - MUSICRES SIS_VICTORY_SONG sisditty.mod - -PACKAGE SIS_HYPER_PACKAGE sis.dat - GFXRES SIS_HYPER_MASK_PMAP_ANIM sishyper.ani - diff --git a/sc2/src/uqm/ships/slylandr/icode.h b/sc2/src/uqm/ships/slylandr/icode.h index 9897234b5..9465d3481 100644 --- a/sc2/src/uqm/ships/slylandr/icode.h +++ b/sc2/src/uqm/ships/slylandr/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define SLYLANDRO_CODE "ship.slylandro.code" diff --git a/sc2/src/uqm/ships/slylandr/igfxres.h b/sc2/src/uqm/ships/slylandr/igfxres.h deleted file mode 100644 index be7e3b7c3..000000000 --- a/sc2/src/uqm/ships/slylandr/igfxres.h +++ /dev/null @@ -1,10 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SLYLANDRO_BIG_MASK_PMAP_ANIM "ship.slylandro.graphics.probe.large" -#define SLYLANDRO_CAPTAIN_MASK_PMAP_ANIM "ship.slylandro.graphics.captain" -#define SLYLANDRO_ICON_MASK_PMAP_ANIM "ship.slylandro.icons" -#define SLYLANDRO_MED_MASK_PMAP_ANIM "ship.slylandro.graphics.probe.medium" -#define SLYLANDRO_MICON_MASK_PMAP_ANIM "ship.slylandro.meleeicons" -#define SLYLANDRO_SML_MASK_PMAP_ANIM "ship.slylandro.graphics.probe.small" diff --git a/sc2/src/uqm/ships/slylandr/imusicre.h b/sc2/src/uqm/ships/slylandr/imusicre.h deleted file mode 100644 index 3982dd857..000000000 --- a/sc2/src/uqm/ships/slylandr/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SLYLANDRO_VICTORY_SONG "ship.slylandro.ditty" diff --git a/sc2/src/uqm/ships/slylandr/isndres.h b/sc2/src/uqm/ships/slylandr/isndres.h deleted file mode 100644 index 886f3235a..000000000 --- a/sc2/src/uqm/ships/slylandr/isndres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SLYLANDRO_SHIP_SOUNDS "ship.slylandro.sounds" diff --git a/sc2/src/uqm/ships/slylandr/istrtab.h b/sc2/src/uqm/ships/slylandr/istrtab.h deleted file mode 100644 index 76556dec6..000000000 --- a/sc2/src/uqm/ships/slylandr/istrtab.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SLYLANDRO_RACE_STRINGS "ship.slylandro.text" diff --git a/sc2/src/uqm/ships/slylandr/resinst.h b/sc2/src/uqm/ships/slylandr/resinst.h index d5310a924..d7861c925 100644 --- a/sc2/src/uqm/ships/slylandr/resinst.h +++ b/sc2/src/uqm/ships/slylandr/resinst.h @@ -1,5 +1,11 @@ -#include "igfxres.h" -#include "istrtab.h" -#include "isndres.h" -#include "imusicre.h" +#define SLYLANDRO_BIG_MASK_PMAP_ANIM "ship.slylandro.graphics.probe.large" +#define SLYLANDRO_CAPTAIN_MASK_PMAP_ANIM "ship.slylandro.graphics.captain" +#define SLYLANDRO_ICON_MASK_PMAP_ANIM "ship.slylandro.icons" +#define SLYLANDRO_MED_MASK_PMAP_ANIM "ship.slylandro.graphics.probe.medium" +#define SLYLANDRO_MICON_MASK_PMAP_ANIM "ship.slylandro.meleeicons" +#define SLYLANDRO_SML_MASK_PMAP_ANIM "ship.slylandro.graphics.probe.small" +#define SLYLANDRO_RACE_STRINGS "ship.slylandro.text" +#define SLYLANDRO_SHIP_SOUNDS "ship.slylandro.sounds" +#define SLYLANDRO_VICTORY_SONG "ship.slylandro.ditty" + #include "icode.h" diff --git a/sc2/src/uqm/ships/slylandr/respkg.h b/sc2/src/uqm/ships/slylandr/respkg.h deleted file mode 100644 index 78a62391f..000000000 --- a/sc2/src/uqm/ships/slylandr/respkg.h +++ /dev/null @@ -1,6 +0,0 @@ -enum -{ - SLYLANDRO_CODE_PACKAGE = 1, - SLYLANDRO_PACKAGE -}; - diff --git a/sc2/src/uqm/ships/slylandr/restypes.h b/sc2/src/uqm/ships/slylandr/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/slylandr/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/slylandr/slylandr.res b/sc2/src/uqm/ships/slylandr/slylandr.res deleted file mode 100644 index e3a63e424..000000000 --- a/sc2/src/uqm/ships/slylandr/slylandr.res +++ /dev/null @@ -1,20 +0,0 @@ -INCLUDE ../star3do.typ - -PATH slylandr - -PACKAGE SLYLANDRO_CODE_PACKAGE slylandr.shp - CODE SLYLANDRO_CODE slylandr.cod - GFXRES SLYLANDRO_ICON_MASK_PMAP_ANIM slyicons.ani - GFXRES SLYLANDRO_MICON_MASK_PMAP_ANIM slymicon.ani - STRTAB SLYLANDRO_RACE_STRINGS slytext.txt - -PACKAGE SLYLANDRO_PACKAGE slylandr.shp - GFXRES SLYLANDRO_BIG_MASK_PMAP_ANIM slylandr.big - GFXRES SLYLANDRO_MED_MASK_PMAP_ANIM slylandr.med - GFXRES SLYLANDRO_SML_MASK_PMAP_ANIM slylandr.sml - - GFXRES SLYLANDRO_CAPTAIN_MASK_PMAP_ANIM slycap.ani - SNDRES SLYLANDRO_SHIP_SOUNDS slysound.snd - - MUSICRES SLYLANDRO_VICTORY_SONG slyditty.mod - diff --git a/sc2/src/uqm/ships/spathi/icode.h b/sc2/src/uqm/ships/spathi/icode.h index aa5f6ef27..f34800f90 100644 --- a/sc2/src/uqm/ships/spathi/icode.h +++ b/sc2/src/uqm/ships/spathi/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define SPATHI_CODE "ship.spathi.code" diff --git a/sc2/src/uqm/ships/spathi/igfxres.h b/sc2/src/uqm/ships/spathi/igfxres.h deleted file mode 100644 index 9f9181830..000000000 --- a/sc2/src/uqm/ships/spathi/igfxres.h +++ /dev/null @@ -1,16 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define DISCRIM_BIG_MASK_PMAP_ANIM "ship.spathi.graphics.butt.large" -#define DISCRIM_MED_MASK_PMAP_ANIM "ship.spathi.graphics.butt.medium" -#define DISCRIM_SML_MASK_PMAP_ANIM "ship.spathi.graphics.butt.small" -#define MISSILE_BIG_MASK_PMAP_ANIM "ship.spathi.graphics.missile.large" -#define MISSILE_MED_MASK_PMAP_ANIM "ship.spathi.graphics.missile.medium" -#define MISSILE_SML_MASK_PMAP_ANIM "ship.spathi.graphics.missile.small" -#define SPATHI_BIG_MASK_PMAP_ANIM "ship.spathi.graphics.eluder.large" -#define SPATHI_CAPTAIN_MASK_PMAP_ANIM "ship.spathi.graphics.captain" -#define SPATHI_ICON_MASK_PMAP_ANIM "ship.spathi.icons" -#define SPATHI_MED_MASK_PMAP_ANIM "ship.spathi.graphics.eluder.medium" -#define SPATHI_MICON_MASK_PMAP_ANIM "ship.spathi.meleeicons" -#define SPATHI_SML_MASK_PMAP_ANIM "ship.spathi.graphics.eluder.small" diff --git a/sc2/src/uqm/ships/spathi/imusicre.h b/sc2/src/uqm/ships/spathi/imusicre.h deleted file mode 100644 index c0397a76b..000000000 --- a/sc2/src/uqm/ships/spathi/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SPATHI_VICTORY_SONG "ship.spathi.ditty" diff --git a/sc2/src/uqm/ships/spathi/isndres.h b/sc2/src/uqm/ships/spathi/isndres.h deleted file mode 100644 index eb2de64a6..000000000 --- a/sc2/src/uqm/ships/spathi/isndres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SPATHI_SHIP_SOUNDS "ship.spathi.sounds" diff --git a/sc2/src/uqm/ships/spathi/istrtab.h b/sc2/src/uqm/ships/spathi/istrtab.h deleted file mode 100644 index ab20d61a3..000000000 --- a/sc2/src/uqm/ships/spathi/istrtab.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SPATHI_RACE_STRINGS "ship.spathi.text" diff --git a/sc2/src/uqm/ships/spathi/resinst.h b/sc2/src/uqm/ships/spathi/resinst.h index d5310a924..5a6bbb42a 100644 --- a/sc2/src/uqm/ships/spathi/resinst.h +++ b/sc2/src/uqm/ships/spathi/resinst.h @@ -1,5 +1,17 @@ -#include "igfxres.h" -#include "istrtab.h" -#include "isndres.h" -#include "imusicre.h" +#define DISCRIM_BIG_MASK_PMAP_ANIM "ship.spathi.graphics.butt.large" +#define DISCRIM_MED_MASK_PMAP_ANIM "ship.spathi.graphics.butt.medium" +#define DISCRIM_SML_MASK_PMAP_ANIM "ship.spathi.graphics.butt.small" +#define MISSILE_BIG_MASK_PMAP_ANIM "ship.spathi.graphics.missile.large" +#define MISSILE_MED_MASK_PMAP_ANIM "ship.spathi.graphics.missile.medium" +#define MISSILE_SML_MASK_PMAP_ANIM "ship.spathi.graphics.missile.small" +#define SPATHI_BIG_MASK_PMAP_ANIM "ship.spathi.graphics.eluder.large" +#define SPATHI_CAPTAIN_MASK_PMAP_ANIM "ship.spathi.graphics.captain" +#define SPATHI_ICON_MASK_PMAP_ANIM "ship.spathi.icons" +#define SPATHI_MED_MASK_PMAP_ANIM "ship.spathi.graphics.eluder.medium" +#define SPATHI_MICON_MASK_PMAP_ANIM "ship.spathi.meleeicons" +#define SPATHI_SML_MASK_PMAP_ANIM "ship.spathi.graphics.eluder.small" +#define SPATHI_RACE_STRINGS "ship.spathi.text" +#define SPATHI_SHIP_SOUNDS "ship.spathi.sounds" +#define SPATHI_VICTORY_SONG "ship.spathi.ditty" + #include "icode.h" diff --git a/sc2/src/uqm/ships/spathi/respkg.h b/sc2/src/uqm/ships/spathi/respkg.h deleted file mode 100644 index 4562a1fcb..000000000 --- a/sc2/src/uqm/ships/spathi/respkg.h +++ /dev/null @@ -1,6 +0,0 @@ -enum -{ - SPATHI_CODE_PACKAGE = 1, - SPATHI_PACKAGE -}; - diff --git a/sc2/src/uqm/ships/spathi/restypes.h b/sc2/src/uqm/ships/spathi/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/spathi/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/spathi/spathi.res b/sc2/src/uqm/ships/spathi/spathi.res deleted file mode 100644 index a62fe26f2..000000000 --- a/sc2/src/uqm/ships/spathi/spathi.res +++ /dev/null @@ -1,26 +0,0 @@ -INCLUDE ../star3do.typ - -PATH spathi - -PACKAGE SPATHI_CODE_PACKAGE spathi.shp - CODE SPATHI_CODE spathi.cod - GFXRES SPATHI_ICON_MASK_PMAP_ANIM spaicons.ani - GFXRES SPATHI_MICON_MASK_PMAP_ANIM spamicon.ani - STRTAB SPATHI_RACE_STRINGS spatext.txt - -PACKAGE SPATHI_PACKAGE spathi.shp - GFXRES SPATHI_BIG_MASK_PMAP_ANIM spathi.big - GFXRES SPATHI_MED_MASK_PMAP_ANIM spathi.med - GFXRES SPATHI_SML_MASK_PMAP_ANIM spathi.sml - GFXRES MISSILE_BIG_MASK_PMAP_ANIM missile.big - GFXRES MISSILE_MED_MASK_PMAP_ANIM missile.med - GFXRES MISSILE_SML_MASK_PMAP_ANIM missile.sml - GFXRES DISCRIM_BIG_MASK_PMAP_ANIM discrim.big - GFXRES DISCRIM_MED_MASK_PMAP_ANIM discrim.med - GFXRES DISCRIM_SML_MASK_PMAP_ANIM discrim.sml - - GFXRES SPATHI_CAPTAIN_MASK_PMAP_ANIM spacap.ani - SNDRES SPATHI_SHIP_SOUNDS spasound.snd - - MUSICRES SPATHI_VICTORY_SONG spaditty.mod - diff --git a/sc2/src/uqm/ships/supox/icode.h b/sc2/src/uqm/ships/supox/icode.h index d2f82f95f..cd87276b2 100644 --- a/sc2/src/uqm/ships/supox/icode.h +++ b/sc2/src/uqm/ships/supox/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define SUPOX_CODE "ship.supox.code" diff --git a/sc2/src/uqm/ships/supox/igfxres.h b/sc2/src/uqm/ships/supox/igfxres.h deleted file mode 100644 index 3d9e02f20..000000000 --- a/sc2/src/uqm/ships/supox/igfxres.h +++ /dev/null @@ -1,13 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define GOB_BIG_MASK_PMAP_ANIM "ship.supox.graphics.glob.large" -#define GOB_MED_MASK_PMAP_ANIM "ship.supox.graphics.glob.medium" -#define GOB_SML_MASK_PMAP_ANIM "ship.supox.graphics.glob.small" -#define SUPOX_BIG_MASK_PMAP_ANIM "ship.supox.graphics.blade.large" -#define SUPOX_CAPTAIN_MASK_PMAP_ANIM "ship.supox.graphics.captain" -#define SUPOX_ICON_MASK_PMAP_ANIM "ship.supox.icons" -#define SUPOX_MED_MASK_PMAP_ANIM "ship.supox.graphics.blade.medium" -#define SUPOX_MICON_MASK_PMAP_ANIM "ship.supox.meleeicons" -#define SUPOX_SML_MASK_PMAP_ANIM "ship.supox.graphics.blade.small" diff --git a/sc2/src/uqm/ships/supox/imusicre.h b/sc2/src/uqm/ships/supox/imusicre.h deleted file mode 100644 index 1f2d74994..000000000 --- a/sc2/src/uqm/ships/supox/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SUPOX_VICTORY_SONG "ship.supox.ditty" diff --git a/sc2/src/uqm/ships/supox/isndres.h b/sc2/src/uqm/ships/supox/isndres.h deleted file mode 100644 index 1872ab045..000000000 --- a/sc2/src/uqm/ships/supox/isndres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SUPOX_SHIP_SOUNDS "ship.supox.sounds" diff --git a/sc2/src/uqm/ships/supox/istrtab.h b/sc2/src/uqm/ships/supox/istrtab.h deleted file mode 100644 index 20b88b2cc..000000000 --- a/sc2/src/uqm/ships/supox/istrtab.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SUPOX_RACE_STRINGS "ship.supox.text" diff --git a/sc2/src/uqm/ships/supox/resinst.h b/sc2/src/uqm/ships/supox/resinst.h index d5310a924..e8e00a719 100644 --- a/sc2/src/uqm/ships/supox/resinst.h +++ b/sc2/src/uqm/ships/supox/resinst.h @@ -1,5 +1,14 @@ -#include "igfxres.h" -#include "istrtab.h" -#include "isndres.h" -#include "imusicre.h" +#define GOB_BIG_MASK_PMAP_ANIM "ship.supox.graphics.glob.large" +#define GOB_MED_MASK_PMAP_ANIM "ship.supox.graphics.glob.medium" +#define GOB_SML_MASK_PMAP_ANIM "ship.supox.graphics.glob.small" +#define SUPOX_BIG_MASK_PMAP_ANIM "ship.supox.graphics.blade.large" +#define SUPOX_CAPTAIN_MASK_PMAP_ANIM "ship.supox.graphics.captain" +#define SUPOX_ICON_MASK_PMAP_ANIM "ship.supox.icons" +#define SUPOX_MED_MASK_PMAP_ANIM "ship.supox.graphics.blade.medium" +#define SUPOX_MICON_MASK_PMAP_ANIM "ship.supox.meleeicons" +#define SUPOX_SML_MASK_PMAP_ANIM "ship.supox.graphics.blade.small" +#define SUPOX_RACE_STRINGS "ship.supox.text" +#define SUPOX_SHIP_SOUNDS "ship.supox.sounds" +#define SUPOX_VICTORY_SONG "ship.supox.ditty" + #include "icode.h" diff --git a/sc2/src/uqm/ships/supox/respkg.h b/sc2/src/uqm/ships/supox/respkg.h deleted file mode 100644 index 4857baa12..000000000 --- a/sc2/src/uqm/ships/supox/respkg.h +++ /dev/null @@ -1,6 +0,0 @@ -enum -{ - SUPOX_CODE_PACKAGE = 1, - SUPOX_PACKAGE -}; - diff --git a/sc2/src/uqm/ships/supox/restypes.h b/sc2/src/uqm/ships/supox/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/supox/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/supox/supox.res b/sc2/src/uqm/ships/supox/supox.res deleted file mode 100644 index 6b604b0e0..000000000 --- a/sc2/src/uqm/ships/supox/supox.res +++ /dev/null @@ -1,23 +0,0 @@ -INCLUDE ../star3do.typ - -PATH supox - -PACKAGE SUPOX_CODE_PACKAGE supox.shp - CODE SUPOX_CODE supox.cod - GFXRES SUPOX_ICON_MASK_PMAP_ANIM supicons.ani - GFXRES SUPOX_MICON_MASK_PMAP_ANIM supmicon.ani - STRTAB SUPOX_RACE_STRINGS suptext.txt - -PACKAGE SUPOX_PACKAGE supox.shp - GFXRES SUPOX_BIG_MASK_PMAP_ANIM supox.big - GFXRES SUPOX_MED_MASK_PMAP_ANIM supox.med - GFXRES SUPOX_SML_MASK_PMAP_ANIM supox.sml - GFXRES GOB_BIG_MASK_PMAP_ANIM gobbig.ani - GFXRES GOB_MED_MASK_PMAP_ANIM gobmed.ani - GFXRES GOB_SML_MASK_PMAP_ANIM gobsml.ani - - GFXRES SUPOX_CAPTAIN_MASK_PMAP_ANIM supcap.ani - SNDRES SUPOX_SHIP_SOUNDS supsound.snd - - MUSICRES SUPOX_VICTORY_SONG supditty.mod - diff --git a/sc2/src/uqm/ships/syreen/icode.h b/sc2/src/uqm/ships/syreen/icode.h index 66f3ca4c8..ce0635a58 100644 --- a/sc2/src/uqm/ships/syreen/icode.h +++ b/sc2/src/uqm/ships/syreen/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define SYREEN_CODE "ship.syreen.code" diff --git a/sc2/src/uqm/ships/syreen/igfxres.h b/sc2/src/uqm/ships/syreen/igfxres.h deleted file mode 100644 index 3da753b73..000000000 --- a/sc2/src/uqm/ships/syreen/igfxres.h +++ /dev/null @@ -1,13 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define DAGGER_BIG_MASK_PMAP_ANIM "ship.syreen.graphics.dagger.large" -#define DAGGER_MED_MASK_PMAP_ANIM "ship.syreen.graphics.dagger.medium" -#define DAGGER_SML_MASK_PMAP_ANIM "ship.syreen.graphics.dagger.small" -#define SYREEN_BIG_MASK_PMAP_ANIM "ship.syreen.graphics.penetrator.large" -#define SYREEN_CAPTAIN_MASK_PMAP_ANIM "ship.syreen.graphics.captain" -#define SYREEN_ICON_MASK_PMAP_ANIM "ship.syreen.icons" -#define SYREEN_MED_MASK_PMAP_ANIM "ship.syreen.graphics.penetrator.medium" -#define SYREEN_MICON_MASK_PMAP_ANIM "ship.syreen.meleeicons" -#define SYREEN_SML_MASK_PMAP_ANIM "ship.syreen.graphics.penetrator.small" diff --git a/sc2/src/uqm/ships/syreen/imusicre.h b/sc2/src/uqm/ships/syreen/imusicre.h deleted file mode 100644 index c81df28f5..000000000 --- a/sc2/src/uqm/ships/syreen/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SYREEN_VICTORY_SONG "ship.syreen.ditty" diff --git a/sc2/src/uqm/ships/syreen/isndres.h b/sc2/src/uqm/ships/syreen/isndres.h deleted file mode 100644 index b9a0d20ca..000000000 --- a/sc2/src/uqm/ships/syreen/isndres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SYREEN_SHIP_SOUNDS "ship.syreen.sounds" diff --git a/sc2/src/uqm/ships/syreen/istrtab.h b/sc2/src/uqm/ships/syreen/istrtab.h deleted file mode 100644 index 1683713a6..000000000 --- a/sc2/src/uqm/ships/syreen/istrtab.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SYREEN_RACE_STRINGS "ship.syreen.text" diff --git a/sc2/src/uqm/ships/syreen/resinst.h b/sc2/src/uqm/ships/syreen/resinst.h index d5310a924..dba48d7d6 100644 --- a/sc2/src/uqm/ships/syreen/resinst.h +++ b/sc2/src/uqm/ships/syreen/resinst.h @@ -1,5 +1,14 @@ -#include "igfxres.h" -#include "istrtab.h" -#include "isndres.h" -#include "imusicre.h" +#define DAGGER_BIG_MASK_PMAP_ANIM "ship.syreen.graphics.dagger.large" +#define DAGGER_MED_MASK_PMAP_ANIM "ship.syreen.graphics.dagger.medium" +#define DAGGER_SML_MASK_PMAP_ANIM "ship.syreen.graphics.dagger.small" +#define SYREEN_BIG_MASK_PMAP_ANIM "ship.syreen.graphics.penetrator.large" +#define SYREEN_CAPTAIN_MASK_PMAP_ANIM "ship.syreen.graphics.captain" +#define SYREEN_ICON_MASK_PMAP_ANIM "ship.syreen.icons" +#define SYREEN_MED_MASK_PMAP_ANIM "ship.syreen.graphics.penetrator.medium" +#define SYREEN_MICON_MASK_PMAP_ANIM "ship.syreen.meleeicons" +#define SYREEN_SML_MASK_PMAP_ANIM "ship.syreen.graphics.penetrator.small" +#define SYREEN_RACE_STRINGS "ship.syreen.text" +#define SYREEN_SHIP_SOUNDS "ship.syreen.sounds" +#define SYREEN_VICTORY_SONG "ship.syreen.ditty" + #include "icode.h" diff --git a/sc2/src/uqm/ships/syreen/respkg.h b/sc2/src/uqm/ships/syreen/respkg.h deleted file mode 100644 index fee31f463..000000000 --- a/sc2/src/uqm/ships/syreen/respkg.h +++ /dev/null @@ -1,6 +0,0 @@ -enum -{ - SYREEN_CODE_PACKAGE = 1, - SYREEN_PACKAGE -}; - diff --git a/sc2/src/uqm/ships/syreen/restypes.h b/sc2/src/uqm/ships/syreen/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/syreen/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/syreen/syreen.res b/sc2/src/uqm/ships/syreen/syreen.res deleted file mode 100644 index 7bec7f54b..000000000 --- a/sc2/src/uqm/ships/syreen/syreen.res +++ /dev/null @@ -1,23 +0,0 @@ -INCLUDE ../star3do.typ - -PATH syreen - -PACKAGE SYREEN_CODE_PACKAGE syreen.shp - CODE SYREEN_CODE syreen.cod - GFXRES SYREEN_ICON_MASK_PMAP_ANIM syricons.ani - GFXRES SYREEN_MICON_MASK_PMAP_ANIM syrmicon.ani - STRTAB SYREEN_RACE_STRINGS syrtext.txt - -PACKAGE SYREEN_PACKAGE syreen.shp - GFXRES SYREEN_BIG_MASK_PMAP_ANIM syreen.big - GFXRES SYREEN_MED_MASK_PMAP_ANIM syreen.med - GFXRES SYREEN_SML_MASK_PMAP_ANIM syreen.sml - GFXRES DAGGER_BIG_MASK_PMAP_ANIM dagger.big - GFXRES DAGGER_MED_MASK_PMAP_ANIM dagger.med - GFXRES DAGGER_SML_MASK_PMAP_ANIM dagger.sml - - GFXRES SYREEN_CAPTAIN_MASK_PMAP_ANIM syrcap.ani - SNDRES SYREEN_SHIP_SOUNDS syrsound.snd - - MUSICRES SYREEN_VICTORY_SONG syrditty.mod - diff --git a/sc2/src/uqm/ships/thradd/icode.h b/sc2/src/uqm/ships/thradd/icode.h index 070353a48..32046157d 100644 --- a/sc2/src/uqm/ships/thradd/icode.h +++ b/sc2/src/uqm/ships/thradd/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define THRADDASH_CODE "ship.thraddash.code" diff --git a/sc2/src/uqm/ships/thradd/igfxres.h b/sc2/src/uqm/ships/thradd/igfxres.h deleted file mode 100644 index fe8f2f8ea..000000000 --- a/sc2/src/uqm/ships/thradd/igfxres.h +++ /dev/null @@ -1,16 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define HORN_BIG_MASK_PMAP_ANIM "ship.thraddash.graphics.horn.large" -#define HORN_MED_MASK_PMAP_ANIM "ship.thraddash.graphics.horn.medium" -#define HORN_SML_MASK_PMAP_ANIM "ship.thraddash.graphics.horn.small" -#define NAPALM_BIG_MASK_PMAP_ANIM "ship.thraddash.graphics.napalm.large" -#define NAPALM_MED_MASK_PMAP_ANIM "ship.thraddash.graphics.napalm.medium" -#define NAPALM_SML_MASK_PMAP_ANIM "ship.thraddash.graphics.napalm.small" -#define THRADDASH_BIG_MASK_PMAP_ANIM "ship.thraddash.graphics.torch.large" -#define THRADDASH_CAPTAIN_MASK_PMAP_ANIM "ship.thraddash.graphics.captain" -#define THRADDASH_ICON_MASK_PMAP_ANIM "ship.thraddash.icons" -#define THRADDASH_MED_MASK_PMAP_ANIM "ship.thraddash.graphics.torch.medium" -#define THRADDASH_MICON_MASK_PMAP_ANIM "ship.thraddash.meleeicons" -#define THRADDASH_SML_MASK_PMAP_ANIM "ship.thraddash.graphics.torch.small" diff --git a/sc2/src/uqm/ships/thradd/imusicre.h b/sc2/src/uqm/ships/thradd/imusicre.h deleted file mode 100644 index 16c156c43..000000000 --- a/sc2/src/uqm/ships/thradd/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define THRADDASH_VICTORY_SONG "ship.thraddash.ditty" diff --git a/sc2/src/uqm/ships/thradd/isndres.h b/sc2/src/uqm/ships/thradd/isndres.h deleted file mode 100644 index 05a7bc93a..000000000 --- a/sc2/src/uqm/ships/thradd/isndres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define THRADDASH_SHIP_SOUNDS "ship.thraddash.sounds" diff --git a/sc2/src/uqm/ships/thradd/istrtab.h b/sc2/src/uqm/ships/thradd/istrtab.h deleted file mode 100644 index 9dea1b4bb..000000000 --- a/sc2/src/uqm/ships/thradd/istrtab.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define THRADDASH_RACE_STRINGS "ship.thraddash.text" diff --git a/sc2/src/uqm/ships/thradd/resinst.h b/sc2/src/uqm/ships/thradd/resinst.h index d5310a924..ef49cd8e0 100644 --- a/sc2/src/uqm/ships/thradd/resinst.h +++ b/sc2/src/uqm/ships/thradd/resinst.h @@ -1,5 +1,17 @@ -#include "igfxres.h" -#include "istrtab.h" -#include "isndres.h" -#include "imusicre.h" +#define HORN_BIG_MASK_PMAP_ANIM "ship.thraddash.graphics.horn.large" +#define HORN_MED_MASK_PMAP_ANIM "ship.thraddash.graphics.horn.medium" +#define HORN_SML_MASK_PMAP_ANIM "ship.thraddash.graphics.horn.small" +#define NAPALM_BIG_MASK_PMAP_ANIM "ship.thraddash.graphics.napalm.large" +#define NAPALM_MED_MASK_PMAP_ANIM "ship.thraddash.graphics.napalm.medium" +#define NAPALM_SML_MASK_PMAP_ANIM "ship.thraddash.graphics.napalm.small" +#define THRADDASH_BIG_MASK_PMAP_ANIM "ship.thraddash.graphics.torch.large" +#define THRADDASH_CAPTAIN_MASK_PMAP_ANIM "ship.thraddash.graphics.captain" +#define THRADDASH_ICON_MASK_PMAP_ANIM "ship.thraddash.icons" +#define THRADDASH_MED_MASK_PMAP_ANIM "ship.thraddash.graphics.torch.medium" +#define THRADDASH_MICON_MASK_PMAP_ANIM "ship.thraddash.meleeicons" +#define THRADDASH_SML_MASK_PMAP_ANIM "ship.thraddash.graphics.torch.small" +#define THRADDASH_RACE_STRINGS "ship.thraddash.text" +#define THRADDASH_SHIP_SOUNDS "ship.thraddash.sounds" +#define THRADDASH_VICTORY_SONG "ship.thraddash.ditty" + #include "icode.h" diff --git a/sc2/src/uqm/ships/thradd/respkg.h b/sc2/src/uqm/ships/thradd/respkg.h deleted file mode 100644 index 893695b12..000000000 --- a/sc2/src/uqm/ships/thradd/respkg.h +++ /dev/null @@ -1,6 +0,0 @@ -enum -{ - THRADDASH_CODE_PACKAGE = 1, - THRADDASH_PACKAGE -}; - diff --git a/sc2/src/uqm/ships/thradd/restypes.h b/sc2/src/uqm/ships/thradd/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/thradd/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/thradd/thradd.res b/sc2/src/uqm/ships/thradd/thradd.res deleted file mode 100644 index e723ccf45..000000000 --- a/sc2/src/uqm/ships/thradd/thradd.res +++ /dev/null @@ -1,26 +0,0 @@ -INCLUDE ../star3do.typ - -PATH thradd - -PACKAGE THRADDASH_CODE_PACKAGE thradd.shp - CODE THRADDASH_CODE thradd.cod - GFXRES THRADDASH_ICON_MASK_PMAP_ANIM thricons.ani - GFXRES THRADDASH_MICON_MASK_PMAP_ANIM thrmicon.ani - STRTAB THRADDASH_RACE_STRINGS thrtext.txt - -PACKAGE THRADDASH_PACKAGE thradd.shp - GFXRES THRADDASH_BIG_MASK_PMAP_ANIM thradd.big - GFXRES THRADDASH_MED_MASK_PMAP_ANIM thradd.med - GFXRES THRADDASH_SML_MASK_PMAP_ANIM thradd.sml - GFXRES HORN_BIG_MASK_PMAP_ANIM horbig.ani - GFXRES HORN_MED_MASK_PMAP_ANIM hormed.ani - GFXRES HORN_SML_MASK_PMAP_ANIM horsml.ani - GFXRES NAPALM_BIG_MASK_PMAP_ANIM napbig.ani - GFXRES NAPALM_MED_MASK_PMAP_ANIM napmed.ani - GFXRES NAPALM_SML_MASK_PMAP_ANIM napsml.ani - - GFXRES THRADDASH_CAPTAIN_MASK_PMAP_ANIM thrcap.ani - SNDRES THRADDASH_SHIP_SOUNDS thrsound.snd - - MUSICRES THRADDASH_VICTORY_SONG thrditty.mod - diff --git a/sc2/src/uqm/ships/umgah/icode.h b/sc2/src/uqm/ships/umgah/icode.h index 103f5d28f..c1dce3a7f 100644 --- a/sc2/src/uqm/ships/umgah/icode.h +++ b/sc2/src/uqm/ships/umgah/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define UMGAH_CODE "ship.umgah.code" diff --git a/sc2/src/uqm/ships/umgah/igfxres.h b/sc2/src/uqm/ships/umgah/igfxres.h deleted file mode 100644 index 246ed4ff7..000000000 --- a/sc2/src/uqm/ships/umgah/igfxres.h +++ /dev/null @@ -1,14 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define CONE_BIG_MASK_ANIM "ship.umgah.graphics.cone.large" -#define CONE_MED_MASK_ANIM "ship.umgah.graphics.cone.medium" -#define CONE_SML_MASK_ANIM "ship.umgah.graphics.cone.small" -#define SPRITZ_MASK_PMAP_ANIM "ship.umgah.graphics.spritz" -#define UMGAH_BIG_MASK_PMAP_ANIM "ship.umgah.graphics.drone.large" -#define UMGAH_CAPTAIN_MASK_PMAP_ANIM "ship.umgah.graphics.captain" -#define UMGAH_ICON_MASK_PMAP_ANIM "ship.umgah.icons" -#define UMGAH_MED_MASK_PMAP_ANIM "ship.umgah.graphics.drone.medium" -#define UMGAH_MICON_MASK_PMAP_ANIM "ship.umgah.meleeicons" -#define UMGAH_SML_MASK_PMAP_ANIM "ship.umgah.graphics.drone.small" diff --git a/sc2/src/uqm/ships/umgah/imusicre.h b/sc2/src/uqm/ships/umgah/imusicre.h deleted file mode 100644 index a06c7cae7..000000000 --- a/sc2/src/uqm/ships/umgah/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define UMGAH_VICTORY_SONG "ship.umgah.ditty" diff --git a/sc2/src/uqm/ships/umgah/isndres.h b/sc2/src/uqm/ships/umgah/isndres.h deleted file mode 100644 index 164f6cc6d..000000000 --- a/sc2/src/uqm/ships/umgah/isndres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define UMGAH_SHIP_SOUNDS "ship.umgah.sounds" diff --git a/sc2/src/uqm/ships/umgah/istrtab.h b/sc2/src/uqm/ships/umgah/istrtab.h deleted file mode 100644 index 7bb2b6625..000000000 --- a/sc2/src/uqm/ships/umgah/istrtab.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define UMGAH_RACE_STRINGS "ship.umgah.text" diff --git a/sc2/src/uqm/ships/umgah/resinst.h b/sc2/src/uqm/ships/umgah/resinst.h index d5310a924..333ffc0fa 100644 --- a/sc2/src/uqm/ships/umgah/resinst.h +++ b/sc2/src/uqm/ships/umgah/resinst.h @@ -1,5 +1,15 @@ -#include "igfxres.h" -#include "istrtab.h" -#include "isndres.h" -#include "imusicre.h" +#define CONE_BIG_MASK_ANIM "ship.umgah.graphics.cone.large" +#define CONE_MED_MASK_ANIM "ship.umgah.graphics.cone.medium" +#define CONE_SML_MASK_ANIM "ship.umgah.graphics.cone.small" +#define SPRITZ_MASK_PMAP_ANIM "ship.umgah.graphics.spritz" +#define UMGAH_BIG_MASK_PMAP_ANIM "ship.umgah.graphics.drone.large" +#define UMGAH_CAPTAIN_MASK_PMAP_ANIM "ship.umgah.graphics.captain" +#define UMGAH_ICON_MASK_PMAP_ANIM "ship.umgah.icons" +#define UMGAH_MED_MASK_PMAP_ANIM "ship.umgah.graphics.drone.medium" +#define UMGAH_MICON_MASK_PMAP_ANIM "ship.umgah.meleeicons" +#define UMGAH_SML_MASK_PMAP_ANIM "ship.umgah.graphics.drone.small" +#define UMGAH_RACE_STRINGS "ship.umgah.text" +#define UMGAH_SHIP_SOUNDS "ship.umgah.sounds" +#define UMGAH_VICTORY_SONG "ship.umgah.ditty" + #include "icode.h" diff --git a/sc2/src/uqm/ships/umgah/respkg.h b/sc2/src/uqm/ships/umgah/respkg.h deleted file mode 100644 index 8fc5f3fac..000000000 --- a/sc2/src/uqm/ships/umgah/respkg.h +++ /dev/null @@ -1,6 +0,0 @@ -enum -{ - UMGAH_CODE_PACKAGE = 1, - UMGAH_PACKAGE -}; - diff --git a/sc2/src/uqm/ships/umgah/restypes.h b/sc2/src/uqm/ships/umgah/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/umgah/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/umgah/umgah.res b/sc2/src/uqm/ships/umgah/umgah.res deleted file mode 100644 index 56570bad7..000000000 --- a/sc2/src/uqm/ships/umgah/umgah.res +++ /dev/null @@ -1,24 +0,0 @@ -INCLUDE ../star3do.typ - -PATH umgah - -PACKAGE UMGAH_CODE_PACKAGE umgah.shp - CODE UMGAH_CODE umgah.cod - GFXRES UMGAH_ICON_MASK_PMAP_ANIM umgicons.ani - GFXRES UMGAH_MICON_MASK_PMAP_ANIM umgmicon.ani - STRTAB UMGAH_RACE_STRINGS umgtext.txt - -PACKAGE UMGAH_PACKAGE umgah.shp - GFXRES UMGAH_BIG_MASK_PMAP_ANIM umgah.big - GFXRES UMGAH_MED_MASK_PMAP_ANIM umgah.med - GFXRES UMGAH_SML_MASK_PMAP_ANIM umgah.sml - GFXRES SPRITZ_MASK_PMAP_ANIM spritz.ani - GFXRES CONE_BIG_MASK_ANIM cone.big - GFXRES CONE_MED_MASK_ANIM cone.med - GFXRES CONE_SML_MASK_ANIM cone.sml - - GFXRES UMGAH_CAPTAIN_MASK_PMAP_ANIM umgcap.ani - SNDRES UMGAH_SHIP_SOUNDS umgsound.snd - - MUSICRES UMGAH_VICTORY_SONG umgditty.mod - diff --git a/sc2/src/uqm/ships/urquan/icode.h b/sc2/src/uqm/ships/urquan/icode.h index b26e84a09..7a17467b5 100644 --- a/sc2/src/uqm/ships/urquan/icode.h +++ b/sc2/src/uqm/ships/urquan/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define URQUAN_CODE "ship.urquan.code" diff --git a/sc2/src/uqm/ships/urquan/igfxres.h b/sc2/src/uqm/ships/urquan/igfxres.h deleted file mode 100644 index 930b0fc78..000000000 --- a/sc2/src/uqm/ships/urquan/igfxres.h +++ /dev/null @@ -1,16 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define FIGHTER_BIG_MASK_PMAP_ANIM "ship.urquan.graphics.fighter.large" -#define FIGHTER_MED_MASK_PMAP_ANIM "ship.urquan.graphics.fighter.medium" -#define FIGHTER_SML_MASK_PMAP_ANIM "ship.urquan.graphics.fighter.small" -#define FUSION_BIG_MASK_PMAP_ANIM "ship.urquan.graphics.fusion.large" -#define FUSION_MED_MASK_PMAP_ANIM "ship.urquan.graphics.fusion.medium" -#define FUSION_SML_MASK_PMAP_ANIM "ship.urquan.graphics.fusion.small" -#define URQUAN_BIG_MASK_PMAP_ANIM "ship.urquan.graphics.dreadnought.large" -#define URQUAN_CAPTAIN_MASK_PMAP_ANIM "ship.urquan.graphics.captain" -#define URQUAN_ICON_MASK_PMAP_ANIM "ship.urquan.icons" -#define URQUAN_MED_MASK_PMAP_ANIM "ship.urquan.graphics.dreadnought.medium" -#define URQUAN_MICON_MASK_PMAP_ANIM "ship.urquan.meleeicons" -#define URQUAN_SML_MASK_PMAP_ANIM "ship.urquan.graphics.dreadnought.small" diff --git a/sc2/src/uqm/ships/urquan/imusicre.h b/sc2/src/uqm/ships/urquan/imusicre.h deleted file mode 100644 index 254ccf06c..000000000 --- a/sc2/src/uqm/ships/urquan/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define URQUAN_VICTORY_SONG "ship.urquan.ditty" diff --git a/sc2/src/uqm/ships/urquan/isndres.h b/sc2/src/uqm/ships/urquan/isndres.h deleted file mode 100644 index 6610fce1f..000000000 --- a/sc2/src/uqm/ships/urquan/isndres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define URQUAN_SHIP_SOUNDS "ship.urquan.sounds" diff --git a/sc2/src/uqm/ships/urquan/istrtab.h b/sc2/src/uqm/ships/urquan/istrtab.h deleted file mode 100644 index 20473a1bc..000000000 --- a/sc2/src/uqm/ships/urquan/istrtab.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define URQUAN_RACE_STRINGS "ship.urquan.text" diff --git a/sc2/src/uqm/ships/urquan/resinst.h b/sc2/src/uqm/ships/urquan/resinst.h index d5310a924..1c9b36d42 100644 --- a/sc2/src/uqm/ships/urquan/resinst.h +++ b/sc2/src/uqm/ships/urquan/resinst.h @@ -1,5 +1,17 @@ -#include "igfxres.h" -#include "istrtab.h" -#include "isndres.h" -#include "imusicre.h" +#define FIGHTER_BIG_MASK_PMAP_ANIM "ship.urquan.graphics.fighter.large" +#define FIGHTER_MED_MASK_PMAP_ANIM "ship.urquan.graphics.fighter.medium" +#define FIGHTER_SML_MASK_PMAP_ANIM "ship.urquan.graphics.fighter.small" +#define FUSION_BIG_MASK_PMAP_ANIM "ship.urquan.graphics.fusion.large" +#define FUSION_MED_MASK_PMAP_ANIM "ship.urquan.graphics.fusion.medium" +#define FUSION_SML_MASK_PMAP_ANIM "ship.urquan.graphics.fusion.small" +#define URQUAN_BIG_MASK_PMAP_ANIM "ship.urquan.graphics.dreadnought.large" +#define URQUAN_CAPTAIN_MASK_PMAP_ANIM "ship.urquan.graphics.captain" +#define URQUAN_ICON_MASK_PMAP_ANIM "ship.urquan.icons" +#define URQUAN_MED_MASK_PMAP_ANIM "ship.urquan.graphics.dreadnought.medium" +#define URQUAN_MICON_MASK_PMAP_ANIM "ship.urquan.meleeicons" +#define URQUAN_SML_MASK_PMAP_ANIM "ship.urquan.graphics.dreadnought.small" +#define URQUAN_RACE_STRINGS "ship.urquan.text" +#define URQUAN_SHIP_SOUNDS "ship.urquan.sounds" +#define URQUAN_VICTORY_SONG "ship.urquan.ditty" + #include "icode.h" diff --git a/sc2/src/uqm/ships/urquan/respkg.h b/sc2/src/uqm/ships/urquan/respkg.h deleted file mode 100644 index c4d407127..000000000 --- a/sc2/src/uqm/ships/urquan/respkg.h +++ /dev/null @@ -1,6 +0,0 @@ -enum -{ - URQUAN_CODE_PACKAGE = 1, - URQUAN_PACKAGE -}; - diff --git a/sc2/src/uqm/ships/urquan/restypes.h b/sc2/src/uqm/ships/urquan/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/urquan/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/urquan/urquan.res b/sc2/src/uqm/ships/urquan/urquan.res deleted file mode 100644 index 5fc65dc65..000000000 --- a/sc2/src/uqm/ships/urquan/urquan.res +++ /dev/null @@ -1,26 +0,0 @@ -INCLUDE ../star3do.typ - -PATH urquan - -PACKAGE URQUAN_CODE_PACKAGE urquan.shp - CODE URQUAN_CODE urquan.cod - GFXRES URQUAN_ICON_MASK_PMAP_ANIM urqicons.ani - GFXRES URQUAN_MICON_MASK_PMAP_ANIM urqmicon.ani - STRTAB URQUAN_RACE_STRINGS urqtext.txt - -PACKAGE URQUAN_PACKAGE urquan.shp - GFXRES URQUAN_BIG_MASK_PMAP_ANIM urquan.big - GFXRES URQUAN_MED_MASK_PMAP_ANIM urquan.med - GFXRES URQUAN_SML_MASK_PMAP_ANIM urquan.sml - GFXRES FUSION_BIG_MASK_PMAP_ANIM fusion.big - GFXRES FUSION_MED_MASK_PMAP_ANIM fusion.med - GFXRES FUSION_SML_MASK_PMAP_ANIM fusion.sml - GFXRES FIGHTER_BIG_MASK_PMAP_ANIM fight.big - GFXRES FIGHTER_MED_MASK_PMAP_ANIM fight.med - GFXRES FIGHTER_SML_MASK_PMAP_ANIM fight.sml - - GFXRES URQUAN_CAPTAIN_MASK_PMAP_ANIM urqcap.ani - SNDRES URQUAN_SHIP_SOUNDS urqsound.snd - - MUSICRES URQUAN_VICTORY_SONG urqditty.mod - diff --git a/sc2/src/uqm/ships/utwig/icode.h b/sc2/src/uqm/ships/utwig/icode.h index 4762b8905..4d46c551b 100644 --- a/sc2/src/uqm/ships/utwig/icode.h +++ b/sc2/src/uqm/ships/utwig/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define UTWIG_CODE "ship.utwig.code" diff --git a/sc2/src/uqm/ships/utwig/igfxres.h b/sc2/src/uqm/ships/utwig/igfxres.h deleted file mode 100644 index 3d2a522c1..000000000 --- a/sc2/src/uqm/ships/utwig/igfxres.h +++ /dev/null @@ -1,13 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define LANCE_BIG_MASK_PMAP_ANIM "ship.utwig.graphics.lance.large" -#define LANCE_MED_MASK_PMAP_ANIM "ship.utwig.graphics.lance.medium" -#define LANCE_SML_MASK_PMAP_ANIM "ship.utwig.graphics.lance.small" -#define UTWIG_BIG_MASK_PMAP_ANIM "ship.utwig.graphics.jugger.large" -#define UTWIG_CAPTAIN_MASK_PMAP_ANIM "ship.utwig.graphics.captain" -#define UTWIG_ICON_MASK_PMAP_ANIM "ship.utwig.icons" -#define UTWIG_MED_MASK_PMAP_ANIM "ship.utwig.graphics.jugger.medium" -#define UTWIG_MICON_MASK_PMAP_ANIM "ship.utwig.meleeicons" -#define UTWIG_SML_MASK_PMAP_ANIM "ship.utwig.graphics.jugger.small" diff --git a/sc2/src/uqm/ships/utwig/imusicre.h b/sc2/src/uqm/ships/utwig/imusicre.h deleted file mode 100644 index d5df6a45a..000000000 --- a/sc2/src/uqm/ships/utwig/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define UTWIG_VICTORY_SONG "ship.utwig.ditty" diff --git a/sc2/src/uqm/ships/utwig/isndres.h b/sc2/src/uqm/ships/utwig/isndres.h deleted file mode 100644 index 649a31e67..000000000 --- a/sc2/src/uqm/ships/utwig/isndres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define UTWIG_SHIP_SOUNDS "ship.utwig.sounds" diff --git a/sc2/src/uqm/ships/utwig/istrtab.h b/sc2/src/uqm/ships/utwig/istrtab.h deleted file mode 100644 index c2b6fbb1c..000000000 --- a/sc2/src/uqm/ships/utwig/istrtab.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define UTWIG_RACE_STRINGS "ship.utwig.text" diff --git a/sc2/src/uqm/ships/utwig/resinst.h b/sc2/src/uqm/ships/utwig/resinst.h index d5310a924..1fbd4451b 100644 --- a/sc2/src/uqm/ships/utwig/resinst.h +++ b/sc2/src/uqm/ships/utwig/resinst.h @@ -1,5 +1,14 @@ -#include "igfxres.h" -#include "istrtab.h" -#include "isndres.h" -#include "imusicre.h" +#define LANCE_BIG_MASK_PMAP_ANIM "ship.utwig.graphics.lance.large" +#define LANCE_MED_MASK_PMAP_ANIM "ship.utwig.graphics.lance.medium" +#define LANCE_SML_MASK_PMAP_ANIM "ship.utwig.graphics.lance.small" +#define UTWIG_BIG_MASK_PMAP_ANIM "ship.utwig.graphics.jugger.large" +#define UTWIG_CAPTAIN_MASK_PMAP_ANIM "ship.utwig.graphics.captain" +#define UTWIG_ICON_MASK_PMAP_ANIM "ship.utwig.icons" +#define UTWIG_MED_MASK_PMAP_ANIM "ship.utwig.graphics.jugger.medium" +#define UTWIG_MICON_MASK_PMAP_ANIM "ship.utwig.meleeicons" +#define UTWIG_SML_MASK_PMAP_ANIM "ship.utwig.graphics.jugger.small" +#define UTWIG_RACE_STRINGS "ship.utwig.text" +#define UTWIG_SHIP_SOUNDS "ship.utwig.sounds" +#define UTWIG_VICTORY_SONG "ship.utwig.ditty" + #include "icode.h" diff --git a/sc2/src/uqm/ships/utwig/respkg.h b/sc2/src/uqm/ships/utwig/respkg.h deleted file mode 100644 index aac57f2cf..000000000 --- a/sc2/src/uqm/ships/utwig/respkg.h +++ /dev/null @@ -1,6 +0,0 @@ -enum -{ - UTWIG_CODE_PACKAGE = 1, - UTWIG_PACKAGE -}; - diff --git a/sc2/src/uqm/ships/utwig/restypes.h b/sc2/src/uqm/ships/utwig/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/utwig/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/utwig/utwig.res b/sc2/src/uqm/ships/utwig/utwig.res deleted file mode 100644 index 359b1ed15..000000000 --- a/sc2/src/uqm/ships/utwig/utwig.res +++ /dev/null @@ -1,23 +0,0 @@ -INCLUDE ../star3do.typ - -PATH utwig - -PACKAGE UTWIG_CODE_PACKAGE utwig.shp - CODE UTWIG_CODE utwig.cod - GFXRES UTWIG_ICON_MASK_PMAP_ANIM utwicons.ani - GFXRES UTWIG_MICON_MASK_PMAP_ANIM utwmicon.ani - STRTAB UTWIG_RACE_STRINGS utwtext.txt - -PACKAGE UTWIG_PACKAGE utwig.shp - GFXRES UTWIG_BIG_MASK_PMAP_ANIM utwig.big - GFXRES UTWIG_MED_MASK_PMAP_ANIM utwig.med - GFXRES UTWIG_SML_MASK_PMAP_ANIM utwig.sml - GFXRES LANCE_BIG_MASK_PMAP_ANIM lanbig.ani - GFXRES LANCE_MED_MASK_PMAP_ANIM lanmed.ani - GFXRES LANCE_SML_MASK_PMAP_ANIM lansml.ani - - GFXRES UTWIG_CAPTAIN_MASK_PMAP_ANIM utwcap.ani - SNDRES UTWIG_SHIP_SOUNDS utwsound.snd - - MUSICRES UTWIG_VICTORY_SONG utwditty.mod - diff --git a/sc2/src/uqm/ships/vux/icode.h b/sc2/src/uqm/ships/vux/icode.h index 0bd37d7d8..78f42e1b5 100644 --- a/sc2/src/uqm/ships/vux/icode.h +++ b/sc2/src/uqm/ships/vux/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define VUX_CODE "ship.vux.code" diff --git a/sc2/src/uqm/ships/vux/igfxres.h b/sc2/src/uqm/ships/vux/igfxres.h deleted file mode 100644 index 2f3a5b408..000000000 --- a/sc2/src/uqm/ships/vux/igfxres.h +++ /dev/null @@ -1,14 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define LIMPETS_BIG_MASK_PMAP_ANIM "ship.vux.graphics.limpets.large" -#define LIMPETS_MED_MASK_PMAP_ANIM "ship.vux.graphics.limpets.medium" -#define LIMPETS_SML_MASK_PMAP_ANIM "ship.vux.graphics.limpets.small" -#define SLIME_MASK_PMAP_ANIM "ship.vux.graphics.slime" -#define VUX_BIG_MASK_PMAP_ANIM "ship.vux.graphics.intruder.large" -#define VUX_CAPTAIN_MASK_PMAP_ANIM "ship.vux.graphics.captain" -#define VUX_ICON_MASK_PMAP_ANIM "ship.vux.icons" -#define VUX_MED_MASK_PMAP_ANIM "ship.vux.graphics.intruder.medium" -#define VUX_MICON_MASK_PMAP_ANIM "ship.vux.meleeicons" -#define VUX_SML_MASK_PMAP_ANIM "ship.vux.graphics.intruder.small" diff --git a/sc2/src/uqm/ships/vux/imusicre.h b/sc2/src/uqm/ships/vux/imusicre.h deleted file mode 100644 index 9b7e7fe3d..000000000 --- a/sc2/src/uqm/ships/vux/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define VUX_VICTORY_SONG "ship.vux.ditty" diff --git a/sc2/src/uqm/ships/vux/isndres.h b/sc2/src/uqm/ships/vux/isndres.h deleted file mode 100644 index 5101cac69..000000000 --- a/sc2/src/uqm/ships/vux/isndres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define VUX_SHIP_SOUNDS "ship.vux.sounds" diff --git a/sc2/src/uqm/ships/vux/istrtab.h b/sc2/src/uqm/ships/vux/istrtab.h deleted file mode 100644 index a181b0bb5..000000000 --- a/sc2/src/uqm/ships/vux/istrtab.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define VUX_RACE_STRINGS "ship.vux.text" diff --git a/sc2/src/uqm/ships/vux/resinst.h b/sc2/src/uqm/ships/vux/resinst.h index d5310a924..f4d718081 100644 --- a/sc2/src/uqm/ships/vux/resinst.h +++ b/sc2/src/uqm/ships/vux/resinst.h @@ -1,5 +1,15 @@ -#include "igfxres.h" -#include "istrtab.h" -#include "isndres.h" -#include "imusicre.h" +#define LIMPETS_BIG_MASK_PMAP_ANIM "ship.vux.graphics.limpets.large" +#define LIMPETS_MED_MASK_PMAP_ANIM "ship.vux.graphics.limpets.medium" +#define LIMPETS_SML_MASK_PMAP_ANIM "ship.vux.graphics.limpets.small" +#define SLIME_MASK_PMAP_ANIM "ship.vux.graphics.slime" +#define VUX_BIG_MASK_PMAP_ANIM "ship.vux.graphics.intruder.large" +#define VUX_CAPTAIN_MASK_PMAP_ANIM "ship.vux.graphics.captain" +#define VUX_ICON_MASK_PMAP_ANIM "ship.vux.icons" +#define VUX_MED_MASK_PMAP_ANIM "ship.vux.graphics.intruder.medium" +#define VUX_MICON_MASK_PMAP_ANIM "ship.vux.meleeicons" +#define VUX_SML_MASK_PMAP_ANIM "ship.vux.graphics.intruder.small" +#define VUX_RACE_STRINGS "ship.vux.text" +#define VUX_SHIP_SOUNDS "ship.vux.sounds" +#define VUX_VICTORY_SONG "ship.vux.ditty" + #include "icode.h" diff --git a/sc2/src/uqm/ships/vux/respkg.h b/sc2/src/uqm/ships/vux/respkg.h deleted file mode 100644 index a89d118dd..000000000 --- a/sc2/src/uqm/ships/vux/respkg.h +++ /dev/null @@ -1,6 +0,0 @@ -enum -{ - VUX_CODE_PACKAGE = 1, - VUX_PACKAGE -}; - diff --git a/sc2/src/uqm/ships/vux/restypes.h b/sc2/src/uqm/ships/vux/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/vux/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/vux/vux.res b/sc2/src/uqm/ships/vux/vux.res deleted file mode 100644 index 9a8bd1a6b..000000000 --- a/sc2/src/uqm/ships/vux/vux.res +++ /dev/null @@ -1,24 +0,0 @@ -INCLUDE ../star3do.typ - -PATH vux - -PACKAGE VUX_CODE_PACKAGE vux.shp - CODE VUX_CODE vux.cod - GFXRES VUX_ICON_MASK_PMAP_ANIM vuxicons.ani - GFXRES VUX_MICON_MASK_PMAP_ANIM vuxmicon.ani - STRTAB VUX_RACE_STRINGS vuxtext.txt - -PACKAGE VUX_PACKAGE vux.shp - GFXRES VUX_BIG_MASK_PMAP_ANIM vux.big - GFXRES VUX_MED_MASK_PMAP_ANIM vux.med - GFXRES VUX_SML_MASK_PMAP_ANIM vux.sml - GFXRES LIMPETS_BIG_MASK_PMAP_ANIM limpets.big - GFXRES LIMPETS_MED_MASK_PMAP_ANIM limpets.med - GFXRES LIMPETS_SML_MASK_PMAP_ANIM limpets.sml - GFXRES SLIME_MASK_PMAP_ANIM slime.ani - - GFXRES VUX_CAPTAIN_MASK_PMAP_ANIM vuxcap.ani - SNDRES VUX_SHIP_SOUNDS vuxsound.snd - - MUSICRES VUX_VICTORY_SONG vuxditty.mod - diff --git a/sc2/src/uqm/ships/yehat/icode.h b/sc2/src/uqm/ships/yehat/icode.h index 81cac0eb5..26a732dab 100644 --- a/sc2/src/uqm/ships/yehat/icode.h +++ b/sc2/src/uqm/ships/yehat/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define YEHAT_CODE "ship.yehat.code" diff --git a/sc2/src/uqm/ships/yehat/igfxres.h b/sc2/src/uqm/ships/yehat/igfxres.h deleted file mode 100644 index d913a2a59..000000000 --- a/sc2/src/uqm/ships/yehat/igfxres.h +++ /dev/null @@ -1,16 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SHIELD_BIG_MASK_ANIM "ship.yehat.graphics.shield.large" -#define SHIELD_MED_MASK_ANIM "ship.yehat.graphics.shield.medium" -#define SHIELD_SML_MASK_ANIM "ship.yehat.graphics.shield.small" -#define YEHAT_BIG_MASK_PMAP_ANIM "ship.yehat.graphics.terminator.large" -#define YEHAT_CANNON_BIG_MASK_PMAP_ANIM "ship.yehat.graphics.missile.large" -#define YEHAT_CANNON_MED_MASK_PMAP_ANIM "ship.yehat.graphics.missile.medium" -#define YEHAT_CANNON_SML_MASK_PMAP_ANIM "ship.yehat.graphics.missile.small" -#define YEHAT_CAPTAIN_MASK_PMAP_ANIM "ship.yehat.graphics.captain" -#define YEHAT_ICON_MASK_PMAP_ANIM "ship.yehat.icons" -#define YEHAT_MED_MASK_PMAP_ANIM "ship.yehat.graphics.terminator.medium" -#define YEHAT_MICON_MASK_PMAP_ANIM "ship.yehat.meleeicons" -#define YEHAT_SML_MASK_PMAP_ANIM "ship.yehat.graphics.terminator.small" diff --git a/sc2/src/uqm/ships/yehat/imusicre.h b/sc2/src/uqm/ships/yehat/imusicre.h deleted file mode 100644 index d92086cdc..000000000 --- a/sc2/src/uqm/ships/yehat/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define YEHAT_VICTORY_SONG "ship.yehat.ditty" diff --git a/sc2/src/uqm/ships/yehat/isndres.h b/sc2/src/uqm/ships/yehat/isndres.h deleted file mode 100644 index 54ad5a896..000000000 --- a/sc2/src/uqm/ships/yehat/isndres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define YEHAT_SHIP_SOUNDS "ship.yehat.sounds" diff --git a/sc2/src/uqm/ships/yehat/istrtab.h b/sc2/src/uqm/ships/yehat/istrtab.h deleted file mode 100644 index 076362915..000000000 --- a/sc2/src/uqm/ships/yehat/istrtab.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define YEHAT_RACE_STRINGS "ship.yehat.text" diff --git a/sc2/src/uqm/ships/yehat/resinst.h b/sc2/src/uqm/ships/yehat/resinst.h index d5310a924..742bb7ef3 100644 --- a/sc2/src/uqm/ships/yehat/resinst.h +++ b/sc2/src/uqm/ships/yehat/resinst.h @@ -1,5 +1,17 @@ -#include "igfxres.h" -#include "istrtab.h" -#include "isndres.h" -#include "imusicre.h" +#define SHIELD_BIG_MASK_ANIM "ship.yehat.graphics.shield.large" +#define SHIELD_MED_MASK_ANIM "ship.yehat.graphics.shield.medium" +#define SHIELD_SML_MASK_ANIM "ship.yehat.graphics.shield.small" +#define YEHAT_BIG_MASK_PMAP_ANIM "ship.yehat.graphics.terminator.large" +#define YEHAT_CANNON_BIG_MASK_PMAP_ANIM "ship.yehat.graphics.missile.large" +#define YEHAT_CANNON_MED_MASK_PMAP_ANIM "ship.yehat.graphics.missile.medium" +#define YEHAT_CANNON_SML_MASK_PMAP_ANIM "ship.yehat.graphics.missile.small" +#define YEHAT_CAPTAIN_MASK_PMAP_ANIM "ship.yehat.graphics.captain" +#define YEHAT_ICON_MASK_PMAP_ANIM "ship.yehat.icons" +#define YEHAT_MED_MASK_PMAP_ANIM "ship.yehat.graphics.terminator.medium" +#define YEHAT_MICON_MASK_PMAP_ANIM "ship.yehat.meleeicons" +#define YEHAT_SML_MASK_PMAP_ANIM "ship.yehat.graphics.terminator.small" +#define YEHAT_RACE_STRINGS "ship.yehat.text" +#define YEHAT_SHIP_SOUNDS "ship.yehat.sounds" +#define YEHAT_VICTORY_SONG "ship.yehat.ditty" + #include "icode.h" diff --git a/sc2/src/uqm/ships/yehat/respkg.h b/sc2/src/uqm/ships/yehat/respkg.h deleted file mode 100644 index 699a0c4e8..000000000 --- a/sc2/src/uqm/ships/yehat/respkg.h +++ /dev/null @@ -1,6 +0,0 @@ -enum -{ - YEHAT_CODE_PACKAGE = 1, - YEHAT_PACKAGE -}; - diff --git a/sc2/src/uqm/ships/yehat/restypes.h b/sc2/src/uqm/ships/yehat/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/yehat/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/yehat/yehat.res b/sc2/src/uqm/ships/yehat/yehat.res deleted file mode 100644 index 2ad3b60d3..000000000 --- a/sc2/src/uqm/ships/yehat/yehat.res +++ /dev/null @@ -1,26 +0,0 @@ -INCLUDE ../star3do.typ - -PATH yehat - -PACKAGE YEHAT_CODE_PACKAGE yehat.shp - CODE YEHAT_CODE yehat.cod - GFXRES YEHAT_ICON_MASK_PMAP_ANIM yehicons.ani - GFXRES YEHAT_MICON_MASK_PMAP_ANIM yehmicon.ani - STRTAB YEHAT_RACE_STRINGS yehtext.txt - -PACKAGE YEHAT_PACKAGE yehat.shp - GFXRES YEHAT_BIG_MASK_PMAP_ANIM yehat.big - GFXRES YEHAT_MED_MASK_PMAP_ANIM yehat.med - GFXRES YEHAT_SML_MASK_PMAP_ANIM yehat.sml - GFXRES YEHAT_CANNON_BIG_MASK_PMAP_ANIM missile.big - GFXRES YEHAT_CANNON_MED_MASK_PMAP_ANIM missile.med - GFXRES YEHAT_CANNON_SML_MASK_PMAP_ANIM missile.sml - GFXRES SHIELD_BIG_MASK_ANIM shield.big - GFXRES SHIELD_MED_MASK_ANIM shield.med - GFXRES SHIELD_SML_MASK_ANIM shield.sml - - GFXRES YEHAT_CAPTAIN_MASK_PMAP_ANIM yehcap.ani - SNDRES YEHAT_SHIP_SOUNDS yehsound.snd - - MUSICRES YEHAT_VICTORY_SONG yehditty.mod - diff --git a/sc2/src/uqm/ships/zoqfot/icode.h b/sc2/src/uqm/ships/zoqfot/icode.h index 0fe635fe0..58379feac 100644 --- a/sc2/src/uqm/ships/zoqfot/icode.h +++ b/sc2/src/uqm/ships/zoqfot/icode.h @@ -1,5 +1 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - #define ZOQFOTPIK_CODE "ship.zoqfotpik.code" diff --git a/sc2/src/uqm/ships/zoqfot/igfxres.h b/sc2/src/uqm/ships/zoqfot/igfxres.h deleted file mode 100644 index 602aa6984..000000000 --- a/sc2/src/uqm/ships/zoqfot/igfxres.h +++ /dev/null @@ -1,16 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define SPIT_BIG_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.spit.large" -#define SPIT_MED_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.spit.medium" -#define SPIT_SML_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.spit.small" -#define STINGER_BIG_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.proboscis.large" -#define STINGER_MED_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.proboscis.medium" -#define STINGER_SML_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.proboscis.small" -#define ZOQFOTPIK_BIG_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.stinger.large" -#define ZOQFOTPIK_CAPTAIN_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.captain" -#define ZOQFOTPIK_ICON_MASK_PMAP_ANIM "ship.zoqfotpik.icons" -#define ZOQFOTPIK_MED_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.stinger.medium" -#define ZOQFOTPIK_MICON_MASK_PMAP_ANIM "ship.zoqfotpik.meleeicons" -#define ZOQFOTPIK_SML_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.stinger.small" diff --git a/sc2/src/uqm/ships/zoqfot/imusicre.h b/sc2/src/uqm/ships/zoqfot/imusicre.h deleted file mode 100644 index 3471f205b..000000000 --- a/sc2/src/uqm/ships/zoqfot/imusicre.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ZOQFOTPIK_VICTORY_SONG "ship.zoqfotpik.ditty" diff --git a/sc2/src/uqm/ships/zoqfot/isndres.h b/sc2/src/uqm/ships/zoqfot/isndres.h deleted file mode 100644 index 86fd29f39..000000000 --- a/sc2/src/uqm/ships/zoqfot/isndres.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ZOQFOTPIK_SHIP_SOUNDS "ship.zoqfotpik.sounds" diff --git a/sc2/src/uqm/ships/zoqfot/istrtab.h b/sc2/src/uqm/ships/zoqfot/istrtab.h deleted file mode 100644 index 76dd89fd3..000000000 --- a/sc2/src/uqm/ships/zoqfot/istrtab.h +++ /dev/null @@ -1,5 +0,0 @@ -/* This file was auto-generated by the gen_resfiles utility and - should not be edited directly. Modify the master resource list - instead and regenerate. */ - -#define ZOQFOTPIK_RACE_STRINGS "ship.zoqfotpik.text" diff --git a/sc2/src/uqm/ships/zoqfot/resinst.h b/sc2/src/uqm/ships/zoqfot/resinst.h index d5310a924..76d022789 100644 --- a/sc2/src/uqm/ships/zoqfot/resinst.h +++ b/sc2/src/uqm/ships/zoqfot/resinst.h @@ -1,5 +1,17 @@ -#include "igfxres.h" -#include "istrtab.h" -#include "isndres.h" -#include "imusicre.h" +#define SPIT_BIG_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.spit.large" +#define SPIT_MED_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.spit.medium" +#define SPIT_SML_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.spit.small" +#define STINGER_BIG_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.proboscis.large" +#define STINGER_MED_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.proboscis.medium" +#define STINGER_SML_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.proboscis.small" +#define ZOQFOTPIK_BIG_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.stinger.large" +#define ZOQFOTPIK_CAPTAIN_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.captain" +#define ZOQFOTPIK_ICON_MASK_PMAP_ANIM "ship.zoqfotpik.icons" +#define ZOQFOTPIK_MED_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.stinger.medium" +#define ZOQFOTPIK_MICON_MASK_PMAP_ANIM "ship.zoqfotpik.meleeicons" +#define ZOQFOTPIK_SML_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.stinger.small" +#define ZOQFOTPIK_RACE_STRINGS "ship.zoqfotpik.text" +#define ZOQFOTPIK_SHIP_SOUNDS "ship.zoqfotpik.sounds" +#define ZOQFOTPIK_VICTORY_SONG "ship.zoqfotpik.ditty" + #include "icode.h" diff --git a/sc2/src/uqm/ships/zoqfot/respkg.h b/sc2/src/uqm/ships/zoqfot/respkg.h deleted file mode 100644 index cb56c091a..000000000 --- a/sc2/src/uqm/ships/zoqfot/respkg.h +++ /dev/null @@ -1,6 +0,0 @@ -enum -{ - ZOQFOTPIK_CODE_PACKAGE = 1, - ZOQFOTPIK_PACKAGE -}; - diff --git a/sc2/src/uqm/ships/zoqfot/restypes.h b/sc2/src/uqm/ships/zoqfot/restypes.h deleted file mode 100644 index 9fc3e4ca5..000000000 --- a/sc2/src/uqm/ships/zoqfot/restypes.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _RESTYPES_H -#define _RESTYPES_H - -enum -{ - KEY_CONFIG = 1, - GFXRES, - FONTRES, - STRTAB, - SNDRES, - MUSICRES, - RES_INDEX, - CODE -}; - -#endif /* _RESTYPES_H */ - diff --git a/sc2/src/uqm/ships/zoqfot/zoqfot.res b/sc2/src/uqm/ships/zoqfot/zoqfot.res deleted file mode 100644 index 7104a1431..000000000 --- a/sc2/src/uqm/ships/zoqfot/zoqfot.res +++ /dev/null @@ -1,26 +0,0 @@ -INCLUDE ../star3do.typ - -PATH zoqfot - -PACKAGE ZOQFOTPIK_CODE_PACKAGE zoqfot.shp - CODE ZOQFOTPIK_CODE zoqfot.cod - GFXRES ZOQFOTPIK_ICON_MASK_PMAP_ANIM zoqicons.ani - GFXRES ZOQFOTPIK_MICON_MASK_PMAP_ANIM zoqmicon.ani - STRTAB ZOQFOTPIK_RACE_STRINGS zoqtext.txt - -PACKAGE ZOQFOTPIK_PACKAGE zoqfot.shp - GFXRES ZOQFOTPIK_BIG_MASK_PMAP_ANIM zoqfot.big - GFXRES ZOQFOTPIK_MED_MASK_PMAP_ANIM zoqfot.med - GFXRES ZOQFOTPIK_SML_MASK_PMAP_ANIM zoqfot.sml - GFXRES SPIT_BIG_MASK_PMAP_ANIM spitbig.ani - GFXRES SPIT_MED_MASK_PMAP_ANIM spitmed.ani - GFXRES SPIT_SML_MASK_PMAP_ANIM spitsml.ani - GFXRES STINGER_BIG_MASK_PMAP_ANIM stibig.ani - GFXRES STINGER_MED_MASK_PMAP_ANIM stimed.ani - GFXRES STINGER_SML_MASK_PMAP_ANIM stisml.ani - - GFXRES ZOQFOTPIK_CAPTAIN_MASK_PMAP_ANIM zoqcap.ani - SNDRES ZOQFOTPIK_SHIP_SOUNDS zoqsound.snd - - MUSICRES ZOQFOTPIK_VICTORY_SONG zoqditty.mod -