File: Title.d

package info (click to toggle)
parsec47 0.2.dfsg1-9
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 6,352 kB
  • sloc: xml: 2,178; ansic: 47; makefile: 28
file content (222 lines) | stat: -rw-r--r-- 6,501 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
/*
 * $Id: Title.d,v 1.2 2004/01/01 11:26:43 kenta Exp $
 *
 * Copyright 2003 Kenta Cho. All rights reserved.
 */
module abagames.p47.Title;

private:
import opengl;
import abagames.util.sdl.Pad;
import abagames.util.sdl.Screen3D;
import abagames.util.sdl.Texture;
import abagames.p47.P47GameManager;
import abagames.p47.P47PrefManager;
import abagames.p47.P47Screen;
import abagames.p47.LetterRender;
import abagames.p47.Field;

/**
 * Title.
 */
public class Title {
 private:
  Pad pad;
  P47GameManager gameManager;
  P47PrefManager prefManager;
  Field field;
  int[P47PrefManager.DIFFICULTY_NUM + 1][P47PrefManager.MODE_NUM] slotNum;
  int[P47PrefManager.DIFFICULTY_NUM][P47PrefManager.MODE_NUM] startReachedParsec;
  int curX, curY;
  int mode;
  static const int BOX_COUNT = 16;
  int boxCnt;
  Texture titleTexture;

  public void init(Pad p, P47GameManager gm, P47PrefManager pm, Field fl) {
    pad = p;
    gameManager = gm;
    prefManager = pm;
    field = fl;
    gameManager.difficulty = prefManager.selectedDifficulty;
    gameManager.parsecSlot = prefManager.selectedParsecSlot;
    gameManager.mode = prefManager.selectedMode;
    titleTexture = new Texture("title.bmp");
  }

  public void close() {
    titleTexture.deleteTexture();
  }

  public void start() {
    for (int k = 0; k < P47PrefManager.MODE_NUM; k++) {
      for (int i = 0; i < P47PrefManager.DIFFICULTY_NUM; i++) {
	slotNum[k][i] = (prefManager.reachedParsec[k][i] - 1) / 10 + 1;
	startReachedParsec[k][i] = slotNum[k][i] * 10 + 1;
	if (slotNum[k][i] > 10)
	  slotNum[k][i] = 10;
      }
      slotNum[k][P47PrefManager.DIFFICULTY_NUM] = 1;
    }
    curX = gameManager.parsecSlot;
    curY = gameManager.difficulty;
    mode = gameManager.mode;
    boxCnt = BOX_COUNT;
    field.setColor(mode);
  }

  public int getStartParsec(int dif, int psl) {
    if (psl < P47PrefManager.REACHED_PARSEC_SLOT_NUM - 1) {
      return psl * 10 + 1;
    } else {
      int rp = prefManager.reachedParsec[mode][dif];
      rp--;
      rp /= 10;
      rp *= 10;
      rp++;
      return rp;
    }
  }

  private bool padPrsd = true;

  public void move() {
    int ps = pad.getPadState();
    if (!padPrsd) {
      if (ps & Pad.PAD_DOWN) {
	curY++;
	if (curY >= slotNum[mode].length)
	  curY = 0;
	if (curX >= slotNum[mode][curY])
	  curX = slotNum[mode][curY] - 1;
      } else if (ps & Pad.PAD_UP) {
	curY--;
	if (curY < 0)
	  curY = slotNum[mode].length - 1;
	if (curX >= slotNum[mode][curY])
	  curX = slotNum[mode][curY] - 1;
      } else if (ps & Pad.PAD_RIGHT) {
	curX++;
	if (curX >= slotNum[mode][curY])
	  curX = 0;
      } else if (ps & Pad.PAD_LEFT) {
	curX--;
	if (curX < 0)
	  curX = slotNum[mode][curY] - 1;
      }
      if (ps != 0) {
	boxCnt = BOX_COUNT;
	padPrsd = true;
	gameManager.startStage(curY, curX, getStartParsec(curY, curX), mode);
      }
    } else {
      if (ps == 0)
	padPrsd = false;
    }
    if (boxCnt >= 0)
      boxCnt--;
  }
  
  public void setStatus() {
    gameManager.difficulty = curY;
    gameManager.parsecSlot = curX;
    gameManager.mode = mode;
    if (curY < P47PrefManager.DIFFICULTY_NUM) {
      prefManager.selectedDifficulty = curY;
      prefManager.selectedParsecSlot = curX;
      prefManager.selectedMode = mode;
    }
  }

