summaryrefslogtreecommitdiff
path: root/src/d/d_2dnumber.cpp
blob: 46fafa692ac3948eac05e2205e66864ae05f8bec (plain)
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
//
// Generated by dtk
// Translation Unit: d_2dnumber.cpp
//

#include "d/dolzel.h" // IWYU pragma: keep
#include "d/d_2dnumber.h"
#include "d/d_com_inf_game.h"
#include "JSystem/J2DGraph/J2DOrthoGraph.h"
#include <stdio.h>

/* 800C8498-800C84B4       .text __ct__16dDlst_2DNumber_cFv */
dDlst_2DNumber_c::dDlst_2DNumber_c() {
}

/* 800C84B4-800C8510       .text __dt__16dDlst_2DNumber_cFv */
dDlst_2DNumber_c::~dDlst_2DNumber_c() {
}

/* 800C8510-800C8644       .text init__16dDlst_2DNumber_cFissssUc */
bool dDlst_2DNumber_c::init(int digitNum, s16 x, s16 y, s16 w, s16 h, u8 flag) {
    mDigitNum = digitNum;
    mFlag = flag;
    mWidth = w;
    mHeight = h;

    for (s32 i = 0; i < mDigitNum; i++) {
        mNum[i] = new J2DPicture("rupy_num_00.bti");
        if (mNum[i] == NULL)
            return false;

        mPos[i].x = x - w * i;
        mPos[i].y = y;
    }

    return true;
}

/* 800C8644-800C874C       .text draw__16dDlst_2DNumber_cFv */
void dDlst_2DNumber_c::draw() {
    J2DOrthoGraph* graf = dComIfGp_getCurrentGrafPort();
    s32 value = mValue;
    
    graf->setPort();
    if (mFlag & 2)
        return;

    for (s32 i = 0; i < mDigitNum; i++) {
        if (i != 0 && value == 0 && !(mFlag & 1))
            break;

        s32 digit = value % 10;
        value /= 10;

        char buf[16];
        sprintf(buf, "rupy_num_%02d.bti", digit);
        mNum[i]->changeTexture(buf, 0);
        mNum[i]->draw(mPos[i].x, mPos[i].y, mWidth, mHeight, false, false, false);
    }
}

/* 800C874C-800C8944       .text init__18dDlst_2DMinigame_cFP7ResTIMGP7ResTIMG */
bool dDlst_2DMinigame_c::init(ResTIMG* title, ResTIMG* score) {
    mTitle = new J2DPicture(title);
    if (mTitle == NULL)
        return false;

    mScore = new J2DPicture(score);
    if (mScore == NULL)
        return false;

    mScoreShadow = new J2DPicture(score);
    if (mScoreShadow == NULL)
        return false;

    mTitleSize.x = title->width * 1.33f;
    mTitleSize.y = title->height * 1.33f;
    mScoreSize.x = score->width * 1.16f;
    mScoreSize.y = score->height * 1.16f;

    mScoreShadow->setCornerColor(0x000000FF);
    return true;
}

/* 800C8944-800C8A00       .text draw__18dDlst_2DMinigame_cFv */
void dDlst_2DMinigame_c::draw() {
    J2DOrthoGraph* graf = dComIfGp_getCurrentGrafPort();
    graf->setPort();

    mScoreShadow->draw(mScorePos.x + 4.0f, mScorePos.y + 4.0f, mScoreSize.x, mScoreSize.y, false, false, false);
    mScore->draw(mScorePos.x, mScorePos.y, mScoreSize.x, mScoreSize.y, false, false, false);
    mTitle->draw(mTitlePos.x, mTitlePos.y, mTitleSize.x, mTitleSize.y, false, false, false);
}

