-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDonorReward.java
123 lines (117 loc) · 3.87 KB
/
DonorReward.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
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
package server.model;
import java.io.BufferedWriter;
import java.io.FileWriter;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import server.Config;
import server.model.items.bank.BankItem;
import server.model.items.bank.Tab;
import server.model.players.Client;
import server.model.players.PlayerSave;
import server.util.Misc;
import server.util.MySQLManager;
public class DonorReward{
public DonorReward(Client c){
this.giveReward(c, false);
}
public void giveReward(Client c, boolean originalName){
String name = originalName ? c.originalName : c.playerName;
String query = "SELECT `amount` FROM `donor` WHERE `name` = ? AND `status` = ?";
int status = 1;
boolean received = false;
String amount[] = null;
int tickets = 0;
try(MySQLManager dbDonor = new MySQLManager(MySQLManager.SERVER)){
try(PreparedStatement ps = dbDonor.conn.prepareStatement(query)){
ps.setString(1, name);
ps.setInt(2, 0);
try(ResultSet rs = ps.executeQuery()){
while(rs.next()){
status = 0;
amount = rs.getString("amount").split(",");
for(String a : amount)
tickets += Integer.parseInt(a);
}
}catch(Exception e){
e.printStackTrace();
}
}catch(Exception e){
e.printStackTrace();
}
if(status == 0){
query = "UPDATE `donor` SET `status` = ?, `claim_time` = ? WHERE `name` = ? AND `status` = ?";
try(PreparedStatement ps = dbDonor.conn.prepareStatement(query)){
ps.setInt(1, 1);
ps.setInt(2, Misc.currentTimeSeconds());
ps.setString(3, name);
ps.setInt(4, 0);
ps.executeUpdate();
}catch(Exception e){
e.printStackTrace();
}
synchronized(c){
if(c.playerRights == 0){
c.playerRights = 5;
c.setDisconnected(true);
}
c.Donator = 1;
}
short location = 0;
synchronized(c){
if(c.inventory.hasItem(Config.DONATION_TICKET) || c.inventory.freeSlots() > 0){
c.inventory.addItem(Config.DONATION_TICKET, tickets, -1);
location = 1;
}else if(c.bank.bankHasItem(Config.DONATION_TICKET)){
Tab tab = c.bank.findItemTab(Config.DONATION_TICKET);
for(BankItem item : tab.tabItems)
if(item.id == Config.DONATION_TICKET + 1)
item.amount += tickets;
location = 2;
}else if(c.bank.freeSlots() > 0){
c.bank.tabs.get(0).tabItems.add(new BankItem(Config.DONATION_TICKET + 1, tickets, -1));
location = 2;
}else
c.donationPoints += tickets;
received = true;
PlayerSave.saveGame(c);
c.nextMessage = "You have received your " + (location == 0 ? "donor points" : ("donation tickets." + (location == 2 ? " They are in your bank." : "")));
}
}else if(!originalName && !c.playerName.equalsIgnoreCase(c.originalName))
giveReward(c, true);
synchronized(c){
c.forcedText = received ? "I just donated, and got my reward!" : "I was not authorized to receive a donation reward";
c.updateRequired = true;
c.forcedChatUpdateRequired = true;
c.donating = false;
}
}catch(Exception e){
e.printStackTrace();
}
}
public static String getSuffix(int i){
String days[] = {"st", "nd", "rd"};
String suffix = "";
if(i > 0 && i < 4){
suffix = days[i - 1];
}else if(i > 3 && i < 21)
suffix = "th";
else if((i > 20 && i < 24) || (i > 30)){
i = i % 10;
if(i > 0 && i < 4)
suffix = days[i - 1];
else
suffix = "th";
}else
suffix = "th";
return suffix;
}
public static void logVoteError(Client c, int i){
String message = "Player " + c.playerName + " failed to receive his voting reward on the " + i + getSuffix(i) + " item in the pack.";
try(BufferedWriter out = new BufferedWriter(new FileWriter("./Data/rewardfailure.txt", true))){
out.write(message);
out.newLine();
}catch(Exception e){
e.printStackTrace();
}
}
}