  public void changeMode() {
    mode++;
    if (mode >= P47PrefManager.MODE_NUM)
      mode = 0;
    if (curX >= slotNum[mode][curY])
      curX = slotNum[mode][curY] - 1;
    field.setColor(mode);
    gameManager.startStage(curY, curX, getStartParsec(curY, curX), mode);
  }

  private void drawBox(int x, int y, int w, int h) {
    Screen3D.setColor(1, 1, 1, 1);
    P47Screen.drawBoxLine(x, y, w, h);
    Screen3D.setColor(1, 1, 1, 0.5);
    P47Screen.drawBoxSolid(x, y, w, h);
  }

  private void drawBoxLight(int x, int y, int w, int h) {
    Screen3D.setColor(1, 1, 1, 0.7);
    P47Screen.drawBoxLine(x, y, w, h);
    Screen3D.setColor(1, 1, 1, 0.3);
    P47Screen.drawBoxSolid(x, y, w, h);
  }

  private const int BOX_SMALL_SIZE = 24;
  private const string[] DIFFICULTY_SHORT_STR = ["P", "N", "H", "E", "Q"];
  private const string[] DIFFICULTY_STR = ["PRACTICE", "NORMAL", "HARD", "EXTREME", "QUIT"];
  private const string[] MODE_STR = ["ROLL", "LOCK"];

  private void drawTitleBoard() {
    glEnable(GL_TEXTURE_2D);
    titleTexture.bind();
    P47Screen.setColor(1, 1, 1, 1);
    glBegin(GL_TRIANGLE_FAN);
    glTexCoord2f(0, 0);
    glVertex3f(180, 20, 0);
    glTexCoord2f(1, 0);
    glVertex3f(308, 20, 0);
    glTexCoord2f(1, 1);
    glVertex3f(308, 148, 0);
    glTexCoord2f(0, 1);
    glVertex3f(180, 148, 0);
    glEnd();
    glDisable(GL_TEXTURE_2D);
  }

  public void draw() {
    int sx, sy;
    LetterRender.drawString
      (DIFFICULTY_STR[curY], 470 - DIFFICULTY_STR[curY].length * 14, 150, 
       10, LetterRender.TO_RIGHT);
    LetterRender.drawString
      (MODE_STR[mode], 470 - MODE_STR[mode].length * 14, 450, 
       10, LetterRender.TO_RIGHT);
    if (curX > 0) {
      LetterRender.drawString("START AT PARSEC", 290, 180, 6, LetterRender.TO_RIGHT);
      LetterRender.drawNum(getStartParsec(curY, curX), 470, 180, 6, LetterRender.TO_RIGHT);
    }
    if (curY < P47PrefManager.DIFFICULTY_NUM)
      LetterRender.drawNum
	(prefManager.hiScore[mode][curY][curX], 470, 210, 10, LetterRender.TO_RIGHT);
    sy = 260;
    for (int y = 0; y < P47PrefManager.DIFFICULTY_NUM + 1; y++) {
      sx = 180;
      for (int x = 0; x < slotNum[mode][y]; x++) {
	if (x == curX && y == curY) {
	  int bs = (BOX_COUNT - boxCnt) / 2;
	  drawBox(sx - bs, sy - bs, BOX_SMALL_SIZE + bs * 2, BOX_SMALL_SIZE + bs * 2);
	  if (x == 0) {
	    LetterRender.drawString
	      (DIFFICULTY_SHORT_STR[y], sx + 13, sy + 13, 12, LetterRender.TO_RIGHT);
	  } else {
	    LetterRender.drawString
	      (DIFFICULTY_SHORT_STR[y], sx + 4, sy + 13, 12, LetterRender.TO_RIGHT);
	    if (x >= P47PrefManager.REACHED_PARSEC_SLOT_NUM - 1) {
	      LetterRender.drawString("X", sx + 21, sy + 14, 12, LetterRender.TO_RIGHT);
	    } else {
	      LetterRender.drawNum(x, sx + 22, sy + 13, 12, LetterRender.TO_RIGHT);
	    }
	  }
	} else {
	  drawBoxLight(sx, sy, BOX_SMALL_SIZE, BOX_SMALL_SIZE);
	}
	sx += 28;
      }
      sy += 32;
      if (y == P47PrefManager.DIFFICULTY_NUM - 1)
	sy += 15;
    }
    drawTitleBoard();
  }
}