/* 800C8A00-800C8FAC       .text init__17dDlst_2DBattery_cFP7ResTIMGP7ResTIMGP7ResTIMGP7ResTIMG */
BOOL dDlst_2DBattery_c::init(ResTIMG* rule, ResTIMG* battery, ResTIMG* batteryBase, ResTIMG* degree) {
    mRule = new J2DPicture(rule);
    if (mRule == NULL)
        return FALSE;

    mRuleSize.x = rule->width;
    mRuleSize.y = rule->height;

    mBattery = new J2DPicture(battery);
    if (mBattery == NULL)
        return FALSE;

    mBatterySize.x = battery->width;
    mBatterySize.y = battery->height;

    mBatteryBase = new J2DPicture(batteryBase);
    if (mBatteryBase == NULL)
        return FALSE;

    mBatteryBaseSize.x = batteryBase->width;
    mBatteryBaseSize.y = batteryBase->height;

    for (s32 i = 0; i < 2; i++) {
        mNum[0][i] = new J2DPicture(degree);
        if (mNum[0][i] == NULL)
            return FALSE;

        mNum[1][i] = new J2DPicture("rupy_num_00.bti");
        if (mNum[1][i] == NULL)
            return FALSE;

        mNum[2][i] = new J2DPicture("rupy_num_00.bti");
        if (mNum[2][i] == NULL)
            return FALSE;
    }

    mBattery->setAlpha(200);

    mNumSize.x = degree->width;
    mNumSize.y = degree->height;

    mPicturePos.x = mPicturePos.y = 0.0f;
    mNumPos.x = 551.0f;
    mNumPos.y = mBatteryBaseSize.y / 2.0f + 399.0f;

    mRule->setAlpha(128);
    mRule->setWhite(0xFFFFFFFF);
    mRule->setBlack(0xFFFFFF00);

    mNum[0][0]->setWhite(0xFFC800FF);
    mNum[0][1]->setCornerColor(0x000000FF);
    mNum[0][1]->setAlpha(80);

    mNum[1][0]->setWhite(0xFFC800FF);
    mNum[1][1]->setCornerColor(0x000000FF);
    mNum[1][1]->setAlpha(80);

    mNum[2][0]->setWhite(0xFFC800FF);
    mNum[2][1]->setCornerColor(0x000000FF);
    mNum[2][1]->setAlpha(80);

    mRotation = 20.0f;
    return TRUE;
}

/* 800C8FAC-800C90F0       .text setRotate__17dDlst_2DBattery_cFf */
void dDlst_2DBattery_c::setRotate(f32 rot) {
    // calculate the angle text
    f32 angle = ((rot - 22.5f) / 22.5f) * 35.0f + 15.0f;
    char buf[16];
    sprintf(buf, "rupy_num_%02d.bti", (int)(angle + 0.5f) / 10);
    mNum[2][0]->changeTexture(buf, 0);
    mNum[2][1]->changeTexture(buf, 0);
    sprintf(buf, "rupy_num_%02d.bti", (int)(angle + 0.5f) % 10);
    mNum[1][0]->changeTexture(buf, 0);
    mNum[1][1]->changeTexture(buf, 0);

    // calculate the visual angle
    if (rot < 20.0f) {
        rot = 345.0f;
    } else if (rot > 45.0f) {
        rot = 310.0f;
    } else {
        rot = 360.0f - ((rot - 20.0f) * 1.4f + 15.0f);
    }
    mRotation = rot;
}

/* 800C90F0-800C9348       .text draw__17dDlst_2DBattery_cFv */
void dDlst_2DBattery_c::draw() {
    J2DOrthoGraph* graf = dComIfGp_getCurrentGrafPort();
    graf->setPort();

    mBattery->rotate(mBatterySize.x, mBatterySize.y / 2.0f, ROTATE_Z, mRotation);

    mRule->draw(mPicturePos.x + 519.0f, mPicturePos.y + 367.0f, mRuleSize.x, mRuleSize.y, false, false, false);
    mBattery->draw(mPicturePos.x + 498.0f, mPicturePos.y + 397.0f, mBatterySize.x, mBatterySize.y, false, false, false);
    mBatteryBase->draw(mPicturePos.x + 551.0f, mPicturePos.y + 399.0f, mBatteryBaseSize.x, mBatteryBaseSize.y, false, false, false);

    const float shadowOffs = 4.0f;

    mNum[2][1]->draw(mNumPos.x + shadowOffs + 10.0f, mNumPos.y + shadowOffs, mNumSize.x, mNumSize.y, false, false, false);
    mNum[1][1]->draw(mNumPos.x + mNumSize.x + shadowOffs + 5.0f, mNumPos.y + shadowOffs, mNumSize.x, mNumSize.y, false, false, false);
    mNum[0][1]->draw(mNumPos.x + mNumSize.x * 2.0f + shadowOffs, mNumPos.y + shadowOffs, mNumSize.x, mNumSize.y, false, false, false);

    mNum[2][0]->draw(mNumPos.x + 10.0f, mNumPos.y, mNumSize.x, mNumSize.y, false, false, false);
    mNum[1][0]->draw(mNumPos.x + mNumSize.x + 5.0f, mNumPos.y, mNumSize.x, mNumSize.y, false, false, false);
    mNum[0][0]->draw(mNumPos.x + mNumSize.x * 2.0f, mNumPos.y, mNumSize.x, mNumSize.y, false, false, false);
}

/* 800C9348-800C946C       .text init__16dDlst_2DObject_cFP7ResTIMGP7ResTIMG */
BOOL dDlst_2DObject_c::init(ResTIMG* img1, ResTIMG* img2) {
    mPicture[0] = new J2DPicture(img1);
    if (mPicture[0] == NULL)
        return FALSE;
    mSize[0].x = img1->width;
    mSize[0].y = img1->height;

    mPicture[1] = new J2DPicture(img2);
    if (mPicture[1] == NULL)
        return FALSE;
    mSize[1].x = img2->width;
    mSize[1].y = img2->height;
    mScale = 1.0f;
    mCurrentNo = 0;

    return TRUE;
}

