summaryrefslogtreecommitdiffstats
path: root/src/control/NameGrid.cpp
blob: 204e8b9c48773d2c1ec8bb80ab13bf5a82ef1253 (plain) (blame)
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
#include "common.h"
#include "NameGrid.h"

// TODO: reverse mobile code

CPlayerName::CPlayerName()
{
	// TODO
}

void
CPlayerName::DisplayName(int)
{
	// TODO
}

CRow::CRow()
{
	// TODO
}

void
CRow::SetLetter(int, wchar *)
{
	// TODO
}

CGrid::CGrid()
{
	// TODO
}

void
CGrid::ProcessAnyLeftJustDown()
{
	unk_int2--;
}

void
CGrid::ProcessAnyRightJustDown()
{
	unk_int2++;
}

void
CGrid::ProcessAnyUpJustDown()
{
	unk_int1--;
}

void
CGrid::ProcessAnyDownJustDown()
{
	unk_int1++;
}

void
CGrid::AllDoneMakePlayerName()
{
	// TODO
}

void
CGrid::ProcessDPadCrossJustDown()
{
	// TODO
}

void
CGrid::DisplayGrid()
{
	// TODO
}

void
CGrid::ProcessControllerInput()
{
	// TODO
}

void
CGrid::Process()
{
	ProcessControllerInput();
	DisplayGrid();
	playerName.DisplayName(2 * playerName.unk_4c);
}