~ubuntu-branches/debian/stretch/opentyrian/stretch

« back to all changes in this revision

Viewing changes to src/musmast.c

  • Committer: Package Import Robot
  • Author(s): Etienne Millon
  • Date: 2015-03-31 08:48:54 UTC
  • Revision ID: package-import@ubuntu.com-20150331084854-f5a4uoz7uv3vopk6
Tags: upstream-2.1.20130907+dfsg
ImportĀ upstreamĀ versionĀ 2.1.20130907+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
 * OpenTyrian: A modern cross-platform port of Tyrian
 
3
 * Copyright (C) 2007-2009  The OpenTyrian Development Team
 
4
 *
 
5
 * This program is free software; you can redistribute it and/or
 
6
 * modify it under the terms of the GNU General Public License
 
7
 * as published by the Free Software Foundation; either version 2
 
8
 * of the License, or (at your option) any later version.
 
9
 *
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program; if not, write to the Free Software
 
17
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
18
 */
 
19
#include "opentyr.h"
 
20
#include "musmast.h"
 
21
 
 
22
 
 
23
JE_byte songBuy;
 
24
 
 
25
const char musicFile[MUSIC_NUM][13] =
 
26
{
 
27
        /*  1 */  "ASTEROI2.DAT",
 
28
        /*  2 */  "ASTEROID.DAT",
 
29
        /*  3 */  "BUY.DAT",
 
30
        /*  4 */  "CAMANIS.DAT",
 
31
        /*  5 */  "CAMANISE.DAT",
 
32
        /*  6 */  "DELIANI.DAT",
 
33
        /*  7 */  "DELIANI2.DAT",
 
34
        /*  8 */  "ENDING1.DAT",
 
35
        /*  9 */  "ENDING2.DAT",
 
36
        /* 10 */  "ENDLEVEL.DAT",
 
37
        /* 11 */  "GAMEOVER.DAT",
 
38
        /* 12 */  "GRYPHON.DAT",
 
39
        /* 13 */  "GRYPHONE.DAT",
 
40
        /* 14 */  "GYGES.DAT",
 
41
        /* 15 */  "GYGESE.DAT",
 
42
        /* 16 */  "HALLOWS.DAT",
 
43
        /* 17 */  "ZICA.DAT",
 
44
        /* 18 */  "TYRSONG2.DAT",
 
45
        /* 19 */  "LOUDNESS.DAT",
 
46
        /* 20 */  "NAVC.DAT",
 
47
        /* 21 */  "SAVARA.DAT",
 
48
        /* 22 */  "SAVARAE.DAT",
 
49
        /* 23 */  "SPACE1.DAT",
 
50
        /* 24 */  "SPACE2.DAT",
 
51
        /* 25 */  "STARENDB.DAT",
 
52
        /* 26 */  "START5.DAT",
 
53
        /* 27 */  "TALK.DAT",
 
54
        /* 28 */  "TORM.DAT",
 
55
        /* 29 */  "TRANSON.DAT",
 
56
        /* 30 */  "TYRSONG.DAT",
 
57
        /* 31 */  "ZANAC3.DAT",
 
58
        /* 32 */  "ZANACS.DAT",
 
59
        /* 33 */  "SAVARA2.DAT",
 
60
        /* 34 */  "HISCORE.DAT",
 
61
        /* 35 */  "TYR4-1.DAT",    /* OMF */
 
62
        /* 36 */  "TYR4-3.DAT",    /* SARAH */
 
63
        /* 37 */  "TYR4-2.DAT",    /* MAGFIELD */
 
64
        /* 38 */  "TYR4-0.DAT",    /* ROCKME */
 
65
        /* 39 */  "TYR4-4.DAT",    /* quiet music */
 
66
        /* 40 */  "TYR4-5.DAT",    /* piano */
 
67
        /* 41 */  "TYR-BEER.DAT"   /* BEER */
 
68
};
 
69
 
 
70
const char musicTitle[MUSIC_NUM][48] =
 
71
{
 
72
        "Asteroid Dance Part 2",
 
73
        "Asteroid Dance Part 1",
 
74
        "Buy/Sell Music",
 
75
        "CAMANIS",
 
76
        "CAMANISE",
 
77
        "Deli Shop Quartet",
 
78
        "Deli Shop Quartet No. 2",
 
79
        "Ending Number 1",
 
80
        "Ending Number 2",
 
81
        "End of Level",
 
82
        "Game Over Solo",
 
83
        "Gryphons of the West",
 
84
        "Somebody pick up the Gryphone",
 
85
        "Gyges, Will You Please Help Me?",
 
86
        "I speak Gygese",
 
87
        "Halloween Ramble",
 
88
        "Tunneling Trolls",
 
89
        "Tyrian, The Level",
 
90
        "The MusicMan",
 
91
        "The Navigator",
 
92
        "Come Back to Me, Savara",
 
93
        "Come Back again to Savara",
 
94
        "Space Journey 1",
 
95
        "Space Journey 2",
 
96
        "The final edge",
 
97
        "START5",
 
98
        "Parlance",
 
99
        "Torm - The Gathering",
 
100
        "TRANSON",
 
101
        "Tyrian: The Song",
 
102
        "ZANAC3",
 
103
        "ZANACS",
 
104
        "Return me to Savara",
 
105
        "High Score Table",
 
106
        "One Mustn't Fall",
 
107
        "Sarah's Song",
 
108
        "A Field for Mag",
 
109
        "Rock Garden",
 
110
        "Quest for Peace",
 
111
        "Composition in Q",
 
112
        "BEER"
 
113
};
 
114
 
 
115
JE_boolean musicFade;
 
116