/* 800C946C-800C9520       .text draw__16dDlst_2DObject_cFv */
void dDlst_2DObject_c::draw() {
    J2DOrthoGraph* graf = dComIfGp_getCurrentGrafPort();
    graf->setPort();

    if (mCurrentNo == 0) {
        mPicture[0]->draw(mPos.x, mPos.y, mSize[0].x * mScale, mSize[0].y * mScale, false, false, false);
    } else {
        mPicture[1]->draw(mPos.x, mPos.y, mSize[1].x * mScale, mSize[1].y * mScale, false, false, false);
    }
}

/* 800C9520-800C9690       .text initial__17dDlst_2DOutFont_cFv */
void dDlst_2DOutFont_c::initial() {
    /* Nonmatching */
}

/* 800C9690-800C976C       .text setPane__17dDlst_2DOutFont_cFP7JUTFontP18fopMsgM_pane_classP18fopMsgM_pane_classP18fopMsgM_pane_classP18fopMsgM_pane_class */
void dDlst_2DOutFont_c::setPane(JUTFont*, fopMsgM_pane_class*, fopMsgM_pane_class*, fopMsgM_pane_class*, fopMsgM_pane_class*) {
    /* Nonmatching */
}

/* 800C976C-800C9844       .text setPaneEx__17dDlst_2DOutFont_cFP7JUTFontP18fopMsgM_pane_classP18fopMsgM_pane_classP18fopMsgM_pane_classP18fopMsgM_pane_classPc */
void dDlst_2DOutFont_c::setPaneEx(JUTFont*, fopMsgM_pane_class*, fopMsgM_pane_class*, fopMsgM_pane_class*, fopMsgM_pane_class*, char*) {
    /* Nonmatching */
}

/* 800C9844-800C9854       .text setRuby__17dDlst_2DOutFont_cFP7JUTFontP18fopMsgM_pane_class */
void dDlst_2DOutFont_c::setRuby(JUTFont* font, fopMsgM_pane_class* pane) {
    m20 = font;
    m18 = pane->pane;
}

/* 800C9854-800C9864       .text setRubyEx__17dDlst_2DOutFont_cFP7JUTFontP18fopMsgM_pane_classPc */
void dDlst_2DOutFont_c::setRubyEx(JUTFont* font, fopMsgM_pane_class* pane, char*) {
    m20 = font;
    m18 = pane->pane;
}

/* 800C9864-800C9908       .text charWidth__17dDlst_2DOutFont_cFi */
void dDlst_2DOutFont_c::charWidth(int) {
    /* Nonmatching */
}

/* 800C9908-800C99C0       .text rubyCharWidth__17dDlst_2DOutFont_cFi */
void dDlst_2DOutFont_c::rubyCharWidth(int) {
    /* Nonmatching */
}

/* 800C99C0-800C9D5C       .text iconset__17dDlst_2DOutFont_cFiPPc */
void dDlst_2DOutFont_c::iconset(int, char**) {
    /* Nonmatching */
}

/* 800C9D5C-800CA8A8       .text messageSet__17dDlst_2DOutFont_cFUl */
void dDlst_2DOutFont_c::messageSet(u32) {
    /* Nonmatching */
}

/* 800CA8A8-800CAB5C       .text outFontStickAnime1__17dDlst_2DOutFont_cFUc */
void dDlst_2DOutFont_c::outFontStickAnime1(u8) {
    /* Nonmatching */
}

/* 800CAB5C-800CADEC       .text outFontStickAnime2__17dDlst_2DOutFont_cFUcUc */
void dDlst_2DOutFont_c::outFontStickAnime2(u8, u8) {
    /* Nonmatching */
}

/* 800CADEC-800CB0C0       .text outFontStickAnime3__17dDlst_2DOutFont_cFUcUc */
void dDlst_2DOutFont_c::outFontStickAnime3(u8, u8) {
    /* Nonmatching */
}

/* 800CB0C0-800CB2E0       .text outFontStickAnimePiece__17dDlst_2DOutFont_cFUcUc */
void dDlst_2DOutFont_c::outFontStickAnimePiece(u8, u8) {
    /* Nonmatching */
}

/* 800CB2E0-800CB474       .text move__17dDlst_2DOutFont_cFv */
void dDlst_2DOutFont_c::move() {
    /* Nonmatching */
}

/* 800CB474-800CB4B0       .text setAlpha__17dDlst_2DOutFont_cFUc */
void dDlst_2DOutFont_c::setAlpha(u8 alpha) {
    for (int i = 0; i < ARRAY_SIZE(m08); i++) {
        if (m08[i] != NULL) {
            m08[i]->setAlpha(alpha);
        }
    }
    if (m14 != NULL) {
        m14->setAlpha(alpha);
    }
}