-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGuiChooseName.java
79 lines (65 loc) · 1.65 KB
/
GuiChooseName.java
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
package net.minecraft.src;
public class GuiChooseName extends GuiScreen{
int i, j, k;
public GuiChooseName(int x, int y, int z){
this.i = x;
this.j = y;
this.k = z;
}
@Override
public void drawScreen(int i, int j, float f) {
drawDefaultBackground();
this.drawCenteredString(mc.fontRenderer, "Choose Name", width/2, 20, 0xdd0000);
field.drawTextBox();
super.drawScreen(i, j, f);
}
@Override
protected void keyTyped(char c, int i) {
if(i == 1){
dontSpawn = true;
mc.displayGuiScreen(null);
}else if(c == '\n'){
mc.displayGuiScreen(null);
}else{
field.textboxKeyTyped(c, i);
super.keyTyped(c, i);
}
}
@Override
protected void mouseClicked(int i, int j, int k) {
super.mouseClicked(i, j, k);
field.mouseClicked(i, j, k);
}
@Override
protected void actionPerformed(GuiButton guibutton) {
if(guibutton.id == 0){
mc.displayGuiScreen(null);
}
}
@Override
public void initGui() {
controlList.clear();
controlList.add(new GuiButton(0, (width-200)/2, height - 50, "Done"));
field = new GuiTextField(this, mc.fontRenderer, (width - 200)/2, 50, 200, 20, mod_MyPeople.lastName);
}
GuiTextField field;
@Override
public void updateScreen() {
field.updateCursorCounter();
}
@Override
public void onGuiClosed() {
mod_MyPeople.lastName = field.getText();
if(!dontSpawn){
EntityMyPerson person = new EntityMyPerson(mc.theWorld);
person.changeSkin(mod_MyPeople.lastName);
person.setLocationAndAngles((double)i + 0.5D, j, (double)k + 0.5D, 0.0F, 0.0F);
mc.theWorld.spawnEntityInWorld(person);
}
}
boolean dontSpawn = false;
@Override
public boolean doesGuiPauseGame() {
return true;
}
}