From 25b42679024908dbadb8b97dd433f86557188d11 Mon Sep 17 00:00:00 2001 From: mcmartin Date: Wed, 28 Nov 2007 08:09:57 +0000 Subject: [PATCH] Reworking of the resource system. Resource indices (.ls2) now refer to string identifiers which are mapped to files by a global resource map (uqm.rmp). This meets Milestone 3 of the Resource System Phase 2 plan. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2868 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/content/androsyn.ls2 | 16 + sc2/content/arilou.ls2 | 13 + sc2/content/blackurq.ls2 | 16 + sc2/content/chenjesu.ls2 | 16 + sc2/content/chmmr.ls2 | 16 + sc2/content/comm/arilou.ls2 | 5 + sc2/content/comm/blackur.ls2 | 5 + sc2/content/comm/chmmr.ls2 | 5 + sc2/content/comm/comandr.ls2 | 8 + sc2/content/comm/druuge.ls2 | 5 + sc2/content/comm/ilwrath.ls2 | 5 + sc2/content/comm/melnorm.ls2 | 5 + sc2/content/comm/mycon.ls2 | 5 + sc2/content/comm/orz.ls2 | 5 + sc2/content/comm/pkunk.ls2 | 5 + sc2/content/comm/shofixt.ls2 | 5 + sc2/content/comm/slyhome.ls2 | 5 + sc2/content/comm/slyland.ls2 | 5 + sc2/content/comm/spathi.ls2 | 10 + sc2/content/comm/supox.ls2 | 5 + sc2/content/comm/syreen.ls2 | 5 + sc2/content/comm/talkpet.ls2 | 5 + sc2/content/comm/thradd.ls2 | 5 + sc2/content/comm/umgah.ls2 | 5 + sc2/content/comm/urquan.ls2 | 5 + sc2/content/comm/utwig.ls2 | 6 + sc2/content/comm/vux.ls2 | 5 + sc2/content/comm/yehat.ls2 | 7 + sc2/content/comm/zoqfot.ls2 | 5 + sc2/content/druuge.ls2 | 13 + sc2/content/human.ls2 | 13 + sc2/content/ilwrath.ls2 | 13 + sc2/content/lastbat.ls2 | 12 + sc2/content/melnorme.ls2 | 16 + sc2/content/mmrnmhrm.ls2 | 16 + sc2/content/mycon.ls2 | 13 + sc2/content/orz.ls2 | 16 + sc2/content/pkunk.ls2 | 13 + sc2/content/probe.ls2 | 2 + sc2/content/shofixti.ls2 | 20 + sc2/content/sis.ls2 | 12 + sc2/content/slylandr.ls2 | 10 + sc2/content/spathi.ls2 | 16 + sc2/content/starcon.ls2 | 452 +++++++++++ sc2/content/supox.ls2 | 13 + sc2/content/syreen.ls2 | 13 + sc2/content/thradd.ls2 | 16 + sc2/content/umgah.ls2 | 14 + sc2/content/uqm.rmp | 952 ++++++++++++++++++++++++ sc2/content/urquan.ls2 | 16 + sc2/content/utwig.ls2 | 13 + sc2/content/vux.ls2 | 14 + sc2/content/yehat.ls2 | 16 + sc2/content/zoqfot.ls2 | 16 + sc2/src/sc2code/libs/reslib.h | 4 +- sc2/src/sc2code/libs/resource/index.h | 1 + sc2/src/sc2code/libs/resource/resinit.c | 21 +- sc2/src/sc2code/setup.c | 2 +- tools/resmap/mastermap.py | 2 +- 59 files changed, 1951 insertions(+), 7 deletions(-) create mode 100644 sc2/content/androsyn.ls2 create mode 100644 sc2/content/arilou.ls2 create mode 100644 sc2/content/blackurq.ls2 create mode 100644 sc2/content/chenjesu.ls2 create mode 100644 sc2/content/chmmr.ls2 create mode 100644 sc2/content/comm/arilou.ls2 create mode 100644 sc2/content/comm/blackur.ls2 create mode 100644 sc2/content/comm/chmmr.ls2 create mode 100644 sc2/content/comm/comandr.ls2 create mode 100644 sc2/content/comm/druuge.ls2 create mode 100644 sc2/content/comm/ilwrath.ls2 create mode 100644 sc2/content/comm/melnorm.ls2 create mode 100644 sc2/content/comm/mycon.ls2 create mode 100644 sc2/content/comm/orz.ls2 create mode 100644 sc2/content/comm/pkunk.ls2 create mode 100644 sc2/content/comm/shofixt.ls2 create mode 100644 sc2/content/comm/slyhome.ls2 create mode 100644 sc2/content/comm/slyland.ls2 create mode 100644 sc2/content/comm/spathi.ls2 create mode 100644 sc2/content/comm/supox.ls2 create mode 100644 sc2/content/comm/syreen.ls2 create mode 100644 sc2/content/comm/talkpet.ls2 create mode 100644 sc2/content/comm/thradd.ls2 create mode 100644 sc2/content/comm/umgah.ls2 create mode 100644 sc2/content/comm/urquan.ls2 create mode 100644 sc2/content/comm/utwig.ls2 create mode 100644 sc2/content/comm/vux.ls2 create mode 100644 sc2/content/comm/yehat.ls2 create mode 100644 sc2/content/comm/zoqfot.ls2 create mode 100644 sc2/content/druuge.ls2 create mode 100644 sc2/content/human.ls2 create mode 100644 sc2/content/ilwrath.ls2 create mode 100644 sc2/content/lastbat.ls2 create mode 100644 sc2/content/melnorme.ls2 create mode 100644 sc2/content/mmrnmhrm.ls2 create mode 100644 sc2/content/mycon.ls2 create mode 100644 sc2/content/orz.ls2 create mode 100644 sc2/content/pkunk.ls2 create mode 100644 sc2/content/probe.ls2 create mode 100644 sc2/content/shofixti.ls2 create mode 100644 sc2/content/sis.ls2 create mode 100644 sc2/content/slylandr.ls2 create mode 100644 sc2/content/spathi.ls2 create mode 100644 sc2/content/starcon.ls2 create mode 100644 sc2/content/supox.ls2 create mode 100644 sc2/content/syreen.ls2 create mode 100644 sc2/content/thradd.ls2 create mode 100644 sc2/content/umgah.ls2 create mode 100644 sc2/content/uqm.rmp create mode 100644 sc2/content/urquan.ls2 create mode 100644 sc2/content/utwig.ls2 create mode 100644 sc2/content/vux.ls2 create mode 100644 sc2/content/yehat.ls2 create mode 100644 sc2/content/zoqfot.ls2 diff --git a/sc2/content/androsyn.ls2 b/sc2/content/androsyn.ls2 new file mode 100644 index 000000000..767ac8f99 --- /dev/null +++ b/sc2/content/androsyn.ls2 @@ -0,0 +1,16 @@ + 1 0 2 ship.androsyn.icons + 1 0 4 ship.androsyn.text + 1 0 8 ship.androsyn.code + 1 1 2 ship.androsyn.meleeicons + 2 0 5 ship.androsyn.sounds + 2 0 6 ship.androsyn.ditty + 2 2 2 ship.androsyn.graphics.androsyn.large + 2 3 2 ship.androsyn.graphics.androsyn.medium + 2 4 2 ship.androsyn.graphics.androsyn.small + 2 5 2 ship.androsyn.graphics.bubble.large + 2 6 2 ship.androsyn.graphics.bubble.medium + 2 7 2 ship.androsyn.graphics.bubble.small + 2 8 2 ship.androsyn.graphics.blazer.large + 2 9 2 ship.androsyn.graphics.blazer.medium + 2 10 2 ship.androsyn.graphics.blazer.small + 2 11 2 ship.androsyn.graphics.captain diff --git a/sc2/content/arilou.ls2 b/sc2/content/arilou.ls2 new file mode 100644 index 000000000..ceddbfef5 --- /dev/null +++ b/sc2/content/arilou.ls2 @@ -0,0 +1,13 @@ + 1 0 2 ship.arilou.icons + 1 0 4 ship.arilou.text + 1 0 8 ship.arilou.code + 1 1 2 ship.arilou.meleeicons + 2 0 5 ship.arilou.sounds + 2 0 6 ship.arilou.ditty + 2 2 2 ship.arilou.graphics.arilou.large + 2 3 2 ship.arilou.graphics.arilou.medium + 2 4 2 ship.arilou.graphics.arilou.small + 2 5 2 ship.arilou.graphics.warp.large + 2 6 2 ship.arilou.graphics.warp.medium + 2 7 2 ship.arilou.graphics.warp.small + 2 8 2 ship.arilou.graphics.captain diff --git a/sc2/content/blackurq.ls2 b/sc2/content/blackurq.ls2 new file mode 100644 index 000000000..a277443d7 --- /dev/null +++ b/sc2/content/blackurq.ls2 @@ -0,0 +1,16 @@ + 1 0 2 ship.blackurq.icons + 1 0 4 ship.blackurq.text + 1 0 8 ship.blackurq.code + 1 1 2 ship.blackurq.meleeicons + 2 0 5 ship.blackurq.sounds + 2 0 6 ship.blackurq.ditty + 2 2 2 ship.blackurq.graphics.blackurq.large + 2 3 2 ship.blackurq.graphics.blackurq.medium + 2 4 2 ship.blackurq.graphics.blackurq.small + 2 5 2 ship.blackurq.graphics.buz.large + 2 6 2 ship.blackurq.graphics.buz.medium + 2 7 2 ship.blackurq.graphics.buz.small + 2 8 2 ship.blackurq.graphics.gas.large + 2 9 2 ship.blackurq.graphics.gas.medium + 2 10 2 ship.blackurq.graphics.gas.small + 2 11 2 ship.blackurq.graphics.captain diff --git a/sc2/content/chenjesu.ls2 b/sc2/content/chenjesu.ls2 new file mode 100644 index 000000000..fb7a49930 --- /dev/null +++ b/sc2/content/chenjesu.ls2 @@ -0,0 +1,16 @@ + 1 0 2 ship.chenjesu.icons + 1 0 4 ship.chenjesu.text + 1 0 8 ship.chenjesu.code + 1 1 2 ship.chenjesu.meleeicons + 2 0 5 ship.chenjesu.sounds + 2 0 6 ship.chenjesu.ditty + 2 2 2 ship.chenjesu.graphics.chenjesu.large + 2 3 2 ship.chenjesu.graphics.chenjesu.medium + 2 4 2 ship.chenjesu.graphics.chenjesu.small + 2 5 2 ship.chenjesu.graphics.spark.large + 2 6 2 ship.chenjesu.graphics.spark.medium + 2 7 2 ship.chenjesu.graphics.spark.small + 2 8 2 ship.chenjesu.graphics.doggy.large + 2 9 2 ship.chenjesu.graphics.doggy.medium + 2 10 2 ship.chenjesu.graphics.doggy.small + 2 11 2 ship.chenjesu.graphics.captain diff --git a/sc2/content/chmmr.ls2 b/sc2/content/chmmr.ls2 new file mode 100644 index 000000000..bb49aced1 --- /dev/null +++ b/sc2/content/chmmr.ls2 @@ -0,0 +1,16 @@ + 1 0 2 ship.chmmr.icons + 1 0 4 ship.chmmr.text + 1 0 8 ship.chmmr.code + 1 1 2 ship.chmmr.meleeicons + 2 0 5 ship.chmmr.sounds + 2 0 6 ship.chmmr.ditty + 2 2 2 ship.chmmr.graphics.chmmr.large + 2 3 2 ship.chmmr.graphics.chmmr.medium + 2 4 2 ship.chmmr.graphics.chmmr.small + 2 5 2 ship.chmmr.graphics.muz.large + 2 6 2 ship.chmmr.graphics.muz.medium + 2 7 2 ship.chmmr.graphics.muz.small + 2 8 2 ship.chmmr.graphics.sat.large + 2 9 2 ship.chmmr.graphics.sat.medium + 2 10 2 ship.chmmr.graphics.sat.small + 2 11 2 ship.chmmr.graphics.captain diff --git a/sc2/content/comm/arilou.ls2 b/sc2/content/comm/arilou.ls2 new file mode 100644 index 000000000..6d4b2e92b --- /dev/null +++ b/sc2/content/comm/arilou.ls2 @@ -0,0 +1,5 @@ + 1 0 2 comm.arilou.graphics + 1 0 3 comm.arilou.font + 1 0 4 comm.arilou.dialogue + 1 0 6 comm.arilou.music + 1 1 4 comm.arilou.colortable diff --git a/sc2/content/comm/blackur.ls2 b/sc2/content/comm/blackur.ls2 new file mode 100644 index 000000000..9d506d16e --- /dev/null +++ b/sc2/content/comm/blackur.ls2 @@ -0,0 +1,5 @@ + 1 0 2 comm.blackur.graphics + 1 0 3 comm.blackur.font + 1 0 4 comm.blackur.dialogue + 1 0 6 comm.blackur.music + 1 1 4 comm.blackur.colortable diff --git a/sc2/content/comm/chmmr.ls2 b/sc2/content/comm/chmmr.ls2 new file mode 100644 index 000000000..7a81bb1a9 --- /dev/null +++ b/sc2/content/comm/chmmr.ls2 @@ -0,0 +1,5 @@ + 1 0 2 comm.chmmr.graphics + 1 0 3 comm.chmmr.font + 1 0 4 comm.chmmr.dialogue + 1 0 6 comm.chmmr.music + 1 1 4 comm.chmmr.colortable diff --git a/sc2/content/comm/comandr.ls2 b/sc2/content/comm/comandr.ls2 new file mode 100644 index 000000000..3f8741629 --- /dev/null +++ b/sc2/content/comm/comandr.ls2 @@ -0,0 +1,8 @@ + 1 0 2 comm.comandr.graphics + 1 0 3 comm.comandr.font + 1 0 4 comm.comandr.colortable + 1 0 6 comm.comandr.music + 2 1 4 comm.comandr.dialogue + 3 2 4 comm.starbas.dialogue + 4 1 6 comm.starbas.music + 5 2 6 comm.comlowpw.music diff --git a/sc2/content/comm/druuge.ls2 b/sc2/content/comm/druuge.ls2 new file mode 100644 index 000000000..431dfa62b --- /dev/null +++ b/sc2/content/comm/druuge.ls2 @@ -0,0 +1,5 @@ + 1 0 2 comm.druuge.graphics + 1 0 3 comm.druuge.font + 1 0 4 comm.druuge.dialogue + 1 0 6 comm.druuge.music + 1 1 4 comm.druuge.colortable diff --git a/sc2/content/comm/ilwrath.ls2 b/sc2/content/comm/ilwrath.ls2 new file mode 100644 index 000000000..a625df378 --- /dev/null +++ b/sc2/content/comm/ilwrath.ls2 @@ -0,0 +1,5 @@ + 1 0 2 comm.ilwrath.graphics + 1 0 3 comm.ilwrath.font + 1 0 4 comm.ilwrath.dialogue + 1 0 6 comm.ilwrath.music + 1 1 4 comm.ilwrath.colortable diff --git a/sc2/content/comm/melnorm.ls2 b/sc2/content/comm/melnorm.ls2 new file mode 100644 index 000000000..cf2773a3a --- /dev/null +++ b/sc2/content/comm/melnorm.ls2 @@ -0,0 +1,5 @@ + 1 0 2 comm.melnorm.graphics + 1 0 3 comm.melnorm.font + 1 0 4 comm.melnorm.dialogue + 1 0 6 comm.melnorm.music + 1 1 4 comm.melnorm.colortable diff --git a/sc2/content/comm/mycon.ls2 b/sc2/content/comm/mycon.ls2 new file mode 100644 index 000000000..b35baccdb --- /dev/null +++ b/sc2/content/comm/mycon.ls2 @@ -0,0 +1,5 @@ + 1 0 2 comm.mycon.graphics + 1 0 3 comm.mycon.font + 1 0 4 comm.mycon.dialogue + 1 0 6 comm.mycon.music + 1 1 4 comm.mycon.colortable diff --git a/sc2/content/comm/orz.ls2 b/sc2/content/comm/orz.ls2 new file mode 100644 index 000000000..fd6edfa1a --- /dev/null +++ b/sc2/content/comm/orz.ls2 @@ -0,0 +1,5 @@ + 1 0 2 comm.orz.graphics + 1 0 3 comm.orz.font + 1 0 4 comm.orz.dialogue + 1 0 6 comm.orz.music + 1 1 4 comm.orz.colortable diff --git a/sc2/content/comm/pkunk.ls2 b/sc2/content/comm/pkunk.ls2 new file mode 100644 index 000000000..e49428b22 --- /dev/null +++ b/sc2/content/comm/pkunk.ls2 @@ -0,0 +1,5 @@ + 1 0 2 comm.pkunk.graphics + 1 0 3 comm.pkunk.font + 1 0 4 comm.pkunk.dialogue + 1 0 6 comm.pkunk.music + 1 1 4 comm.pkunk.colortable diff --git a/sc2/content/comm/shofixt.ls2 b/sc2/content/comm/shofixt.ls2 new file mode 100644 index 000000000..ab12f87d2 --- /dev/null +++ b/sc2/content/comm/shofixt.ls2 @@ -0,0 +1,5 @@ + 1 0 2 comm.shofixt.graphics + 1 0 3 comm.shofixt.font + 1 0 4 comm.shofixt.dialogue + 1 0 6 comm.shofixt.music + 1 1 4 comm.shofixt.colortable diff --git a/sc2/content/comm/slyhome.ls2 b/sc2/content/comm/slyhome.ls2 new file mode 100644 index 000000000..47fa3c103 --- /dev/null +++ b/sc2/content/comm/slyhome.ls2 @@ -0,0 +1,5 @@ + 1 0 2 comm.slyhome.graphics + 1 0 3 comm.slyhome.font + 1 0 4 comm.slyhome.dialogue + 1 0 6 comm.slyhome.music + 1 1 4 comm.slyhome.colortable diff --git a/sc2/content/comm/slyland.ls2 b/sc2/content/comm/slyland.ls2 new file mode 100644 index 000000000..6e314913e --- /dev/null +++ b/sc2/content/comm/slyland.ls2 @@ -0,0 +1,5 @@ + 1 0 2 comm.slyland.graphics + 1 0 3 comm.slyland.font + 1 0 4 comm.slyland.dialogue + 1 0 6 comm.slyland.music + 1 1 4 comm.slyland.colortable diff --git a/sc2/content/comm/spathi.ls2 b/sc2/content/comm/spathi.ls2 new file mode 100644 index 000000000..5076bfae5 --- /dev/null +++ b/sc2/content/comm/spathi.ls2 @@ -0,0 +1,10 @@ + 1 0 2 comm.spathi.graphics + 1 0 3 comm.spathi.font + 1 0 4 comm.spathi.dialogue + 1 3 4 comm.spathi.colortable + 2 1 2 comm.spahome.graphics + 2 1 4 comm.spahome.colortable + 2 2 4 comm.spahome.dialogue + 3 0 6 comm.spathi.music + 4 1 6 comm.spahome.music + 5 2 6 comm.spafwiff.music diff --git a/sc2/content/comm/supox.ls2 b/sc2/content/comm/supox.ls2 new file mode 100644 index 000000000..8e1c9adc2 --- /dev/null +++ b/sc2/content/comm/supox.ls2 @@ -0,0 +1,5 @@ + 1 0 2 comm.supox.graphics + 1 0 3 comm.supox.font + 1 0 4 comm.supox.dialogue + 1 0 6 comm.supox.music + 1 1 4 comm.supox.colortable diff --git a/sc2/content/comm/syreen.ls2 b/sc2/content/comm/syreen.ls2 new file mode 100644 index 000000000..ef4d0eeb8 --- /dev/null +++ b/sc2/content/comm/syreen.ls2 @@ -0,0 +1,5 @@ + 1 0 2 comm.syreen.graphics + 1 0 3 comm.syreen.font + 1 0 4 comm.syreen.dialogue + 1 0 6 comm.syreen.music + 1 1 4 comm.syreen.colortable diff --git a/sc2/content/comm/talkpet.ls2 b/sc2/content/comm/talkpet.ls2 new file mode 100644 index 000000000..c37e042bb --- /dev/null +++ b/sc2/content/comm/talkpet.ls2 @@ -0,0 +1,5 @@ + 1 0 2 comm.talkpet.graphics + 1 0 3 comm.talkpet.font + 1 0 4 comm.talkpet.dialogue + 1 0 6 comm.talkpet.music + 1 1 4 comm.talkpet.colortable diff --git a/sc2/content/comm/thradd.ls2 b/sc2/content/comm/thradd.ls2 new file mode 100644 index 000000000..18fbf73e7 --- /dev/null +++ b/sc2/content/comm/thradd.ls2 @@ -0,0 +1,5 @@ + 1 0 2 comm.thradd.graphics + 1 0 3 comm.thradd.font + 1 0 4 comm.thradd.dialogue + 1 0 6 comm.thradd.music + 1 1 4 comm.thradd.colortable diff --git a/sc2/content/comm/umgah.ls2 b/sc2/content/comm/umgah.ls2 new file mode 100644 index 000000000..4cce0e133 --- /dev/null +++ b/sc2/content/comm/umgah.ls2 @@ -0,0 +1,5 @@ + 1 0 2 comm.umgah.graphics + 1 0 3 comm.umgah.font + 1 0 4 comm.umgah.dialogue + 1 0 6 comm.umgah.music + 1 1 4 comm.umgah.colortable diff --git a/sc2/content/comm/urquan.ls2 b/sc2/content/comm/urquan.ls2 new file mode 100644 index 000000000..8ab864237 --- /dev/null +++ b/sc2/content/comm/urquan.ls2 @@ -0,0 +1,5 @@ + 1 0 2 comm.urquan.graphics + 1 0 3 comm.urquan.font + 1 0 4 comm.urquan.dialogue + 1 0 6 comm.urquan.music + 1 1 4 comm.urquan.colortable diff --git a/sc2/content/comm/utwig.ls2 b/sc2/content/comm/utwig.ls2 new file mode 100644 index 000000000..ca50be416 --- /dev/null +++ b/sc2/content/comm/utwig.ls2 @@ -0,0 +1,6 @@ + 1 0 2 comm.utwig.graphics + 1 0 3 comm.utwig.font + 1 0 4 comm.utwig.dialogue + 1 0 6 comm.utwig.music + 1 1 4 comm.utwig.colortable + 2 1 6 comm.utwigult.music diff --git a/sc2/content/comm/vux.ls2 b/sc2/content/comm/vux.ls2 new file mode 100644 index 000000000..206eefa74 --- /dev/null +++ b/sc2/content/comm/vux.ls2 @@ -0,0 +1,5 @@ + 1 0 2 comm.vux.graphics + 1 0 3 comm.vux.font + 1 0 4 comm.vux.dialogue + 1 0 6 comm.vux.music + 1 1 4 comm.vux.colortable diff --git a/sc2/content/comm/yehat.ls2 b/sc2/content/comm/yehat.ls2 new file mode 100644 index 000000000..24e6bea56 --- /dev/null +++ b/sc2/content/comm/yehat.ls2 @@ -0,0 +1,7 @@ + 1 0 2 comm.yehat.graphics + 1 0 3 comm.yehat.font + 1 0 6 comm.yehat.music + 1 2 4 comm.yehat.colortable + 2 0 4 comm.yehat.dialogue + 3 1 4 comm.rebel.dialogue + 4 1 6 comm.rebel.music diff --git a/sc2/content/comm/zoqfot.ls2 b/sc2/content/comm/zoqfot.ls2 new file mode 100644 index 000000000..fa8e45760 --- /dev/null +++ b/sc2/content/comm/zoqfot.ls2 @@ -0,0 +1,5 @@ + 1 0 2 comm.zoqfot.graphics + 1 0 3 comm.zoqfot.font + 1 0 4 comm.zoqfot.dialogue + 1 0 6 comm.zoqfot.music + 1 1 4 comm.zoqfot.colortable diff --git a/sc2/content/druuge.ls2 b/sc2/content/druuge.ls2 new file mode 100644 index 000000000..ada16e211 --- /dev/null +++ b/sc2/content/druuge.ls2 @@ -0,0 +1,13 @@ + 1 0 2 ship.druuge.icons + 1 0 4 ship.druuge.text + 1 0 8 ship.druuge.code + 1 1 2 ship.druuge.meleeicons + 2 0 5 ship.druuge.sounds + 2 0 6 ship.druuge.ditty + 2 2 2 ship.druuge.graphics.druuge.large + 2 3 2 ship.druuge.graphics.druuge.medium + 2 4 2 ship.druuge.graphics.druuge.small + 2 5 2 ship.druuge.graphics.can.large + 2 6 2 ship.druuge.graphics.can.medium + 2 7 2 ship.druuge.graphics.can.small + 2 8 2 ship.druuge.graphics.captain diff --git a/sc2/content/human.ls2 b/sc2/content/human.ls2 new file mode 100644 index 000000000..c72f052af --- /dev/null +++ b/sc2/content/human.ls2 @@ -0,0 +1,13 @@ + 1 0 2 ship.human.icons + 1 0 4 ship.human.text + 1 0 8 ship.human.code + 1 1 2 ship.human.meleeicons + 2 0 5 ship.human.sounds + 2 0 6 ship.human.ditty + 2 2 2 ship.human.graphics.human.large + 2 3 2 ship.human.graphics.human.medium + 2 4 2 ship.human.graphics.human.small + 2 5 2 ship.human.graphics.saturn.large + 2 6 2 ship.human.graphics.saturn.medium + 2 7 2 ship.human.graphics.saturn.small + 2 8 2 ship.human.graphics.captain diff --git a/sc2/content/ilwrath.ls2 b/sc2/content/ilwrath.ls2 new file mode 100644 index 000000000..6c6f37a13 --- /dev/null +++ b/sc2/content/ilwrath.ls2 @@ -0,0 +1,13 @@ + 1 0 2 ship.ilwrath.icons + 1 0 4 ship.ilwrath.text + 1 0 8 ship.ilwrath.code + 1 1 2 ship.ilwrath.meleeicons + 2 0 5 ship.ilwrath.sounds + 2 0 6 ship.ilwrath.ditty + 2 2 2 ship.ilwrath.graphics.ilwrath.large + 2 3 2 ship.ilwrath.graphics.ilwrath.medium + 2 4 2 ship.ilwrath.graphics.ilwrath.small + 2 5 2 ship.ilwrath.graphics.fire.large + 2 6 2 ship.ilwrath.graphics.fire.medium + 2 7 2 ship.ilwrath.graphics.fire.small + 2 8 2 ship.ilwrath.graphics.captain diff --git a/sc2/content/lastbat.ls2 b/sc2/content/lastbat.ls2 new file mode 100644 index 000000000..e31466f2c --- /dev/null +++ b/sc2/content/lastbat.ls2 @@ -0,0 +1,12 @@ + 1 0 8 ship.lastbat.code + 2 0 2 ship.lastbat.graphics.lastbat.large + 2 0 5 ship.lastbat.sounds + 2 1 2 ship.lastbat.graphics.lastbat.medium + 2 2 2 ship.lastbat.graphics.lastbat.small + 2 3 2 ship.lastbat.graphics.sen.large + 2 4 2 ship.lastbat.graphics.sen.medium + 2 5 2 ship.lastbat.graphics.sen.small + 2 6 2 ship.lastbat.graphics.gen.large + 2 7 2 ship.lastbat.graphics.gen.medium + 2 8 2 ship.lastbat.graphics.gen.small + 3 9 2 ship.lastbat.graphics.captain diff --git a/sc2/content/melnorme.ls2 b/sc2/content/melnorme.ls2 new file mode 100644 index 000000000..0dddc7815 --- /dev/null +++ b/sc2/content/melnorme.ls2 @@ -0,0 +1,16 @@ + 1 0 2 ship.melnorme.icons + 1 0 4 ship.melnorme.text + 1 0 8 ship.melnorme.code + 1 1 2 ship.melnorme.meleeicons + 2 0 5 ship.melnorme.sounds + 2 0 6 ship.melnorme.ditty + 2 2 2 ship.melnorme.graphics.melnorme.large + 2 3 2 ship.melnorme.graphics.melnorme.medium + 2 4 2 ship.melnorme.graphics.melnorme.small + 2 5 2 ship.melnorme.graphics.pump.large + 2 6 2 ship.melnorme.graphics.pump.medium + 2 7 2 ship.melnorme.graphics.pump.small + 2 8 2 ship.melnorme.graphics.confu.large + 2 9 2 ship.melnorme.graphics.confu.medium + 2 10 2 ship.melnorme.graphics.confu.small + 2 11 2 ship.melnorme.graphics.captain diff --git a/sc2/content/mmrnmhrm.ls2 b/sc2/content/mmrnmhrm.ls2 new file mode 100644 index 000000000..4268bbcf5 --- /dev/null +++ b/sc2/content/mmrnmhrm.ls2 @@ -0,0 +1,16 @@ + 1 0 2 ship.mmrnmhrm.icons + 1 0 4 ship.mmrnmhrm.text + 1 0 8 ship.mmrnmhrm.code + 1 1 2 ship.mmrnmhrm.meleeicons + 2 0 5 ship.mmrnmhrm.sounds + 2 0 6 ship.mmrnmhrm.ditty + 2 2 2 ship.mmrnmhrm.graphics.mmrnmhrm.large + 2 3 2 ship.mmrnmhrm.graphics.mmrnmhrm.medium + 2 4 2 ship.mmrnmhrm.graphics.mmrnmhrm.small + 2 5 2 ship.mmrnmhrm.graphics.torp.large + 2 6 2 ship.mmrnmhrm.graphics.torp.medium + 2 7 2 ship.mmrnmhrm.graphics.torp.small + 2 8 2 ship.mmrnmhrm.graphics.ywing.large + 2 9 2 ship.mmrnmhrm.graphics.ywing.medium + 2 10 2 ship.mmrnmhrm.graphics.ywing.small + 2 11 2 ship.mmrnmhrm.graphics.captain diff --git a/sc2/content/mycon.ls2 b/sc2/content/mycon.ls2 new file mode 100644 index 000000000..f2068e99b --- /dev/null +++ b/sc2/content/mycon.ls2 @@ -0,0 +1,13 @@ + 1 0 2 ship.mycon.icons + 1 0 4 ship.mycon.text + 1 0 8 ship.mycon.code + 1 1 2 ship.mycon.meleeicons + 2 0 5 ship.mycon.sounds + 2 0 6 ship.mycon.ditty + 2 2 2 ship.mycon.graphics.mycon.large + 2 3 2 ship.mycon.graphics.mycon.medium + 2 4 2 ship.mycon.graphics.mycon.small + 2 5 2 ship.mycon.graphics.plasma.large + 2 6 2 ship.mycon.graphics.plasma.medium + 2 7 2 ship.mycon.graphics.plasma.small + 2 8 2 ship.mycon.graphics.captain diff --git a/sc2/content/orz.ls2 b/sc2/content/orz.ls2 new file mode 100644 index 000000000..abbe1b190 --- /dev/null +++ b/sc2/content/orz.ls2 @@ -0,0 +1,16 @@ + 1 0 2 ship.orz.icons + 1 0 4 ship.orz.text + 1 0 8 ship.orz.code + 1 1 2 ship.orz.meleeicons + 2 0 5 ship.orz.sounds + 2 0 6 ship.orz.ditty + 2 2 2 ship.orz.graphics.orz.large + 2 3 2 ship.orz.graphics.orz.medium + 2 4 2 ship.orz.graphics.orz.small + 2 5 2 ship.orz.graphics.how.large + 2 6 2 ship.orz.graphics.how.medium + 2 7 2 ship.orz.graphics.how.small + 2 8 2 ship.orz.graphics.tur.large + 2 9 2 ship.orz.graphics.tur.medium + 2 10 2 ship.orz.graphics.tur.small + 2 11 2 ship.orz.graphics.captain diff --git a/sc2/content/pkunk.ls2 b/sc2/content/pkunk.ls2 new file mode 100644 index 000000000..34ff4d3d8 --- /dev/null +++ b/sc2/content/pkunk.ls2 @@ -0,0 +1,13 @@ + 1 0 2 ship.pkunk.icons + 1 0 4 ship.pkunk.text + 1 0 8 ship.pkunk.code + 1 1 2 ship.pkunk.meleeicons + 2 0 5 ship.pkunk.sounds + 2 0 6 ship.pkunk.ditty + 2 2 2 ship.pkunk.graphics.pkunk.large + 2 3 2 ship.pkunk.graphics.pkunk.medium + 2 4 2 ship.pkunk.graphics.pkunk.small + 2 5 2 ship.pkunk.graphics.bug.large + 2 6 2 ship.pkunk.graphics.bug.medium + 2 7 2 ship.pkunk.graphics.bug.small + 2 8 2 ship.pkunk.graphics.captain diff --git a/sc2/content/probe.ls2 b/sc2/content/probe.ls2 new file mode 100644 index 000000000..e2aeec4fc --- /dev/null +++ b/sc2/content/probe.ls2 @@ -0,0 +1,2 @@ + 1 0 2 ship.probe.meleeicons + 1 0 8 ship.probe.code diff --git a/sc2/content/shofixti.ls2 b/sc2/content/shofixti.ls2 new file mode 100644 index 000000000..2eba2e76e --- /dev/null +++ b/sc2/content/shofixti.ls2 @@ -0,0 +1,20 @@ + 1 0 2 ship.shofixti.icons + 1 0 4 ship.shofixti.text + 1 0 8 ship.shofixti.code + 1 1 2 ship.shofixti.meleeicons + 2 2 2 ship.shofixti.graphics.shofixti.large + 2 3 2 ship.shofixti.graphics.shofixti.medium + 2 4 2 ship.shofixti.graphics.shofixti.small + 2 5 2 ship.shofixti.graphics.destruct.large + 2 6 2 ship.shofixti.graphics.destruct.medium + 2 7 2 ship.shofixti.graphics.destruct.small + 2 8 2 ship.shofixti.graphics.captain + 3 9 2 ship.shofixti.graphics.oldshof.large + 3 10 2 ship.shofixti.graphics.oldshof.medium + 3 11 2 ship.shofixti.graphics.oldshof.small + 3 12 2 ship.shofixti.graphics.oldcaptain + 4 0 5 ship.shofixti.sounds + 4 0 6 ship.shofixti.ditty + 4 13 2 ship.shofixti.graphics.missile.large + 4 14 2 ship.shofixti.graphics.missile.medium + 4 15 2 ship.shofixti.graphics.missile.small diff --git a/sc2/content/sis.ls2 b/sc2/content/sis.ls2 new file mode 100644 index 000000000..42daf65c6 --- /dev/null +++ b/sc2/content/sis.ls2 @@ -0,0 +1,12 @@ + 1 0 8 ship.sis_ship.code + 2 0 2 ship.sis_ship.icons + 2 0 5 ship.sis_ship.sounds + 2 0 6 ship.sis_ship.ditty + 2 1 2 ship.sis_ship.graphics.sis.large + 2 2 2 ship.sis_ship.graphics.sis.medium + 2 3 2 ship.sis_ship.graphics.sis.small + 2 4 2 ship.sis_ship.graphics.blas.large + 2 5 2 ship.sis_ship.graphics.blas.medium + 2 6 2 ship.sis_ship.graphics.blas.small + 2 7 2 ship.sis_ship.graphics.captain + 3 8 2 ship.sis_ship.graphics.sishyper diff --git a/sc2/content/slylandr.ls2 b/sc2/content/slylandr.ls2 new file mode 100644 index 000000000..09f4043c8 --- /dev/null +++ b/sc2/content/slylandr.ls2 @@ -0,0 +1,10 @@ + 1 0 2 ship.slylandr.icons + 1 0 4 ship.slylandr.text + 1 0 8 ship.slylandr.code + 1 1 2 ship.slylandr.meleeicons + 2 0 5 ship.slylandr.sounds + 2 0 6 ship.slylandr.ditty + 2 2 2 ship.slylandr.graphics.slylandr.large + 2 3 2 ship.slylandr.graphics.slylandr.medium + 2 4 2 ship.slylandr.graphics.slylandr.small + 2 5 2 ship.slylandr.graphics.captain diff --git a/sc2/content/spathi.ls2 b/sc2/content/spathi.ls2 new file mode 100644 index 000000000..48f69ef94 --- /dev/null +++ b/sc2/content/spathi.ls2 @@ -0,0 +1,16 @@ + 1 0 2 ship.spathi.icons + 1 0 4 ship.spathi.text + 1 0 8 ship.spathi.code + 1 1 2 ship.spathi.meleeicons + 2 0 5 ship.spathi.sounds + 2 0 6 ship.spathi.ditty + 2 2 2 ship.spathi.graphics.spathi.large + 2 3 2 ship.spathi.graphics.spathi.medium + 2 4 2 ship.spathi.graphics.spathi.small + 2 5 2 ship.spathi.graphics.missile.large + 2 6 2 ship.spathi.graphics.missile.medium + 2 7 2 ship.spathi.graphics.missile.small + 2 8 2 ship.spathi.graphics.discrim.large + 2 9 2 ship.spathi.graphics.discrim.medium + 2 10 2 ship.spathi.graphics.discrim.small + 2 11 2 ship.spathi.graphics.captain diff --git a/sc2/content/starcon.ls2 b/sc2/content/starcon.ls2 new file mode 100644 index 000000000..2ca36ef93 --- /dev/null +++ b/sc2/content/starcon.ls2 @@ -0,0 +1,452 @@ + 1 0 4 colortable.scclrtab + 2 0 2 graphics.title + 3 0 7 ship.arilou.resources + 4 1 7 ship.chmmr.resources + 5 2 7 ship.human.resources + 6 3 7 ship.orz.resources + 7 4 7 ship.pkunk.resources + 8 5 7 ship.shofixti.resources + 9 6 7 ship.spathi.resources + 10 7 7 ship.supox.resources + 11 8 7 ship.thradd.resources + 12 9 7 ship.utwig.resources + 13 10 7 ship.vux.resources + 14 11 7 ship.yehat.resources + 15 12 7 ship.melnorme.resources + 16 13 7 ship.druuge.resources + 17 14 7 ship.ilwrath.resources + 18 15 7 ship.mycon.resources + 19 16 7 ship.slylandr.resources + 20 17 7 ship.umgah.resources + 21 18 7 ship.urquan.resources + 22 19 7 ship.zoqfot.resources + 23 20 7 ship.syreen.resources + 24 21 7 ship.blackurq.resources + 25 22 7 ship.androsyn.resources + 26 23 7 ship.chenjesu.resources + 27 24 7 ship.mmrnmhrm.resources + 28 0 3 font.starcon + 28 1 2 graphics.status + 28 1 3 font.tiny + 28 1 4 text.starcon + 28 2 2 graphics.activity + 29 3 2 graphics.playmenu + 30 2 3 font.micro + 31 4 2 graphics.flagstat + 31 5 2 graphics.miscdata + 31 287 2 graphics.fontgrad + 32 0 5 sounds.menu + 33 1 5 sounds.game + 34 6 2 graphics.stars + 34 7 2 graphics.astbig + 34 8 2 graphics.astmed + 34 9 2 graphics.astsml + 34 10 2 graphics.blabig + 34 11 2 graphics.blamed + 34 12 2 graphics.blasml + 34 13 2 graphics.boobig + 34 14 2 graphics.boomed + 34 15 2 graphics.boosml + 35 16 2 graphics.ambanim + 36 2 4 colortable.hyperpal + 36 17 2 graphics.hyperstr + 37 3 4 colortable.arispace + 37 18 2 graphics.arispace + 38 0 6 music.hyper + 39 1 6 music.arispace + 40 19 2 graphics.obbkgnd + 41 4 4 colortable.orbplan + 41 20 2 graphics.sis_ip + 41 21 2 graphics.orbplan + 41 22 2 graphics.ip_sun + 41 96 4 colortable.ip_sun + 42 2 5 sounds.landsnds + 42 23 2 graphics.lander + 42 24 2 graphics.quake + 42 25 2 graphics.lightnin + 42 26 2 graphics.lavaspot + 42 27 2 graphics.lndrshld + 42 28 2 graphics.launch + 42 29 2 graphics.return + 43 30 2 graphics.orbview + 44 31 2 graphics.eartmask + 45 32 2 graphics.lifecan + 46 33 2 graphics.lifea + 47 34 2 graphics.lifeb + 48 35 2 graphics.lifec + 49 36 2 graphics.lifed + 50 37 2 graphics.lifee + 51 38 2 graphics.lifef + 52 39 2 graphics.lifeg + 53 40 2 graphics.lifeh + 54 41 2 graphics.lifei + 55 42 2 graphics.lifej + 56 43 2 graphics.lifek + 57 44 2 graphics.lifel + 58 45 2 graphics.lifem + 59 46 2 graphics.lifen + 60 47 2 graphics.lifeo + 61 48 2 graphics.lifep + 62 49 2 graphics.lifeq + 63 50 2 graphics.lifer + 64 51 2 graphics.lifes + 65 52 2 graphics.lifet + 66 53 2 graphics.lifew + 67 54 2 graphics.lifex + 68 55 2 graphics.lifey + 69 56 2 graphics.lifeu + 70 57 2 graphics.lifev + 71 58 2 graphics.lifez + 72 5 4 colortable.str_cts_ + 72 6 4 translate.mtl2xlts + 73 7 4 colortable.wr1_cts_ + 74 8 4 translate.rst_xlts + 75 9 4 colortable.co2_cts_ + 76 10 4 translate.bnd_xlts + 77 11 4 colortable.ylgscts_ + 78 12 4 colortable.lll_cts_ + 79 13 4 colortable.ylgscts_ + 80 14 4 translate.den_xlts + 81 15 4 colortable.mtl_cts_ + 81 16 4 translate.mtl1xlts + 82 17 4 colortable.rrr_cts_ + 83 18 4 colortable.ice_cts_ + 84 19 4 translate.ice_xlts + 85 20 4 colortable.qqq_cts_ + 86 21 4 colortable.rst_cts_ + 87 22 4 colortable.bnd_cts_ + 88 23 4 colortable.rdx_cts_ + 89 24 4 colortable.nnn_cts_ + 90 25 4 colortable.qqq_cts_ + 91 26 4 colortable.rrr_cts_ + 92 27 4 colortable.den_cts_ + 93 28 4 colortable.blgscts_ + 94 29 4 colortable.www_cts_ + 95 30 4 colortable.grv_cts_ + 95 31 4 translate.grv_xlts + 96 32 4 colortable.vigscts_ + 97 33 4 colortable.kkk_cts_ + 98 34 4 colortable.prgscts_ + 99 35 4 colortable.dst_cts_ +100 36 4 colortable.dst_cts_ +101 37 4 colortable.jjj_cts_ +102 38 4 colortable.dst_cts_ +103 39 4 colortable.lit_cts_ +104 40 4 colortable.ylgscts_ +105 41 4 colortable.vigscts_ +106 42 4 colortable.vigscts_ +107 43 4 colortable.orgscts_ +108 44 4 colortable.rai_cts_ +108 45 4 translate.rai_xlts +109 46 4 colortable.hel_cts_ +109 47 4 translate.hel_xlts +110 48 4 colortable.cry_cts_ +111 49 4 translate.cry_xlts +112 50 4 colortable.bnd_cts_ +113 51 4 colortable.cygscts_ +114 52 4 colortable.rdx_cts_ +114 53 4 translate.rdx1xlts +115 54 4 colortable.co2_cts_ +116 55 4 colortable.eme_cts_ +117 56 4 colortable.rst_cts_ +118 57 4 translate.h2o_xlts +119 58 4 colortable.rdx_cts_ +120 59 4 colortable.h2o_cts_ +121 60 4 colortable.h2o_cts_ +122 61 4 colortable.www_cts_ +123 62 4 colortable.co2_cts_ +124 63 4 colortable.wr1_cts_ +125 64 4 colortable.rub_cts_ +126 65 4 colortable.rrr_cts_ +127 66 4 colortable.bbb_cts_ +128 67 4 translate.gasg +129 68 4 colortable.blugasgi +130 69 4 colortable.cyagasgi +131 70 4 colortable.grngasgi +132 71 4 colortable.grygasgi +133 72 4 colortable.oragasgi +134 73 4 colortable.purgasgi +135 74 4 colortable.redgasgi +136 75 4 colortable.viogasgi +137 76 4 colortable.yelgasgi +138 3 3 font.lander +138 288 2 graphics.landfeff +139 59 2 graphics.moonbase +139 77 4 text.moonbase +140 60 2 graphics.maidens +140 78 4 text.maidens +141 79 4 text.chmmrbas +142 61 2 graphics.aquhelix +142 80 4 text.aquhelix +143 62 2 graphics.drutrans +143 81 4 text.drutrans +144 63 2 graphics.taadevic +144 82 4 text.taadevic +145 64 2 graphics.sundevic +145 83 4 text.sundevic +146 65 2 graphics.syrvault +146 84 4 text.syrvault +147 66 2 graphics.urqwreck +147 85 4 text.urqwreck +148 67 2 graphics.utwbomb +148 86 4 text.utwbomb +149 87 4 text.vuxbeast +150 68 2 graphics.eggcase +150 88 4 text.eggcase +151 69 2 graphics.spapluto +151 89 4 text.spapluto +152 90 4 text.burruins +153 91 4 text.andruins +154 92 4 text.sphere +155 93 4 text.spindle +156 70 2 graphics.ruins +157 94 4 text.ruins +158 71 2 graphics.umgtrans +158 95 4 text.umgtrans +159 2 6 music.space +160 3 6 music.orbit1 +160 4 6 music.orbit2 +160 5 6 music.orbit3 +160 6 6 music.orbit4 +160 7 6 music.orbit5 +161 14 6 music.meleemenu +161 72 2 graphics.melebkgd +162 73 2 graphics.melee +163 8 6 music.redalert +163 74 2 graphics.segue +164 75 2 graphics.pickship +165 25 7 comm.arilou.resources +166 26 7 comm.chmmr.resources +167 27 7 comm.comandr.resources +168 28 7 comm.orz.resources +169 29 7 comm.pkunk.resources +170 30 7 comm.shofixt.resources +171 31 7 comm.spathi.resources +172 32 7 comm.supox.resources +173 33 7 comm.thradd.resources +174 34 7 comm.utwig.resources +175 35 7 comm.vux.resources +176 36 7 comm.yehat.resources +177 37 7 comm.melnorm.resources +178 38 7 comm.druuge.resources +179 39 7 comm.ilwrath.resources +180 40 7 comm.mycon.resources +181 41 7 comm.slyland.resources +182 42 7 comm.umgah.resources +183 43 7 comm.urquan.resources +184 44 7 comm.zoqfot.resources +185 45 7 comm.syreen.resources +186 46 7 comm.blackur.resources +187 47 7 comm.talkpet.resources +188 48 7 comm.slyhome.resources +189 4 3 font.player +190 49 7 ship.sis.resources +191 50 7 ship.lastbat.resources +192 51 7 ship.probe.resources +193 15 6 music.mainmenu +193 76 2 graphics.newgame +194 77 2 graphics.modules +195 78 2 graphics.sismods +195 79 2 graphics.outfit +196 9 6 music.outfit +197 80 2 graphics.sisblu +197 81 2 graphics.shipyard +197 97 4 colortable.dockpani +198 10 6 music.shipyard +199 11 6 music.starbase +199 82 2 graphics.starbase +200 83 2 graphics.sam__big +201 84 2 graphics.shie_big +201 85 2 graphics.shie_med +201 86 2 graphics.shie_sml +202 87 2 graphics.ool__big +202 88 2 graphics.ool__med +202 89 2 graphics.ool__sml +203 90 2 graphics.ytt__big +203 91 2 graphics.ytt__med +203 92 2 graphics.ytt__sml +204 93 2 graphics.deg__big +204 94 2 graphics.deg__med +204 95 2 graphics.deg__sml +205 96 2 graphics.lan__big +205 97 2 graphics.lan__med +205 98 2 graphics.lan__sml +206 99 2 graphics.tre__big +206 100 2 graphics.tre__med +206 101 2 graphics.tre__sml +207 102 2 graphics.ure__big +207 103 2 graphics.ure__med +207 104 2 graphics.ure__sml +208 105 2 graphics.mtl__big +208 106 2 graphics.mtl__med +208 107 2 graphics.mtl__sml +209 108 2 graphics.rad__big +209 109 2 graphics.rad__med +209 110 2 graphics.rad__sml +210 111 2 graphics.opa__big +210 112 2 graphics.opa__med +210 113 2 graphics.opa__sml +211 114 2 graphics.cya__big +211 115 2 graphics.cya__med +211 116 2 graphics.cya__sml +212 117 2 graphics.aci__big +212 118 2 graphics.aci__med +212 119 2 graphics.aci__sml +213 120 2 graphics.alk__big +213 121 2 graphics.alk__med +213 122 2 graphics.alk__sml +214 123 2 graphics.hal__big +214 124 2 graphics.hal__med +214 125 2 graphics.hal__sml +215 126 2 graphics.gre__big +215 127 2 graphics.gre__med +215 128 2 graphics.gre__sml +216 129 2 graphics.cop__big +216 130 2 graphics.cop__med +216 131 2 graphics.cop__sml +217 132 2 graphics.car__big +217 133 2 graphics.car__med +217 134 2 graphics.car__sml +218 135 2 graphics.ult__big +218 136 2 graphics.ult__med +218 137 2 graphics.ult__sml +219 138 2 graphics.nob__big +219 139 2 graphics.nob__med +219 140 2 graphics.nob__sml +220 141 2 graphics.azu__big +220 142 2 graphics.azu__med +220 143 2 graphics.azu__sml +221 144 2 graphics.cho__big +221 145 2 graphics.cho__med +221 146 2 graphics.cho__sml +222 147 2 graphics.pur__big +222 148 2 graphics.pur__med +222 149 2 graphics.pur__sml +223 150 2 graphics.sup__big +223 151 2 graphics.sup__med +223 152 2 graphics.sup__sml +224 153 2 graphics.pel__big +224 154 2 graphics.pel__med +224 155 2 graphics.pel__sml +225 156 2 graphics.dus__big +225 157 2 graphics.dus__med +225 158 2 graphics.dus__sml +226 159 2 graphics.mar__big +226 160 2 graphics.mar__med +226 161 2 graphics.mar__sml +227 162 2 graphics.cim__big +227 163 2 graphics.cim__med +227 164 2 graphics.cim__sml +228 165 2 graphics.inf__big +228 166 2 graphics.inf__med +228 167 2 graphics.inf__sml +229 168 2 graphics.sel__big +229 169 2 graphics.sel__med +229 170 2 graphics.sel__sml +230 171 2 graphics.aur__big +230 172 2 graphics.aur__med +230 173 2 graphics.aur__sml +231 174 2 graphics.flu__big +231 175 2 graphics.flu__med +231 176 2 graphics.flu__sml +232 177 2 graphics.ult__big +232 178 2 graphics.ult__med +232 179 2 graphics.ult__sml +233 180 2 graphics.plu__big +233 181 2 graphics.plu__med +233 182 2 graphics.plu__sml +234 183 2 graphics.rai__big +234 184 2 graphics.rai__med +234 185 2 graphics.rai__sml +235 186 2 graphics.cra__big +235 187 2 graphics.cra__med +235 188 2 graphics.cra__sml +236 189 2 graphics.sap__big +236 190 2 graphics.sap__med +236 191 2 graphics.sap__sml +237 192 2 graphics.org__big +237 193 2 graphics.org__med +237 194 2 graphics.org__sml +238 195 2 graphics.xen__big +238 196 2 graphics.xen__med +238 197 2 graphics.xen__sml +239 198 2 graphics.red__big +239 199 2 graphics.red__med +239 200 2 graphics.red__sml +240 201 2 graphics.pri__big +240 202 2 graphics.pri__med +240 203 2 graphics.pri__sml +241 204 2 graphics.eme__big +241 205 2 graphics.eme__med +241 206 2 graphics.eme__sml +242 207 2 graphics.chl__big +242 208 2 graphics.chl__med +242 209 2 graphics.chl__sml +243 210 2 graphics.mgn__big +243 211 2 graphics.mgn__med +243 212 2 graphics.mgn__sml +244 213 2 graphics.wat__big +244 214 2 graphics.wat__med +244 215 2 graphics.wat__sml +245 216 2 graphics.tel__big +245 217 2 graphics.tel__med +245 218 2 graphics.tel__sml +246 219 2 graphics.hyd__big +246 220 2 graphics.hyd__med +246 221 2 graphics.hyd__sml +247 222 2 graphics.iod__big +247 223 2 graphics.iod__med +247 224 2 graphics.iod__sml +248 225 2 graphics.vin__big +248 226 2 graphics.vin__med +248 227 2 graphics.vin__sml +249 228 2 graphics.rub__big +249 229 2 graphics.rub__med +249 230 2 graphics.rub__sml +250 231 2 graphics.mgm__big +250 232 2 graphics.mgm__med +250 233 2 graphics.mgm__sml +251 234 2 graphics.cri__big +251 235 2 graphics.cri__med +251 236 2 graphics.cri__sml +252 237 2 graphics.blg__big +252 238 2 graphics.blg__med +252 239 2 graphics.blg__sml +253 240 2 graphics.cyg__big +253 241 2 graphics.cyg__med +253 242 2 graphics.cyg__sml +254 243 2 graphics.gng__big +254 244 2 graphics.gng__med +254 245 2 graphics.gng__sml +255 246 2 graphics.gyg__big +255 247 2 graphics.gyg__med +255 248 2 graphics.gyg__sml +256 249 2 graphics.org__big +256 250 2 graphics.org__med +256 251 2 graphics.org__sml +257 252 2 graphics.pug__big +257 253 2 graphics.pug__med +257 254 2 graphics.pug__sml +258 255 2 graphics.reg__big +258 256 2 graphics.reg__med +258 257 2 graphics.reg__sml +259 258 2 graphics.vig__big +259 259 2 graphics.vig__med +259 260 2 graphics.vig__sml +260 261 2 graphics.yeg__big +260 262 2 graphics.yeg__med +260 263 2 graphics.yeg__sml +261 12 6 music.battle +262 264 2 credits.background +282 13 6 credits.creditsmusic +283 284 2 graphics.sisskeleton +284 285 2 graphics.orbenter +285 286 2 graphics.setupmenu +285 287 4 text.setupmenu +286 98 4 ship.slides/intro.text +287 99 4 ship.slides/ending.text +288 5 3 credits.font.pt13 +288 6 3 credits.font.pt17 +288 7 3 credits.font.pt45 +289 100 4 credits.credits +290 101 4 text.joyalpha diff --git a/sc2/content/supox.ls2 b/sc2/content/supox.ls2 new file mode 100644 index 000000000..133c27d8e --- /dev/null +++ b/sc2/content/supox.ls2 @@ -0,0 +1,13 @@ + 1 0 2 ship.supox.icons + 1 0 4 ship.supox.text + 1 0 8 ship.supox.code + 1 1 2 ship.supox.meleeicons + 2 0 5 ship.supox.sounds + 2 0 6 ship.supox.ditty + 2 2 2 ship.supox.graphics.supox.large + 2 3 2 ship.supox.graphics.supox.medium + 2 4 2 ship.supox.graphics.supox.small + 2 5 2 ship.supox.graphics.gob.large + 2 6 2 ship.supox.graphics.gob.medium + 2 7 2 ship.supox.graphics.gob.small + 2 8 2 ship.supox.graphics.captain diff --git a/sc2/content/syreen.ls2 b/sc2/content/syreen.ls2 new file mode 100644 index 000000000..56d6c1353 --- /dev/null +++ b/sc2/content/syreen.ls2 @@ -0,0 +1,13 @@ + 1 0 2 ship.syreen.icons + 1 0 4 ship.syreen.text + 1 0 8 ship.syreen.code + 1 1 2 ship.syreen.meleeicons + 2 0 5 ship.syreen.sounds + 2 0 6 ship.syreen.ditty + 2 2 2 ship.syreen.graphics.syreen.large + 2 3 2 ship.syreen.graphics.syreen.medium + 2 4 2 ship.syreen.graphics.syreen.small + 2 5 2 ship.syreen.graphics.dagger.large + 2 6 2 ship.syreen.graphics.dagger.medium + 2 7 2 ship.syreen.graphics.dagger.small + 2 8 2 ship.syreen.graphics.captain diff --git a/sc2/content/thradd.ls2 b/sc2/content/thradd.ls2 new file mode 100644 index 000000000..493c86af9 --- /dev/null +++ b/sc2/content/thradd.ls2 @@ -0,0 +1,16 @@ + 1 0 2 ship.thradd.icons + 1 0 4 ship.thradd.text + 1 0 8 ship.thradd.code + 1 1 2 ship.thradd.meleeicons + 2 0 5 ship.thradd.sounds + 2 0 6 ship.thradd.ditty + 2 2 2 ship.thradd.graphics.thradd.large + 2 3 2 ship.thradd.graphics.thradd.medium + 2 4 2 ship.thradd.graphics.thradd.small + 2 5 2 ship.thradd.graphics.hor.large + 2 6 2 ship.thradd.graphics.hor.medium + 2 7 2 ship.thradd.graphics.hor.small + 2 8 2 ship.thradd.graphics.nap.large + 2 9 2 ship.thradd.graphics.nap.medium + 2 10 2 ship.thradd.graphics.nap.small + 2 11 2 ship.thradd.graphics.captain diff --git a/sc2/content/umgah.ls2 b/sc2/content/umgah.ls2 new file mode 100644 index 000000000..525221d75 --- /dev/null +++ b/sc2/content/umgah.ls2 @@ -0,0 +1,14 @@ + 1 0 2 ship.umgah.icons + 1 0 4 ship.umgah.text + 1 0 8 ship.umgah.code + 1 1 2 ship.umgah.meleeicons + 2 0 5 ship.umgah.sounds + 2 0 6 ship.umgah.ditty + 2 2 2 ship.umgah.graphics.umgah.large + 2 3 2 ship.umgah.graphics.umgah.medium + 2 4 2 ship.umgah.graphics.umgah.small + 2 5 2 ship.umgah.graphics.spritz + 2 6 2 ship.umgah.graphics.cone.large + 2 7 2 ship.umgah.graphics.cone.medium + 2 8 2 ship.umgah.graphics.cone.small + 2 9 2 ship.umgah.graphics.captain diff --git a/sc2/content/uqm.rmp b/sc2/content/uqm.rmp new file mode 100644 index 000000000..35ce76f8b --- /dev/null +++ b/sc2/content/uqm.rmp @@ -0,0 +1,952 @@ +colortable.arispace = lbm/arispace.ct +colortable.bbb_cts_ = ipanims/bbb_cts_.ct +colortable.blgscts_ = ipanims/blgscts_.ct +colortable.blugasgi = ipanims/blugasgi.ct +colortable.bnd_cts_ = ipanims/bnd_cts_.ct +colortable.co2_cts_ = ipanims/co2_cts_.ct +colortable.cry_cts_ = ipanims/cry_cts_.ct +colortable.cyagasgi = ipanims/cyagasgi.ct +colortable.cygscts_ = ipanims/cygscts_.ct +colortable.den_cts_ = ipanims/den_cts_.ct +colortable.dockpani = lbm/dockpani.ct +colortable.dst_cts_ = ipanims/dst_cts_.ct +colortable.eme_cts_ = ipanims/eme_cts_.ct +colortable.grngasgi = ipanims/grngasgi.ct +colortable.grv_cts_ = ipanims/grv_cts_.ct +colortable.grygasgi = ipanims/grygasgi.ct +colortable.h2o_cts_ = ipanims/h2o_cts_.ct +colortable.hel_cts_ = ipanims/hel_cts_.ct +colortable.hyperpal = lbm/hyperpal.ct +colortable.ice_cts_ = ipanims/ice_cts_.ct +colortable.ip_sun = ipanims/ip_sun.ct +colortable.jjj_cts_ = ipanims/jjj_cts_.ct +colortable.kkk_cts_ = ipanims/kkk_cts_.ct +colortable.lit_cts_ = ipanims/lit_cts_.ct +colortable.lll_cts_ = ipanims/lll_cts_.ct +colortable.mtl_cts_ = ipanims/mtl_cts_.ct +colortable.nnn_cts_ = ipanims/nnn_cts_.ct +colortable.oragasgi = ipanims/oragasgi.ct +colortable.orbplan = ipanims/orbplan.ct +colortable.orgscts_ = ipanims/orgscts_.ct +colortable.prgscts_ = ipanims/prgscts_.ct +colortable.purgasgi = ipanims/purgasgi.ct +colortable.qqq_cts_ = ipanims/qqq_cts_.ct +colortable.rai_cts_ = ipanims/rai_cts_.ct +colortable.rdx_cts_ = ipanims/rdx_cts_.ct +colortable.redgasgi = ipanims/redgasgi.ct +colortable.rrr_cts_ = ipanims/rrr_cts_.ct +colortable.rst_cts_ = ipanims/rst_cts_.ct +colortable.rub_cts_ = ipanims/rub_cts_.ct +colortable.scclrtab = lbm/scclrtab.ct +colortable.str_cts_ = ipanims/str_cts_.ct +colortable.vigscts_ = ipanims/vigscts_.ct +colortable.viogasgi = ipanims/viogasgi.ct +colortable.wr1_cts_ = ipanims/wr1_cts_.ct +colortable.www_cts_ = ipanims/www_cts_.ct +colortable.yelgasgi = ipanims/yelgasgi.ct +colortable.ylgscts_ = ipanims/ylgscts_.ct +comm.arilou.colortable = comm/arilou/arilou.ct +comm.arilou.dialogue = comm/arilou/arilou.txt +comm.arilou.font = comm/arilou/arilou.fon +comm.arilou.graphics = comm/arilou/arilou.ani +comm.arilou.music = comm/arilou/arilou.mod +comm.arilou.resources = comm/arilou.ls2 +comm.blackur.colortable = comm/blackur/blackur.ct +comm.blackur.dialogue = comm/blackur/blackur.txt +comm.blackur.font = comm/blackur/blackur.fon +comm.blackur.graphics = comm/blackur/blackur.ani +comm.blackur.music = comm/blackur/blackur.mod +comm.blackur.resources = comm/blackur.ls2 +comm.chmmr.colortable = comm/chmmr/chmmr.ct +comm.chmmr.dialogue = comm/chmmr/chmmr.txt +comm.chmmr.font = comm/chmmr/chmmr.fon +comm.chmmr.graphics = comm/chmmr/chmmr.ani +comm.chmmr.music = comm/chmmr/chmmr.mod +comm.chmmr.resources = comm/chmmr.ls2 +comm.comandr.colortable = comm/comandr/comandr.ct +comm.comandr.dialogue = comm/comandr/comandr.txt +comm.comandr.font = comm/comandr/comandr.fon +comm.comandr.graphics = comm/comandr/comandr.ani +comm.comandr.music = comm/comandr/comandr.mod +comm.comandr.resources = comm/comandr.ls2 +comm.comlowpw.music = comm/comandr/comlowpw.ogg +comm.druuge.colortable = comm/druuge/druuge.ct +comm.druuge.dialogue = comm/druuge/druuge.txt +comm.druuge.font = comm/druuge/druuge.fon +comm.druuge.graphics = comm/druuge/druuge.ani +comm.druuge.music = comm/druuge/druuge.mod +comm.druuge.resources = comm/druuge.ls2 +comm.ilwrath.colortable = comm/ilwrath/ilwrath.ct +comm.ilwrath.dialogue = comm/ilwrath/ilwrath.txt +comm.ilwrath.font = comm/ilwrath/ilwrath.fon +comm.ilwrath.graphics = comm/ilwrath/ilwrath.ani +comm.ilwrath.music = comm/ilwrath/ilwrath.mod +comm.ilwrath.resources = comm/ilwrath.ls2 +comm.melnorm.colortable = comm/melnorm/melnorm.ct +comm.melnorm.dialogue = comm/melnorm/melnorm.txt +comm.melnorm.font = comm/melnorm/melnorm.fon +comm.melnorm.graphics = comm/melnorm/melnorm.ani +comm.melnorm.music = comm/melnorm/melnorm.mod +comm.melnorm.resources = comm/melnorm.ls2 +comm.mycon.colortable = comm/mycon/mycon.ct +comm.mycon.dialogue = comm/mycon/mycon.txt +comm.mycon.font = comm/mycon/mycon.fon +comm.mycon.graphics = comm/mycon/mycon.ani +comm.mycon.music = comm/mycon/mycon.mod +comm.mycon.resources = comm/mycon.ls2 +comm.orz.colortable = comm/orz/orz.ct +comm.orz.dialogue = comm/orz/orz.txt +comm.orz.font = comm/orz/orz.fon +comm.orz.graphics = comm/orz/orz.ani +comm.orz.music = comm/orz/orz.mod +comm.orz.resources = comm/orz.ls2 +comm.pkunk.colortable = comm/pkunk/pkunk.ct +comm.pkunk.dialogue = comm/pkunk/pkunk.txt +comm.pkunk.font = comm/pkunk/pkunk.fon +comm.pkunk.graphics = comm/pkunk/pkunk.ani +comm.pkunk.music = comm/pkunk/pkunk.mod +comm.pkunk.resources = comm/pkunk.ls2 +comm.rebel.dialogue = comm/rebel/rebel.txt +comm.rebel.music = comm/rebel/rebel.ogg +comm.shofixt.colortable = comm/shofixt/shofixt.ct +comm.shofixt.dialogue = comm/shofixt/shofixt.txt +comm.shofixt.font = comm/shofixt/shofixt.fon +comm.shofixt.graphics = comm/shofixt/shofixt.ani +comm.shofixt.music = comm/shofixt/shofixt.mod +comm.shofixt.resources = comm/shofixt.ls2 +comm.slyhome.colortable = comm/slyhome/slyhome.ct +comm.slyhome.dialogue = comm/slyhome/slyhome.txt +comm.slyhome.font = comm/slyhome/slyhome.fon +comm.slyhome.graphics = comm/slyhome/slyhome.ani +comm.slyhome.music = comm/slyhome/slyhome.mod +comm.slyhome.resources = comm/slyhome.ls2 +comm.slyland.colortable = comm/slyland/slyland.ct +comm.slyland.dialogue = comm/slyland/slyland.txt +comm.slyland.font = comm/slyland/slyland.fon +comm.slyland.graphics = comm/slyland/slyland.ani +comm.slyland.music = comm/slyland/slyland.mod +comm.slyland.resources = comm/slyland.ls2 +comm.spafwiff.music = comm/spathi/spafwiff.ogg +comm.spahome.colortable = comm/spahome/spahome.ct +comm.spahome.dialogue = comm/spahome/spahome.txt +comm.spahome.graphics = comm/spahome/spahome.ani +comm.spahome.music = comm/spahome/spahome.ogg +comm.spathi.colortable = comm/spathi/spathi.ct +comm.spathi.dialogue = comm/spathi/spathi.txt +comm.spathi.font = comm/spathi/spathi.fon +comm.spathi.graphics = comm/spathi/spathi.ani +comm.spathi.music = comm/spathi/spathi.mod +comm.spathi.resources = comm/spathi.ls2 +comm.starbas.dialogue = comm/starbas/starbas.txt +comm.starbas.music = comm/starbas/starbas.ogg +comm.supox.colortable = comm/supox/supox.ct +comm.supox.dialogue = comm/supox/supox.txt +comm.supox.font = comm/supox/supox.fon +comm.supox.graphics = comm/supox/supox.ani +comm.supox.music = comm/supox/supox.mod +comm.supox.resources = comm/supox.ls2 +comm.syreen.colortable = comm/syreen/syreen.ct +comm.syreen.dialogue = comm/syreen/syreen.txt +comm.syreen.font = comm/syreen/syreen.fon +comm.syreen.graphics = comm/syreen/syreen.ani +comm.syreen.music = comm/syreen/syreen.mod +comm.syreen.resources = comm/syreen.ls2 +comm.talkpet.colortable = comm/talkpet/talkpet.ct +comm.talkpet.dialogue = comm/talkpet/talkpet.txt +comm.talkpet.font = comm/talkpet/talkpet.fon +comm.talkpet.graphics = comm/talkpet/talkpet.ani +comm.talkpet.music = comm/talkpet/talkpet.mod +comm.talkpet.resources = comm/talkpet.ls2 +comm.thradd.colortable = comm/thradd/thradd.ct +comm.thradd.dialogue = comm/thradd/thradd.txt +comm.thradd.font = comm/thradd/thradd.fon +comm.thradd.graphics = comm/thradd/thradd.ani +comm.thradd.music = comm/thradd/thradd.mod +comm.thradd.resources = comm/thradd.ls2 +comm.umgah.colortable = comm/umgah/umgah.ct +comm.umgah.dialogue = comm/umgah/umgah.txt +comm.umgah.font = comm/umgah/umgah.fon +comm.umgah.graphics = comm/umgah/umgah.ani +comm.umgah.music = comm/umgah/umgah.mod +comm.umgah.resources = comm/umgah.ls2 +comm.urquan.colortable = comm/urquan/urquan.ct +comm.urquan.dialogue = comm/urquan/urquan.txt +comm.urquan.font = comm/urquan/urquan.fon +comm.urquan.graphics = comm/urquan/urquan.ani +comm.urquan.music = comm/urquan/urquan.mod +comm.urquan.resources = comm/urquan.ls2 +comm.utwig.colortable = comm/utwig/utwig.ct +comm.utwig.dialogue = comm/utwig/utwig.txt +comm.utwig.font = comm/utwig/utwig.fon +comm.utwig.graphics = comm/utwig/utwig.ani +comm.utwig.music = comm/utwig/utwig.mod +comm.utwig.resources = comm/utwig.ls2 +comm.utwigult.music = comm/utwig/utwigult.ogg +comm.vux.colortable = comm/vux/vux.ct +comm.vux.dialogue = comm/vux/vux.txt +comm.vux.font = comm/vux/vux.fon +comm.vux.graphics = comm/vux/vux.ani +comm.vux.music = comm/vux/vux.mod +comm.vux.resources = comm/vux.ls2 +comm.yehat.colortable = comm/yehat/yehat.ct +comm.yehat.dialogue = comm/yehat/yehat.txt +comm.yehat.font = comm/yehat/yehat.fon +comm.yehat.graphics = comm/yehat/yehat.ani +comm.yehat.music = comm/yehat/yehat.mod +comm.yehat.resources = comm/yehat.ls2 +comm.zoqfot.colortable = comm/zoqfot/zoqfot.ct +comm.zoqfot.dialogue = comm/zoqfot/zoqfot.txt +comm.zoqfot.font = comm/zoqfot/zoqfot.fon +comm.zoqfot.graphics = comm/zoqfot/zoqfot.ani +comm.zoqfot.music = comm/zoqfot/zoqfot.mod +comm.zoqfot.resources = comm/zoqfot.ls2 +credits.background = credits/credback.ani +credits.credits = credits/credits.txt +credits.creditsmusic = credits/credits.ogg +credits.font.pt13 = credits/pt13.fon +credits.font.pt17 = credits/pt17.fon +credits.font.pt45 = credits/pt45.fon +font.lander = ipanims/lander.fon +font.micro = lbm/micro.fon +font.player = lbm/player.fon +font.starcon = lbm/starcon.fon +font.tiny = lbm/tiny.fon +graphics.aci__big = lbm/aci__big.ani +graphics.aci__med = lbm/aci__med.ani +graphics.aci__sml = lbm/aci__sml.ani +graphics.activity = lbm/activity.ani +graphics.alk__big = lbm/alk__big.ani +graphics.alk__med = lbm/alk__med.ani +graphics.alk__sml = lbm/alk__sml.ani +graphics.ambanim = lbm/ambanim.ani +graphics.aquhelix = ipanims/aquhelix.ani +graphics.arispace = lbm/arispace.ani +graphics.astbig = lbm/astbig.ani +graphics.astmed = lbm/astmed.ani +graphics.astsml = lbm/astsml.ani +graphics.aur__big = lbm/aur__big.ani +graphics.aur__med = lbm/aur__med.ani +graphics.aur__sml = lbm/aur__sml.ani +graphics.azu__big = lbm/azu__big.ani +graphics.azu__med = lbm/azu__med.ani +graphics.azu__sml = lbm/azu__sml.ani +graphics.blabig = lbm/blabig.ani +graphics.blamed = lbm/blamed.ani +graphics.blasml = lbm/blasml.ani +graphics.blg__big = lbm/blg__big.ani +graphics.blg__med = lbm/blg__med.ani +graphics.blg__sml = lbm/blg__sml.ani +graphics.boobig = lbm/boobig.ani +graphics.boomed = lbm/boomed.ani +graphics.boosml = lbm/boosml.ani +graphics.car__big = lbm/car__big.ani +graphics.car__med = lbm/car__med.ani +graphics.car__sml = lbm/car__sml.ani +graphics.chl__big = lbm/chl__big.ani +graphics.chl__med = lbm/chl__med.ani +graphics.chl__sml = lbm/chl__sml.ani +graphics.cho__big = lbm/cho__big.ani +graphics.cho__med = lbm/cho__med.ani +graphics.cho__sml = lbm/cho__sml.ani +graphics.cim__big = lbm/cim__big.ani +graphics.cim__med = lbm/cim__med.ani +graphics.cim__sml = lbm/cim__sml.ani +graphics.cop__big = lbm/cop__big.ani +graphics.cop__med = lbm/cop__med.ani +graphics.cop__sml = lbm/cop__sml.ani +graphics.cra__big = lbm/cra__big.ani +graphics.cra__med = lbm/cra__med.ani +graphics.cra__sml = lbm/cra__sml.ani +graphics.cri__big = lbm/cri__big.ani +graphics.cri__med = lbm/cri__med.ani +graphics.cri__sml = lbm/cri__sml.ani +graphics.cya__big = lbm/cya__big.ani +graphics.cya__med = lbm/cya__med.ani +graphics.cya__sml = lbm/cya__sml.ani +graphics.cyg__big = lbm/cyg__big.ani +graphics.cyg__med = lbm/cyg__med.ani +graphics.cyg__sml = lbm/cyg__sml.ani +graphics.deg__big = lbm/deg__big.ani +graphics.deg__med = lbm/deg__med.ani +graphics.deg__sml = lbm/deg__sml.ani +graphics.drutrans = ipanims/drutrans.ani +graphics.dus__big = lbm/dus__big.ani +graphics.dus__med = lbm/dus__med.ani +graphics.dus__sml = lbm/dus__sml.ani +graphics.eartmask = ipanims/eartmask.ani +graphics.eggcase = ipanims/eggcase.ani +graphics.eme__big = lbm/eme__big.ani +graphics.eme__med = lbm/eme__med.ani +graphics.eme__sml = lbm/eme__sml.ani +graphics.flagstat = lbm/flagstat.ani +graphics.flu__big = lbm/flu__big.ani +graphics.flu__med = lbm/flu__med.ani +graphics.flu__sml = lbm/flu__sml.ani +graphics.fontgrad = lbm/fontgrad.ani +graphics.gng__big = lbm/gng__big.ani +graphics.gng__med = lbm/gng__med.ani +graphics.gng__sml = lbm/gng__sml.ani +graphics.gre__big = lbm/gre__big.ani +graphics.gre__med = lbm/gre__med.ani +graphics.gre__sml = lbm/gre__sml.ani +graphics.gyg__big = lbm/gyg__big.ani +graphics.gyg__med = lbm/gyg__med.ani +graphics.gyg__sml = lbm/gyg__sml.ani +graphics.hal__big = lbm/hal__big.ani +graphics.hal__med = lbm/hal__med.ani +graphics.hal__sml = lbm/hal__sml.ani +graphics.hyd__big = lbm/hyd__big.ani +graphics.hyd__med = lbm/hyd__med.ani +graphics.hyd__sml = lbm/hyd__sml.ani +graphics.hyperstr = lbm/hyperstr.ani +graphics.inf__big = lbm/inf__big.ani +graphics.inf__med = lbm/inf__med.ani +graphics.inf__sml = lbm/inf__sml.ani +graphics.iod__big = lbm/iod__big.ani +graphics.iod__med = lbm/iod__med.ani +graphics.iod__sml = lbm/iod__sml.ani +graphics.ip_sun = ipanims/ip_sun.ani +graphics.lan__big = lbm/lan__big.ani +graphics.lan__med = lbm/lan__med.ani +graphics.lan__sml = lbm/lan__sml.ani +graphics.lander = ipanims/lander.ani +graphics.landfeff = ipanims/landfeff.ani +graphics.launch = ipanims/launch.ani +graphics.lavaspot = ipanims/lavaspot.ani +graphics.lifea = ipanims/lifea.ani +graphics.lifeb = ipanims/lifeb.ani +graphics.lifec = ipanims/lifec.ani +graphics.lifecan = ipanims/lifecan.ani +graphics.lifed = ipanims/lifed.ani +graphics.lifee = ipanims/lifee.ani +graphics.lifef = ipanims/lifef.ani +graphics.lifeg = ipanims/lifeg.ani +graphics.lifeh = ipanims/lifeh.ani +graphics.lifei = ipanims/lifei.ani +graphics.lifej = ipanims/lifej.ani +graphics.lifek = ipanims/lifek.ani +graphics.lifel = ipanims/lifel.ani +graphics.lifem = ipanims/lifem.ani +graphics.lifen = ipanims/lifen.ani +graphics.lifeo = ipanims/lifeo.ani +graphics.lifep = ipanims/lifep.ani +graphics.lifeq = ipanims/lifeq.ani +graphics.lifer = ipanims/lifer.ani +graphics.lifes = ipanims/lifes.ani +graphics.lifet = ipanims/lifet.ani +graphics.lifeu = ipanims/lifeu.ani +graphics.lifev = ipanims/lifev.ani +graphics.lifew = ipanims/lifew.ani +graphics.lifex = ipanims/lifex.ani +graphics.lifey = ipanims/lifey.ani +graphics.lifez = ipanims/lifez.ani +graphics.lightnin = ipanims/lightnin.ani +graphics.lndrshld = ipanims/lndrshld.ani +graphics.maidens = ipanims/maidens.ani +graphics.mar__big = lbm/mar__big.ani +graphics.mar__med = lbm/mar__med.ani +graphics.mar__sml = lbm/mar__sml.ani +graphics.melebkgd = melee/melebkgd.ani +graphics.melee = melee/melee.ani +graphics.mgm__big = lbm/mgm__big.ani +graphics.mgm__med = lbm/mgm__med.ani +graphics.mgm__sml = lbm/mgm__sml.ani +graphics.mgn__big = lbm/mgn__big.ani +graphics.mgn__med = lbm/mgn__med.ani +graphics.mgn__sml = lbm/mgn__sml.ani +graphics.miscdata = lbm/miscdata.ani +graphics.modules = lbm/modules.ani +graphics.moonbase = ipanims/moonbase.ani +graphics.mtl__big = lbm/mtl__big.ani +graphics.mtl__med = lbm/mtl__med.ani +graphics.mtl__sml = lbm/mtl__sml.ani +graphics.newgame = lbm/newgame.ani +graphics.nob__big = lbm/nob__big.ani +graphics.nob__med = lbm/nob__med.ani +graphics.nob__sml = lbm/nob__sml.ani +graphics.obbkgnd = ipanims/obbkgnd.ani +graphics.ool__big = lbm/ool__big.ani +graphics.ool__med = lbm/ool__med.ani +graphics.ool__sml = lbm/ool__sml.ani +graphics.opa__big = lbm/opa__big.ani +graphics.opa__med = lbm/opa__med.ani +graphics.opa__sml = lbm/opa__sml.ani +graphics.orbenter = ipanims/orbenter.ani +graphics.orbplan = ipanims/orbplan.ani +graphics.orbview = ipanims/orbview.ani +graphics.org__big = lbm/org__big.ani +graphics.org__med = lbm/org__med.ani +graphics.org__sml = lbm/org__sml.ani +graphics.outfit = lbm/outfit.ani +graphics.pel__big = lbm/pel__big.ani +graphics.pel__med = lbm/pel__med.ani +graphics.pel__sml = lbm/pel__sml.ani +graphics.pickship = lbm/pickship.ani +graphics.playmenu = lbm/playmenu.ani +graphics.plu__big = lbm/plu__big.ani +graphics.plu__med = lbm/plu__med.ani +graphics.plu__sml = lbm/plu__sml.ani +graphics.pri__big = lbm/pri__big.ani +graphics.pri__med = lbm/pri__med.ani +graphics.pri__sml = lbm/pri__sml.ani +graphics.pug__big = lbm/pug__big.ani +graphics.pug__med = lbm/pug__med.ani +graphics.pug__sml = lbm/pug__sml.ani +graphics.pur__big = lbm/pur__big.ani +graphics.pur__med = lbm/pur__med.ani +graphics.pur__sml = lbm/pur__sml.ani +graphics.quake = ipanims/quake.ani +graphics.rad__big = lbm/rad__big.ani +graphics.rad__med = lbm/rad__med.ani +graphics.rad__sml = lbm/rad__sml.ani +graphics.rai__big = lbm/rai__big.ani +graphics.rai__med = lbm/rai__med.ani +graphics.rai__sml = lbm/rai__sml.ani +graphics.red__big = lbm/red__big.ani +graphics.red__med = lbm/red__med.ani +graphics.red__sml = lbm/red__sml.ani +graphics.reg__big = lbm/reg__big.ani +graphics.reg__med = lbm/reg__med.ani +graphics.reg__sml = lbm/reg__sml.ani +graphics.return = ipanims/return.ani +graphics.rub__big = lbm/rub__big.ani +graphics.rub__med = lbm/rub__med.ani +graphics.rub__sml = lbm/rub__sml.ani +graphics.ruins = ipanims/ruins.ani +graphics.sam__big = lbm/sam__big.ani +graphics.sap__big = lbm/sap__big.ani +graphics.sap__med = lbm/sap__med.ani +graphics.sap__sml = lbm/sap__sml.ani +graphics.segue = lbm/segue.ani +graphics.sel__big = lbm/sel__big.ani +graphics.sel__med = lbm/sel__med.ani +graphics.sel__sml = lbm/sel__sml.ani +graphics.setupmenu = lbm/setupmenu.ani +graphics.shie_big = lbm/shie_big.ani +graphics.shie_med = lbm/shie_med.ani +graphics.shie_sml = lbm/shie_sml.ani +graphics.shipyard = lbm/shipyard.ani +graphics.sis_ip = ipanims/sis_ip.ani +graphics.sisblu = lbm/sisblu.ani +graphics.sismods = lbm/sismods.ani +graphics.sisskeleton = slides/ending/sis_skel.ani +graphics.spapluto = ipanims/spapluto.ani +graphics.starbase = lbm/starbase.ani +graphics.stars = lbm/stars.ani +graphics.status = lbm/status.ani +graphics.sundevic = ipanims/sundevic.ani +graphics.sup__big = lbm/sup__big.ani +graphics.sup__med = lbm/sup__med.ani +graphics.sup__sml = lbm/sup__sml.ani +graphics.syrvault = ipanims/syrvault.ani +graphics.taadevic = ipanims/taadevic.ani +graphics.tel__big = lbm/tel__big.ani +graphics.tel__med = lbm/tel__med.ani +graphics.tel__sml = lbm/tel__sml.ani +graphics.title = lbm/title.ani +graphics.tre__big = lbm/tre__big.ani +graphics.tre__med = lbm/tre__med.ani +graphics.tre__sml = lbm/tre__sml.ani +graphics.ult__big = lbm/ult__big.ani +graphics.ult__med = lbm/ult__med.ani +graphics.ult__sml = lbm/ult__sml.ani +graphics.umgtrans = ipanims/umgtrans.ani +graphics.ure__big = lbm/ure__big.ani +graphics.ure__med = lbm/ure__med.ani +graphics.ure__sml = lbm/ure__sml.ani +graphics.urqwreck = ipanims/urqwreck.ani +graphics.utwbomb = ipanims/utwbomb.ani +graphics.vig__big = lbm/vig__big.ani +graphics.vig__med = lbm/vig__med.ani +graphics.vig__sml = lbm/vig__sml.ani +graphics.vin__big = lbm/vin__big.ani +graphics.vin__med = lbm/vin__med.ani +graphics.vin__sml = lbm/vin__sml.ani +graphics.wat__big = lbm/wat__big.ani +graphics.wat__med = lbm/wat__med.ani +graphics.wat__sml = lbm/wat__sml.ani +graphics.xen__big = lbm/xen__big.ani +graphics.xen__med = lbm/xen__med.ani +graphics.xen__sml = lbm/xen__sml.ani +graphics.yeg__big = lbm/yeg__big.ani +graphics.yeg__med = lbm/yeg__med.ani +graphics.yeg__sml = lbm/yeg__sml.ani +graphics.ytt__big = lbm/ytt__big.ani +graphics.ytt__med = lbm/ytt__med.ani +graphics.ytt__sml = lbm/ytt__sml.ani +music.arispace = lbm/arispace.mod +music.battle = lbm/battle.mod +music.hyper = lbm/hyper.mod +music.mainmenu = lbm/mainmenu.ogg +music.meleemenu = melee/melemenu.ogg +music.orbit1 = ipanims/orbit1.mod +music.orbit2 = ipanims/orbit2.mod +music.orbit3 = ipanims/orbit3.mod +music.orbit4 = ipanims/orbit4.mod +music.orbit5 = ipanims/orbit5.mod +music.outfit = lbm/outfit.mod +music.redalert = lbm/redalert.mod +music.shipyard = lbm/shipyard.mod +music.space = ipanims/space.mod +music.starbase = lbm/starbase.mod +ship.androsyn.code = androsyn/androsyn.cod +ship.androsyn.ditty = androsyn/andditty.mod +ship.androsyn.graphics.androsyn.large = androsyn/androsyn.big +ship.androsyn.graphics.androsyn.medium = androsyn/androsyn.med +ship.androsyn.graphics.androsyn.small = androsyn/androsyn.sml +ship.androsyn.graphics.blazer.large = androsyn/blazer.big +ship.androsyn.graphics.blazer.medium = androsyn/blazer.med +ship.androsyn.graphics.blazer.small = androsyn/blazer.sml +ship.androsyn.graphics.bubble.large = androsyn/bubble.big +ship.androsyn.graphics.bubble.medium = androsyn/bubble.med +ship.androsyn.graphics.bubble.small = androsyn/bubble.sml +ship.androsyn.graphics.captain = androsyn/andcap.ani +ship.androsyn.icons = androsyn/andicons.ani +ship.androsyn.meleeicons = androsyn/andmicon.ani +ship.androsyn.resources = androsyn.ls2 +ship.androsyn.sounds = androsyn/andsound.snd +ship.androsyn.text = androsyn/andtext.txt +ship.arilou.code = arilou/arilou.cod +ship.arilou.ditty = arilou/ariditty.mod +ship.arilou.graphics.arilou.large = arilou/arilou.big +ship.arilou.graphics.arilou.medium = arilou/arilou.med +ship.arilou.graphics.arilou.small = arilou/arilou.sml +ship.arilou.graphics.captain = arilou/aricap.ani +ship.arilou.graphics.warp.large = arilou/warp.big +ship.arilou.graphics.warp.medium = arilou/warp.med +ship.arilou.graphics.warp.small = arilou/warp.sml +ship.arilou.icons = arilou/ariicons.ani +ship.arilou.meleeicons = arilou/arimicon.ani +ship.arilou.resources = arilou.ls2 +ship.arilou.sounds = arilou/arisound.snd +ship.arilou.text = arilou/aritext.txt +ship.blackurq.code = blackurq/blackurq.cod +ship.blackurq.ditty = blackurq/bladitty.mod +ship.blackurq.graphics.blackurq.large = blackurq/blackurq.big +ship.blackurq.graphics.blackurq.medium = blackurq/blackurq.med +ship.blackurq.graphics.blackurq.small = blackurq/blackurq.sml +ship.blackurq.graphics.buz.large = blackurq/buzbig.ani +ship.blackurq.graphics.buz.medium = blackurq/buzmed.ani +ship.blackurq.graphics.buz.small = blackurq/buzsml.ani +ship.blackurq.graphics.captain = blackurq/blacap.ani +ship.blackurq.graphics.gas.large = blackurq/gasbig.ani +ship.blackurq.graphics.gas.medium = blackurq/gasmed.ani +ship.blackurq.graphics.gas.small = blackurq/gassml.ani +ship.blackurq.icons = blackurq/blaicons.ani +ship.blackurq.meleeicons = blackurq/blamicon.ani +ship.blackurq.resources = blackurq.ls2 +ship.blackurq.sounds = blackurq/blasound.snd +ship.blackurq.text = blackurq/blatext.txt +ship.chenjesu.code = chenjesu/chenjesu.cod +ship.chenjesu.ditty = chenjesu/cheditty.mod +ship.chenjesu.graphics.captain = chenjesu/checap.ani +ship.chenjesu.graphics.chenjesu.large = chenjesu/chenjesu.big +ship.chenjesu.graphics.chenjesu.medium = chenjesu/chenjesu.med +ship.chenjesu.graphics.chenjesu.small = chenjesu/chenjesu.sml +ship.chenjesu.graphics.doggy.large = chenjesu/doggy.big +ship.chenjesu.graphics.doggy.medium = chenjesu/doggy.med +ship.chenjesu.graphics.doggy.small = chenjesu/doggy.sml +ship.chenjesu.graphics.spark.large = chenjesu/spark.big +ship.chenjesu.graphics.spark.medium = chenjesu/spark.med +ship.chenjesu.graphics.spark.small = chenjesu/spark.sml +ship.chenjesu.icons = chenjesu/cheicons.ani +ship.chenjesu.meleeicons = chenjesu/chemicon.ani +ship.chenjesu.resources = chenjesu.ls2 +ship.chenjesu.sounds = chenjesu/chesound.snd +ship.chenjesu.text = chenjesu/chetext.txt +ship.chmmr.code = chmmr/chmmr.cod +ship.chmmr.ditty = chmmr/chmditty.mod +ship.chmmr.graphics.captain = chmmr/chmcap.ani +ship.chmmr.graphics.chmmr.large = chmmr/chmmr.big +ship.chmmr.graphics.chmmr.medium = chmmr/chmmr.med +ship.chmmr.graphics.chmmr.small = chmmr/chmmr.sml +ship.chmmr.graphics.muz.large = chmmr/muzbig.ani +ship.chmmr.graphics.muz.medium = chmmr/muzmed.ani +ship.chmmr.graphics.muz.small = chmmr/muzsml.ani +ship.chmmr.graphics.sat.large = chmmr/satbig.ani +ship.chmmr.graphics.sat.medium = chmmr/satmed.ani +ship.chmmr.graphics.sat.small = chmmr/satsml.ani +ship.chmmr.icons = chmmr/chmicons.ani +ship.chmmr.meleeicons = chmmr/chmmicon.ani +ship.chmmr.resources = chmmr.ls2 +ship.chmmr.sounds = chmmr/chmsound.snd +ship.chmmr.text = chmmr/chmtext.txt +ship.druuge.code = druuge/druuge.cod +ship.druuge.ditty = druuge/druditty.mod +ship.druuge.graphics.can.large = druuge/canbig.ani +ship.druuge.graphics.can.medium = druuge/canmed.ani +ship.druuge.graphics.can.small = druuge/cansml.ani +ship.druuge.graphics.captain = druuge/drucap.ani +ship.druuge.graphics.druuge.large = druuge/druuge.big +ship.druuge.graphics.druuge.medium = druuge/druuge.med +ship.druuge.graphics.druuge.small = druuge/druuge.sml +ship.druuge.icons = druuge/druicons.ani +ship.druuge.meleeicons = druuge/drumicon.ani +ship.druuge.resources = druuge.ls2 +ship.druuge.sounds = druuge/drusound.snd +ship.druuge.text = druuge/drutext.txt +ship.human.code = human/human.cod +ship.human.ditty = human/humditty.mod +ship.human.graphics.captain = human/humcap.ani +ship.human.graphics.human.large = human/human.big +ship.human.graphics.human.medium = human/human.med +ship.human.graphics.human.small = human/human.sml +ship.human.graphics.saturn.large = human/saturn.big +ship.human.graphics.saturn.medium = human/saturn.med +ship.human.graphics.saturn.small = human/saturn.sml +ship.human.icons = human/humicons.ani +ship.human.meleeicons = human/hummicon.ani +ship.human.resources = human.ls2 +ship.human.sounds = human/humsound.snd +ship.human.text = human/humtext.txt +ship.ilwrath.code = ilwrath/ilwrath.cod +ship.ilwrath.ditty = ilwrath/ilwditty.mod +ship.ilwrath.graphics.captain = ilwrath/ilwcap.ani +ship.ilwrath.graphics.fire.large = ilwrath/fire.big +ship.ilwrath.graphics.fire.medium = ilwrath/fire.med +ship.ilwrath.graphics.fire.small = ilwrath/fire.sml +ship.ilwrath.graphics.ilwrath.large = ilwrath/ilwrath.big +ship.ilwrath.graphics.ilwrath.medium = ilwrath/ilwrath.med +ship.ilwrath.graphics.ilwrath.small = ilwrath/ilwrath.sml +ship.ilwrath.icons = ilwrath/ilwicons.ani +ship.ilwrath.meleeicons = ilwrath/ilwmicon.ani +ship.ilwrath.resources = ilwrath.ls2 +ship.ilwrath.sounds = ilwrath/ilwsound.snd +ship.ilwrath.text = ilwrath/ilwtext.txt +ship.lastbat.code = lastbat/lastbat.cod +ship.lastbat.graphics.captain = lastbat/lascap.ani +ship.lastbat.graphics.gen.large = lastbat/genbig.ani +ship.lastbat.graphics.gen.medium = lastbat/genmed.ani +ship.lastbat.graphics.gen.small = lastbat/gensml.ani +ship.lastbat.graphics.lastbat.large = lastbat/lastbat.big +ship.lastbat.graphics.lastbat.medium = lastbat/lastbat.med +ship.lastbat.graphics.lastbat.small = lastbat/lastbat.sml +ship.lastbat.graphics.sen.large = lastbat/senbig.ani +ship.lastbat.graphics.sen.medium = lastbat/senmed.ani +ship.lastbat.graphics.sen.small = lastbat/sensml.ani +ship.lastbat.resources = lastbat.ls2 +ship.lastbat.sounds = lastbat/lassound.snd +ship.melnorme.code = melnorme/melnorme.cod +ship.melnorme.ditty = melnorme/melditty.mod +ship.melnorme.graphics.captain = melnorme/melcap.ani +ship.melnorme.graphics.confu.large = melnorme/confubig.ani +ship.melnorme.graphics.confu.medium = melnorme/confumed.ani +ship.melnorme.graphics.confu.small = melnorme/confusml.ani +ship.melnorme.graphics.melnorme.large = melnorme/melnorme.big +ship.melnorme.graphics.melnorme.medium = melnorme/melnorme.med +ship.melnorme.graphics.melnorme.small = melnorme/melnorme.sml +ship.melnorme.graphics.pump.large = melnorme/pumpbig.ani +ship.melnorme.graphics.pump.medium = melnorme/pumpmed.ani +ship.melnorme.graphics.pump.small = melnorme/pumpsml.ani +ship.melnorme.icons = melnorme/melicons.ani +ship.melnorme.meleeicons = melnorme/melmicon.ani +ship.melnorme.resources = melnorme.ls2 +ship.melnorme.sounds = melnorme/melsound.snd +ship.melnorme.text = melnorme/meltext.txt +ship.mmrnmhrm.code = mmrnmhrm/mmrnmhrm.cod +ship.mmrnmhrm.ditty = mmrnmhrm/mmrditty.mod +ship.mmrnmhrm.graphics.captain = mmrnmhrm/mmrcap.ani +ship.mmrnmhrm.graphics.mmrnmhrm.large = mmrnmhrm/mmrnmhrm.big +ship.mmrnmhrm.graphics.mmrnmhrm.medium = mmrnmhrm/mmrnmhrm.med +ship.mmrnmhrm.graphics.mmrnmhrm.small = mmrnmhrm/mmrnmhrm.sml +ship.mmrnmhrm.graphics.torp.large = mmrnmhrm/torp.big +ship.mmrnmhrm.graphics.torp.medium = mmrnmhrm/torp.med +ship.mmrnmhrm.graphics.torp.small = mmrnmhrm/torp.sml +ship.mmrnmhrm.graphics.ywing.large = mmrnmhrm/ywing.big +ship.mmrnmhrm.graphics.ywing.medium = mmrnmhrm/ywing.med +ship.mmrnmhrm.graphics.ywing.small = mmrnmhrm/ywing.sml +ship.mmrnmhrm.icons = mmrnmhrm/mmricons.ani +ship.mmrnmhrm.meleeicons = mmrnmhrm/mmrmicon.ani +ship.mmrnmhrm.resources = mmrnmhrm.ls2 +ship.mmrnmhrm.sounds = mmrnmhrm/mmrsound.snd +ship.mmrnmhrm.text = mmrnmhrm/mmrtext.txt +ship.mycon.code = mycon/mycon.cod +ship.mycon.ditty = mycon/mycditty.mod +ship.mycon.graphics.captain = mycon/myccap.ani +ship.mycon.graphics.mycon.large = mycon/mycon.big +ship.mycon.graphics.mycon.medium = mycon/mycon.med +ship.mycon.graphics.mycon.small = mycon/mycon.sml +ship.mycon.graphics.plasma.large = mycon/plasma.big +ship.mycon.graphics.plasma.medium = mycon/plasma.med +ship.mycon.graphics.plasma.small = mycon/plasma.sml +ship.mycon.icons = mycon/mycicons.ani +ship.mycon.meleeicons = mycon/mycmicon.ani +ship.mycon.resources = mycon.ls2 +ship.mycon.sounds = mycon/mycsound.snd +ship.mycon.text = mycon/myctext.txt +ship.orz.code = orz/orz.cod +ship.orz.ditty = orz/orzditty.mod +ship.orz.graphics.captain = orz/orzcap.ani +ship.orz.graphics.how.large = orz/howbig.ani +ship.orz.graphics.how.medium = orz/howmed.ani +ship.orz.graphics.how.small = orz/howsml.ani +ship.orz.graphics.orz.large = orz/orz.big +ship.orz.graphics.orz.medium = orz/orz.med +ship.orz.graphics.orz.small = orz/orz.sml +ship.orz.graphics.tur.large = orz/turbig.ani +ship.orz.graphics.tur.medium = orz/turmed.ani +ship.orz.graphics.tur.small = orz/tursml.ani +ship.orz.icons = orz/orzicons.ani +ship.orz.meleeicons = orz/orzmicon.ani +ship.orz.resources = orz.ls2 +ship.orz.sounds = orz/orzsound.snd +ship.orz.text = orz/orztext.txt +ship.pkunk.code = pkunk/pkunk.cod +ship.pkunk.ditty = pkunk/pkuditty.mod +ship.pkunk.graphics.bug.large = pkunk/bugbig.ani +ship.pkunk.graphics.bug.medium = pkunk/bugmed.ani +ship.pkunk.graphics.bug.small = pkunk/bugsml.ani +ship.pkunk.graphics.captain = pkunk/pkucap.ani +ship.pkunk.graphics.pkunk.large = pkunk/pkunk.big +ship.pkunk.graphics.pkunk.medium = pkunk/pkunk.med +ship.pkunk.graphics.pkunk.small = pkunk/pkunk.sml +ship.pkunk.icons = pkunk/pkuicons.ani +ship.pkunk.meleeicons = pkunk/pkumicon.ani +ship.pkunk.resources = pkunk.ls2 +ship.pkunk.sounds = pkunk/pkusound.snd +ship.pkunk.text = pkunk/pkutext.txt +ship.probe.code = probe/probe.cod +ship.probe.meleeicons = probe/promicon.ani +ship.probe.resources = probe.ls2 +ship.shofixti.code = shofixti/shofixti.cod +ship.shofixti.ditty = shofixti/shoditty.mod +ship.shofixti.graphics.captain = shofixti/shocap.ani +ship.shofixti.graphics.destruct.large = shofixti/destruct.big +ship.shofixti.graphics.destruct.medium = shofixti/destruct.med +ship.shofixti.graphics.destruct.small = shofixti/destruct.sml +ship.shofixti.graphics.missile.large = shofixti/missile.big +ship.shofixti.graphics.missile.medium = shofixti/missile.med +ship.shofixti.graphics.missile.small = shofixti/missile.sml +ship.shofixti.graphics.oldcaptain = shofixti/oldcap.ani +ship.shofixti.graphics.oldshof.large = shofixti/oldshof.big +ship.shofixti.graphics.oldshof.medium = shofixti/oldshof.med +ship.shofixti.graphics.oldshof.small = shofixti/oldshof.sml +ship.shofixti.graphics.shofixti.large = shofixti/shofixti.big +ship.shofixti.graphics.shofixti.medium = shofixti/shofixti.med +ship.shofixti.graphics.shofixti.small = shofixti/shofixti.sml +ship.shofixti.icons = shofixti/shoicons.ani +ship.shofixti.meleeicons = shofixti/shomicon.ani +ship.shofixti.resources = shofixti.ls2 +ship.shofixti.sounds = shofixti/shosound.snd +ship.shofixti.text = shofixti/shotext.txt +ship.sis.resources = sis.ls2 +ship.sis_ship.code = sis_ship/sis.cod +ship.sis_ship.ditty = sis_ship/sisditty.mod +ship.sis_ship.graphics.blas.large = sis_ship/blasbig.ani +ship.sis_ship.graphics.blas.medium = sis_ship/blasmed.ani +ship.sis_ship.graphics.blas.small = sis_ship/blassml.ani +ship.sis_ship.graphics.captain = sis_ship/siscap.ani +ship.sis_ship.graphics.sis.large = sis_ship/sis.big +ship.sis_ship.graphics.sis.medium = sis_ship/sis.med +ship.sis_ship.graphics.sis.small = sis_ship/sis.sml +ship.sis_ship.graphics.sishyper = sis_ship/sishyper.ani +ship.sis_ship.icons = sis_ship/sisicons.ani +ship.sis_ship.sounds = sis_ship/sissound.snd +ship.slides/ending.text = slides/ending/ending.txt +ship.slides/intro.text = slides/intro/intro.txt +ship.slylandr.code = slylandr/slylandr.cod +ship.slylandr.ditty = slylandr/slyditty.mod +ship.slylandr.graphics.captain = slylandr/slycap.ani +ship.slylandr.graphics.slylandr.large = slylandr/slylandr.big +ship.slylandr.graphics.slylandr.medium = slylandr/slylandr.med +ship.slylandr.graphics.slylandr.small = slylandr/slylandr.sml +ship.slylandr.icons = slylandr/slyicons.ani +ship.slylandr.meleeicons = slylandr/slymicon.ani +ship.slylandr.resources = slylandr.ls2 +ship.slylandr.sounds = slylandr/slysound.snd +ship.slylandr.text = slylandr/slytext.txt +ship.spathi.code = spathi/spathi.cod +ship.spathi.ditty = spathi/spaditty.mod +ship.spathi.graphics.captain = spathi/spacap.ani +ship.spathi.graphics.discrim.large = spathi/discrim.big +ship.spathi.graphics.discrim.medium = spathi/discrim.med +ship.spathi.graphics.discrim.small = spathi/discrim.sml +ship.spathi.graphics.missile.large = spathi/missile.big +ship.spathi.graphics.missile.medium = spathi/missile.med +ship.spathi.graphics.missile.small = spathi/missile.sml +ship.spathi.graphics.spathi.large = spathi/spathi.big +ship.spathi.graphics.spathi.medium = spathi/spathi.med +ship.spathi.graphics.spathi.small = spathi/spathi.sml +ship.spathi.icons = spathi/spaicons.ani +ship.spathi.meleeicons = spathi/spamicon.ani +ship.spathi.resources = spathi.ls2 +ship.spathi.sounds = spathi/spasound.snd +ship.spathi.text = spathi/spatext.txt +ship.supox.code = supox/supox.cod +ship.supox.ditty = supox/supditty.mod +ship.supox.graphics.captain = supox/supcap.ani +ship.supox.graphics.gob.large = supox/gobbig.ani +ship.supox.graphics.gob.medium = supox/gobmed.ani +ship.supox.graphics.gob.small = supox/gobsml.ani +ship.supox.graphics.supox.large = supox/supox.big +ship.supox.graphics.supox.medium = supox/supox.med +ship.supox.graphics.supox.small = supox/supox.sml +ship.supox.icons = supox/supicons.ani +ship.supox.meleeicons = supox/supmicon.ani +ship.supox.resources = supox.ls2 +ship.supox.sounds = supox/supsound.snd +ship.supox.text = supox/suptext.txt +ship.syreen.code = syreen/syreen.cod +ship.syreen.ditty = syreen/syrditty.mod +ship.syreen.graphics.captain = syreen/syrcap.ani +ship.syreen.graphics.dagger.large = syreen/dagger.big +ship.syreen.graphics.dagger.medium = syreen/dagger.med +ship.syreen.graphics.dagger.small = syreen/dagger.sml +ship.syreen.graphics.syreen.large = syreen/syreen.big +ship.syreen.graphics.syreen.medium = syreen/syreen.med +ship.syreen.graphics.syreen.small = syreen/syreen.sml +ship.syreen.icons = syreen/syricons.ani +ship.syreen.meleeicons = syreen/syrmicon.ani +ship.syreen.resources = syreen.ls2 +ship.syreen.sounds = syreen/syrsound.snd +ship.syreen.text = syreen/syrtext.txt +ship.thradd.code = thradd/thradd.cod +ship.thradd.ditty = thradd/thrditty.mod +ship.thradd.graphics.captain = thradd/thrcap.ani +ship.thradd.graphics.hor.large = thradd/horbig.ani +ship.thradd.graphics.hor.medium = thradd/hormed.ani +ship.thradd.graphics.hor.small = thradd/horsml.ani +ship.thradd.graphics.nap.large = thradd/napbig.ani +ship.thradd.graphics.nap.medium = thradd/napmed.ani +ship.thradd.graphics.nap.small = thradd/napsml.ani +ship.thradd.graphics.thradd.large = thradd/thradd.big +ship.thradd.graphics.thradd.medium = thradd/thradd.med +ship.thradd.graphics.thradd.small = thradd/thradd.sml +ship.thradd.icons = thradd/thricons.ani +ship.thradd.meleeicons = thradd/thrmicon.ani +ship.thradd.resources = thradd.ls2 +ship.thradd.sounds = thradd/thrsound.snd +ship.thradd.text = thradd/thrtext.txt +ship.umgah.code = umgah/umgah.cod +ship.umgah.ditty = umgah/umgditty.mod +ship.umgah.graphics.captain = umgah/umgcap.ani +ship.umgah.graphics.cone.large = umgah/cone.big +ship.umgah.graphics.cone.medium = umgah/cone.med +ship.umgah.graphics.cone.small = umgah/cone.sml +ship.umgah.graphics.spritz = umgah/spritz.ani +ship.umgah.graphics.umgah.large = umgah/umgah.big +ship.umgah.graphics.umgah.medium = umgah/umgah.med +ship.umgah.graphics.umgah.small = umgah/umgah.sml +ship.umgah.icons = umgah/umgicons.ani +ship.umgah.meleeicons = umgah/umgmicon.ani +ship.umgah.resources = umgah.ls2 +ship.umgah.sounds = umgah/umgsound.snd +ship.umgah.text = umgah/umgtext.txt +ship.urquan.code = urquan/urquan.cod +ship.urquan.ditty = urquan/urqditty.mod +ship.urquan.graphics.captain = urquan/urqcap.ani +ship.urquan.graphics.fight.large = urquan/fight.big +ship.urquan.graphics.fight.medium = urquan/fight.med +ship.urquan.graphics.fight.small = urquan/fight.sml +ship.urquan.graphics.fusion.large = urquan/fusion.big +ship.urquan.graphics.fusion.medium = urquan/fusion.med +ship.urquan.graphics.fusion.small = urquan/fusion.sml +ship.urquan.graphics.urquan.large = urquan/urquan.big +ship.urquan.graphics.urquan.medium = urquan/urquan.med +ship.urquan.graphics.urquan.small = urquan/urquan.sml +ship.urquan.icons = urquan/urqicons.ani +ship.urquan.meleeicons = urquan/urqmicon.ani +ship.urquan.resources = urquan.ls2 +ship.urquan.sounds = urquan/urqsound.snd +ship.urquan.text = urquan/urqtext.txt +ship.utwig.code = utwig/utwig.cod +ship.utwig.ditty = utwig/utwditty.mod +ship.utwig.graphics.captain = utwig/utwcap.ani +ship.utwig.graphics.lan.large = utwig/lanbig.ani +ship.utwig.graphics.lan.medium = utwig/lanmed.ani +ship.utwig.graphics.lan.small = utwig/lansml.ani +ship.utwig.graphics.utwig.large = utwig/utwig.big +ship.utwig.graphics.utwig.medium = utwig/utwig.med +ship.utwig.graphics.utwig.small = utwig/utwig.sml +ship.utwig.icons = utwig/utwicons.ani +ship.utwig.meleeicons = utwig/utwmicon.ani +ship.utwig.resources = utwig.ls2 +ship.utwig.sounds = utwig/utwsound.snd +ship.utwig.text = utwig/utwtext.txt +ship.vux.code = vux/vux.cod +ship.vux.ditty = vux/vuxditty.mod +ship.vux.graphics.captain = vux/vuxcap.ani +ship.vux.graphics.limpets.large = vux/limpets.big +ship.vux.graphics.limpets.medium = vux/limpets.med +ship.vux.graphics.limpets.small = vux/limpets.sml +ship.vux.graphics.slime = vux/slime.ani +ship.vux.graphics.vux.large = vux/vux.big +ship.vux.graphics.vux.medium = vux/vux.med +ship.vux.graphics.vux.small = vux/vux.sml +ship.vux.icons = vux/vuxicons.ani +ship.vux.meleeicons = vux/vuxmicon.ani +ship.vux.resources = vux.ls2 +ship.vux.sounds = vux/vuxsound.snd +ship.vux.text = vux/vuxtext.txt +ship.yehat.code = yehat/yehat.cod +ship.yehat.ditty = yehat/yehditty.mod +ship.yehat.graphics.captain = yehat/yehcap.ani +ship.yehat.graphics.missile.large = yehat/missile.big +ship.yehat.graphics.missile.medium = yehat/missile.med +ship.yehat.graphics.missile.small = yehat/missile.sml +ship.yehat.graphics.shield.large = yehat/shield.big +ship.yehat.graphics.shield.medium = yehat/shield.med +ship.yehat.graphics.shield.small = yehat/shield.sml +ship.yehat.graphics.yehat.large = yehat/yehat.big +ship.yehat.graphics.yehat.medium = yehat/yehat.med +ship.yehat.graphics.yehat.small = yehat/yehat.sml +ship.yehat.icons = yehat/yehicons.ani +ship.yehat.meleeicons = yehat/yehmicon.ani +ship.yehat.resources = yehat.ls2 +ship.yehat.sounds = yehat/yehsound.snd +ship.yehat.text = yehat/yehtext.txt +ship.zoqfot.code = zoqfot/zoqfot.cod +ship.zoqfot.ditty = zoqfot/zoqditty.mod +ship.zoqfot.graphics.captain = zoqfot/zoqcap.ani +ship.zoqfot.graphics.spit.large = zoqfot/spitbig.ani +ship.zoqfot.graphics.spit.medium = zoqfot/spitmed.ani +ship.zoqfot.graphics.spit.small = zoqfot/spitsml.ani +ship.zoqfot.graphics.sti.large = zoqfot/stibig.ani +ship.zoqfot.graphics.sti.medium = zoqfot/stimed.ani +ship.zoqfot.graphics.sti.small = zoqfot/stisml.ani +ship.zoqfot.graphics.zoqfot.large = zoqfot/zoqfot.big +ship.zoqfot.graphics.zoqfot.medium = zoqfot/zoqfot.med +ship.zoqfot.graphics.zoqfot.small = zoqfot/zoqfot.sml +ship.zoqfot.icons = zoqfot/zoqicons.ani +ship.zoqfot.meleeicons = zoqfot/zoqmicon.ani +ship.zoqfot.resources = zoqfot.ls2 +ship.zoqfot.sounds = zoqfot/zoqsound.snd +ship.zoqfot.text = zoqfot/zoqtext.txt +sounds.game = lbm/gamesnd.snd +sounds.landsnds = ipanims/landsnds.snd +sounds.menu = lbm/menusnd.snd +text.andruins = ipanims/andruins.txt +text.aquhelix = ipanims/aquhelix.txt +text.burruins = ipanims/burruins.txt +text.chmmrbas = ipanims/chmmrbas.txt +text.drutrans = ipanims/drutrans.txt +text.eggcase = ipanims/eggcase.txt +text.joyalpha = lbm/joyalpha.txt +text.maidens = ipanims/maidens.txt +text.moonbase = ipanims/moonbase.txt +text.ruins = ipanims/ruins.txt +text.setupmenu = lbm/setupmenu.txt +text.spapluto = ipanims/spapluto.txt +text.sphere = ipanims/sphere.txt +text.spindle = ipanims/spindle.txt +text.starcon = lbm/starcon.txt +text.sundevic = ipanims/sundevic.txt +text.syrvault = ipanims/syrvault.txt +text.taadevic = ipanims/taadevic.txt +text.umgtrans = ipanims/umgtrans.txt +text.urqwreck = ipanims/urqwreck.txt +text.utwbomb = ipanims/utwbomb.txt +text.vuxbeast = ipanims/vuxbeast.txt +translate.bnd_xlts = ipanims/bnd_xlts.xlt +translate.cry_xlts = ipanims/cry_xlts.xlt +translate.den_xlts = ipanims/den_xlts.xlt +translate.gasg = ipanims/gasg.xlt +translate.grv_xlts = ipanims/grv_xlts.xlt +translate.h2o_xlts = ipanims/h2o_xlts.xlt +translate.hel_xlts = ipanims/hel_xlts.xlt +translate.ice_xlts = ipanims/ice_xlts.xlt +translate.mtl1xlts = ipanims/mtl1xlts.xlt +translate.mtl2xlts = ipanims/mtl2xlts.xlt +translate.rai_xlts = ipanims/rai_xlts.xlt +translate.rdx1xlts = ipanims/rdx1xlts.xlt +translate.rst_xlts = ipanims/rst_xlts.xlt diff --git a/sc2/content/urquan.ls2 b/sc2/content/urquan.ls2 new file mode 100644 index 000000000..75762b765 --- /dev/null +++ b/sc2/content/urquan.ls2 @@ -0,0 +1,16 @@ + 1 0 2 ship.urquan.icons + 1 0 4 ship.urquan.text + 1 0 8 ship.urquan.code + 1 1 2 ship.urquan.meleeicons + 2 0 5 ship.urquan.sounds + 2 0 6 ship.urquan.ditty + 2 2 2 ship.urquan.graphics.urquan.large + 2 3 2 ship.urquan.graphics.urquan.medium + 2 4 2 ship.urquan.graphics.urquan.small + 2 5 2 ship.urquan.graphics.fusion.large + 2 6 2 ship.urquan.graphics.fusion.medium + 2 7 2 ship.urquan.graphics.fusion.small + 2 8 2 ship.urquan.graphics.fight.large + 2 9 2 ship.urquan.graphics.fight.medium + 2 10 2 ship.urquan.graphics.fight.small + 2 11 2 ship.urquan.graphics.captain diff --git a/sc2/content/utwig.ls2 b/sc2/content/utwig.ls2 new file mode 100644 index 000000000..749d523c9 --- /dev/null +++ b/sc2/content/utwig.ls2 @@ -0,0 +1,13 @@ + 1 0 2 ship.utwig.icons + 1 0 4 ship.utwig.text + 1 0 8 ship.utwig.code + 1 1 2 ship.utwig.meleeicons + 2 0 5 ship.utwig.sounds + 2 0 6 ship.utwig.ditty + 2 2 2 ship.utwig.graphics.utwig.large + 2 3 2 ship.utwig.graphics.utwig.medium + 2 4 2 ship.utwig.graphics.utwig.small + 2 5 2 ship.utwig.graphics.lan.large + 2 6 2 ship.utwig.graphics.lan.medium + 2 7 2 ship.utwig.graphics.lan.small + 2 8 2 ship.utwig.graphics.captain diff --git a/sc2/content/vux.ls2 b/sc2/content/vux.ls2 new file mode 100644 index 000000000..fa18c403c --- /dev/null +++ b/sc2/content/vux.ls2 @@ -0,0 +1,14 @@ + 1 0 2 ship.vux.icons + 1 0 4 ship.vux.text + 1 0 8 ship.vux.code + 1 1 2 ship.vux.meleeicons + 2 0 5 ship.vux.sounds + 2 0 6 ship.vux.ditty + 2 2 2 ship.vux.graphics.vux.large + 2 3 2 ship.vux.graphics.vux.medium + 2 4 2 ship.vux.graphics.vux.small + 2 5 2 ship.vux.graphics.limpets.large + 2 6 2 ship.vux.graphics.limpets.medium + 2 7 2 ship.vux.graphics.limpets.small + 2 8 2 ship.vux.graphics.slime + 2 9 2 ship.vux.graphics.captain diff --git a/sc2/content/yehat.ls2 b/sc2/content/yehat.ls2 new file mode 100644 index 000000000..ae8e0e00c --- /dev/null +++ b/sc2/content/yehat.ls2 @@ -0,0 +1,16 @@ + 1 0 2 ship.yehat.icons + 1 0 4 ship.yehat.text + 1 0 8 ship.yehat.code + 1 1 2 ship.yehat.meleeicons + 2 0 5 ship.yehat.sounds + 2 0 6 ship.yehat.ditty + 2 2 2 ship.yehat.graphics.yehat.large + 2 3 2 ship.yehat.graphics.yehat.medium + 2 4 2 ship.yehat.graphics.yehat.small + 2 5 2 ship.yehat.graphics.missile.large + 2 6 2 ship.yehat.graphics.missile.medium + 2 7 2 ship.yehat.graphics.missile.small + 2 8 2 ship.yehat.graphics.shield.large + 2 9 2 ship.yehat.graphics.shield.medium + 2 10 2 ship.yehat.graphics.shield.small + 2 11 2 ship.yehat.graphics.captain diff --git a/sc2/content/zoqfot.ls2 b/sc2/content/zoqfot.ls2 new file mode 100644 index 000000000..d344023f8 --- /dev/null +++ b/sc2/content/zoqfot.ls2 @@ -0,0 +1,16 @@ + 1 0 2 ship.zoqfot.icons + 1 0 4 ship.zoqfot.text + 1 0 8 ship.zoqfot.code + 1 1 2 ship.zoqfot.meleeicons + 2 0 5 ship.zoqfot.sounds + 2 0 6 ship.zoqfot.ditty + 2 2 2 ship.zoqfot.graphics.zoqfot.large + 2 3 2 ship.zoqfot.graphics.zoqfot.medium + 2 4 2 ship.zoqfot.graphics.zoqfot.small + 2 5 2 ship.zoqfot.graphics.spit.large + 2 6 2 ship.zoqfot.graphics.spit.medium + 2 7 2 ship.zoqfot.graphics.spit.small + 2 8 2 ship.zoqfot.graphics.sti.large + 2 9 2 ship.zoqfot.graphics.sti.medium + 2 10 2 ship.zoqfot.graphics.sti.small + 2 11 2 ship.zoqfot.graphics.captain diff --git a/sc2/src/sc2code/libs/reslib.h b/sc2/src/sc2code/libs/reslib.h index 43a5db0ba..55ee85f59 100644 --- a/sc2/src/sc2code/libs/reslib.h +++ b/sc2/src/sc2code/libs/reslib.h @@ -67,8 +67,8 @@ extern long LengthResFile (uio_Stream *fp); extern BOOLEAN res_CloseResFile (uio_Stream *fp); extern BOOLEAN DeleteResFile (uio_DirHandle *dir, const char *filename); -extern MEM_HANDLE InitResourceSystem (const char *resfile, RES_TYPE resType, - BOOLEAN (*FileErrorFun) (const char *filename)); +extern MEM_HANDLE InitResourceSystem (const char *mapfile, const char *resfile, + RES_TYPE resType, BOOLEAN (*FileErrorFun) (const char *filename)); extern void UninitResourceSystem (void); extern BOOLEAN InstallResTypeVectors (RES_TYPE res_type, ResourceLoadFun *loadFun, ResourceFreeFun *freeFun); diff --git a/sc2/src/sc2code/libs/resource/index.h b/sc2/src/sc2code/libs/resource/index.h index fa87440bb..3498a7acc 100644 --- a/sc2/src/sc2code/libs/resource/index.h +++ b/sc2/src/sc2code/libs/resource/index.h @@ -25,6 +25,7 @@ typedef struct { RESOURCE res; char *path; + char *res_id; MEM_HANDLE handle; //COUNT ref; } ResourceDesc; diff --git a/sc2/src/sc2code/libs/resource/resinit.c b/sc2/src/sc2code/libs/resource/resinit.c index 9e63d63ba..2a8dc1d09 100644 --- a/sc2/src/sc2code/libs/resource/resinit.c +++ b/sc2/src/sc2code/libs/resource/resinit.c @@ -83,16 +83,28 @@ lookupResourceIndex (const char *path) #endif static ResourceDesc * -newResourceDesc (RESOURCE res, char *path) +newResourceDesc (RESOURCE res, char *res_id) { ResourceDesc *result; + const char *path; result = HMalloc (sizeof (ResourceDesc)); if (result == NULL) return NULL; + path = res_GetString (res_id); + if (path == NULL) + { + log_add (log_Warning, "Could not decode resource '%s'", res_id); + HFree (result); + return NULL; + } + + // log_add (log_Info, " '%s' -> '%s'.", res_id, path); + result->res = res; result->path = path; + result->res_id = res_id; result->handle = NULL_HANDLE; //result->ref = 0; return result; @@ -305,8 +317,8 @@ _ReleaseResFileData (MEM_HANDLE handle) } MEM_HANDLE -InitResourceSystem (const char *resfile, RES_TYPE resType, BOOLEAN - (*FileErrorFun) (const char *filename)) +InitResourceSystem (const char *mapfile, const char *resfile, RES_TYPE resType, + BOOLEAN (*FileErrorFun) (const char *filename)) { MEM_HANDLE handle; ResourceIndex *ndx; @@ -317,6 +329,8 @@ InitResourceSystem (const char *resfile, RES_TYPE resType, BOOLEAN handlers.loadFun = _GetResFileData; handlers.freeFun = _ReleaseResFileData; + res_LoadFilename (contentDir, mapfile); + SetResourceIndex (NULL_HANDLE); handle = loadResource (resfile, handlers.loadFun); if (handle == NULL_HANDLE) @@ -329,6 +343,7 @@ InitResourceSystem (const char *resfile, RES_TYPE resType, BOOLEAN SetResourceIndex (handle); (void) FileErrorFun; + (void) mapfile; return handle; } diff --git a/sc2/src/sc2code/setup.c b/sc2/src/sc2code/setup.c index c7cd3e81a..36eadcdaa 100644 --- a/sc2/src/sc2code/setup.c +++ b/sc2/src/sc2code/setup.c @@ -111,7 +111,7 @@ LoadKernel (int argc, char *argv[]) SetContextFGFrame (Screen); SetFrameHot (Screen, MAKE_HOT_SPOT (0, 0)); - hResIndex = InitResourceSystem ("starcon.lst", RES_INDEX, NULL); + hResIndex = InitResourceSystem ("uqm.rmp", "starcon.ls2", RES_INDEX, NULL); if (hResIndex == 0) return FALSE; INIT_INSTANCES (); diff --git a/tools/resmap/mastermap.py b/tools/resmap/mastermap.py index c26163fe0..ae990814d 100755 --- a/tools/resmap/mastermap.py +++ b/tools/resmap/mastermap.py @@ -18,7 +18,7 @@ def process (res): if mapline is None: toadd = "# NO MATCH FOR %s" % line else: - toadd = "%s: %s" % (mapline, line) + toadd = "%s = %s" % (mapline, line) if toadd not in result: result.append(toadd) result.sort()