Switch to Maven file structure
This commit is contained in:
111
src/main/java/server/DueyPackage.java
Normal file
111
src/main/java/server/DueyPackage.java
Normal file
@@ -0,0 +1,111 @@
|
||||
/*
|
||||
This file is part of the OdinMS Maple Story Server
|
||||
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
||||
Matthias Butz <matze@odinms.de>
|
||||
Jan Christian Meyer <vimes@odinms.de>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package server;
|
||||
|
||||
import client.inventory.Item;
|
||||
import java.util.Calendar;
|
||||
import java.sql.Timestamp;
|
||||
|
||||
public class DueyPackage {
|
||||
private String sender = null;
|
||||
private Item item = null;
|
||||
private int mesos = 0;
|
||||
private String message = null;
|
||||
private Calendar timestamp;
|
||||
private int packageId = 0;
|
||||
|
||||
public DueyPackage(int pId, Item item) {
|
||||
this.item = item;
|
||||
packageId = pId;
|
||||
}
|
||||
|
||||
public DueyPackage(int pId) { // Meso only package.
|
||||
this.packageId = pId;
|
||||
}
|
||||
|
||||
public String getSender() {
|
||||
return sender;
|
||||
}
|
||||
|
||||
public void setSender(String name) {
|
||||
sender = name;
|
||||
}
|
||||
|
||||
public Item getItem() {
|
||||
return item;
|
||||
}
|
||||
|
||||
public int getMesos() {
|
||||
return mesos;
|
||||
}
|
||||
|
||||
public void setMesos(int set) {
|
||||
mesos = set;
|
||||
}
|
||||
|
||||
public String getMessage() {
|
||||
return message;
|
||||
}
|
||||
|
||||
public void setMessage(String m) {
|
||||
message = m;
|
||||
}
|
||||
|
||||
public int getPackageId() {
|
||||
return packageId;
|
||||
}
|
||||
|
||||
public long sentTimeInMilliseconds() {
|
||||
Calendar ts = timestamp;
|
||||
if (ts != null) {
|
||||
Calendar cal = Calendar.getInstance();
|
||||
cal.setTime(ts.getTime());
|
||||
cal.add(Calendar.MONTH, 1); // duey representation is in an array of months.
|
||||
|
||||
return cal.getTimeInMillis();
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
public boolean isDeliveringTime() {
|
||||
Calendar ts = timestamp;
|
||||
if (ts != null) {
|
||||
return ts.getTimeInMillis() >= System.currentTimeMillis();
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public void setSentTime(Timestamp ts, boolean quick) {
|
||||
Calendar cal = Calendar.getInstance();
|
||||
cal.setTimeInMillis(ts.getTime());
|
||||
|
||||
if (quick) {
|
||||
if (System.currentTimeMillis() - ts.getTime() < 24 * 60 * 60 * 1000) { // thanks inhyuk for noticing quick delivery packages unavailable to retrieve from the get-go
|
||||
cal.add(Calendar.DATE, -1);
|
||||
}
|
||||
}
|
||||
|
||||
this.timestamp = cal;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user