Player.java 29.6 KB
Newer Older
Melledy's avatar
Melledy committed
1
package emu.grasscutter.game.player;
Melledy's avatar
Melledy committed
2
3

import dev.morphia.annotations.*;
4
import emu.grasscutter.GameConstants;
Melledy's avatar
Melledy committed
5
import emu.grasscutter.Grasscutter;
6
import emu.grasscutter.data.GameData;
Melledy's avatar
Melledy committed
7
8
import emu.grasscutter.data.def.PlayerLevelData;
import emu.grasscutter.database.DatabaseHelper;
Melledy's avatar
Melledy committed
9
10
import emu.grasscutter.game.Account;
import emu.grasscutter.game.CoopRequest;
11
import emu.grasscutter.game.avatar.Avatar;
Kengxxiao's avatar
Kengxxiao committed
12
13
import emu.grasscutter.game.avatar.AvatarProfileData;
import emu.grasscutter.game.avatar.AvatarStorage;
Melledy's avatar
Melledy committed
14
import emu.grasscutter.game.entity.EntityItem;
15
import emu.grasscutter.game.entity.GameEntity;
Melledy's avatar
Melledy committed
16
17
18
import emu.grasscutter.game.friends.FriendsList;
import emu.grasscutter.game.friends.PlayerProfile;
import emu.grasscutter.game.gacha.PlayerGachaInfo;
19
import emu.grasscutter.game.inventory.GameItem;
Melledy's avatar
Melledy committed
20
import emu.grasscutter.game.inventory.Inventory;
Melledy's avatar
Melledy committed
21
import emu.grasscutter.game.mail.Mail;
Melledy's avatar
Melledy committed
22
23
import emu.grasscutter.game.props.ActionReason;
import emu.grasscutter.game.props.PlayerProperty;
Kengxxiao's avatar
Kengxxiao committed
24
import emu.grasscutter.game.shop.ShopLimit;
Melledy's avatar
Melledy committed
25
26
import emu.grasscutter.game.world.Scene;
import emu.grasscutter.game.world.World;
27
import emu.grasscutter.net.packet.BasePacket;
Melledy's avatar
Melledy committed
28
29
30
31
32
import emu.grasscutter.net.proto.AbilityInvokeEntryOuterClass.AbilityInvokeEntry;
import emu.grasscutter.net.proto.CombatInvokeEntryOuterClass.CombatInvokeEntry;
import emu.grasscutter.net.proto.InteractTypeOuterClass.InteractType;
import emu.grasscutter.net.proto.MpSettingTypeOuterClass.MpSettingType;
import emu.grasscutter.net.proto.OnlinePlayerInfoOuterClass.OnlinePlayerInfo;
33
import emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass;
Melledy's avatar
Melledy committed
34
import emu.grasscutter.net.proto.PlayerLocationInfoOuterClass.PlayerLocationInfo;
35
import emu.grasscutter.net.proto.PlayerWorldLocationInfoOuterClass;
36
import emu.grasscutter.net.proto.ShowAvatarInfoOuterClass;
Melledy's avatar
Melledy committed
37
import emu.grasscutter.net.proto.ProfilePictureOuterClass.ProfilePicture;
Melledy's avatar
Melledy committed
38
import emu.grasscutter.net.proto.SocialDetailOuterClass.SocialDetail;
Yazawazi's avatar
import    
Yazawazi committed
39
import emu.grasscutter.net.proto.SocialShowAvatarInfoOuterClass;
40
41
import emu.grasscutter.server.event.player.PlayerJoinEvent;
import emu.grasscutter.server.event.player.PlayerQuitEvent;
42
import emu.grasscutter.server.event.player.PlayerReceiveMailEvent;
Melledy's avatar
Melledy committed
43
44
import emu.grasscutter.server.game.GameServer;
import emu.grasscutter.server.game.GameSession;
45
import emu.grasscutter.server.packet.send.*;
Yazawazi's avatar
utils    
Yazawazi committed
46
import emu.grasscutter.utils.DateHelper;
Kengxxiao's avatar
Kengxxiao committed
47
import emu.grasscutter.utils.Position;
Melledy's avatar
Melledy committed
48
49
50
import it.unimi.dsi.fastutil.ints.Int2ObjectMap;
import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap;

Kengxxiao's avatar
Kengxxiao committed
51
import java.time.Instant;
Asnxthaony's avatar
Asnxthaony committed
52
53
import java.util.*;

KingRainbow44's avatar
KingRainbow44 committed
54
@Entity(value = "players", useDiscriminator = false)
55
public class Player {
Melledy's avatar
Melledy committed
56
57
	@Id private int id;
	@Indexed(options = @IndexOptions(unique = true)) private String accountId;
Asnxthaony's avatar
Asnxthaony committed
58

Melledy's avatar
Melledy committed
59
60
61
62
63
64
65
	@Transient private Account account;
	private String nickname;
	private String signature;
	private int headImage;
	private int nameCardId = 210001;
	private Position pos;
	private Position rotation;
Miyucchi's avatar
Miyucchi committed
66
	private PlayerBirthday birthday;
Asnxthaony's avatar
Asnxthaony committed
67

Melledy's avatar
Melledy committed
68
69
70
71
	private Map<Integer, Integer> properties;
	private Set<Integer> nameCardList;
	private Set<Integer> flyCloakList;
	private Set<Integer> costumeList;
Asnxthaony's avatar
Asnxthaony committed
72

Melledy's avatar
Melledy committed
73
74
75
	@Transient private long nextGuid = 0;
	@Transient private int peerId;
	@Transient private World world;
76
	@Transient private Scene scene;
Melledy's avatar
Melledy committed
77
78
79
80
	@Transient private GameSession session;
	@Transient private AvatarStorage avatars;
	@Transient private Inventory inventory;
	@Transient private FriendsList friendsList;
Asnxthaony's avatar
Asnxthaony committed
81

Melledy's avatar
Melledy committed
82
83
84
85
86
	private TeamManager teamManager;
	private PlayerGachaInfo gachaInfo;
	private PlayerProfile playerProfile;
	private boolean showAvatar;
	private ArrayList<AvatarProfileData> shownAvatars;
87
	private Set<Integer> rewardedLevels;
88
	private ArrayList<Mail> mail;
Kengxxiao's avatar
Kengxxiao committed
89
	private ArrayList<ShopLimit> shopLimit;
Asnxthaony's avatar
Asnxthaony committed
90

Melledy's avatar
Melledy committed
91
92
93
94
	private int sceneId;
	private int regionId;
	private int mainCharacterId;
	private boolean godmode;
Asnxthaony's avatar
Asnxthaony committed
95

Yazawazi's avatar
Yazawazi committed
96
97
98
99
100
	private boolean moonCard;
	private Date moonCardStartTime;
	private int moonCardDuration;
	private Set<Date> moonCardGetTimes;

Yazawazi's avatar
Yazawazi committed
101
102
103
	private List<Integer> showAvatarList;
	private boolean showAvatars;

Melledy's avatar
Melledy committed
104
105
106
107
	@Transient private boolean paused;
	@Transient private int enterSceneToken;
	@Transient private SceneLoadState sceneState;
	@Transient private boolean hasSentAvatarDataNotify;
Melledy's avatar
Melledy committed
108
	@Transient private long nextSendPlayerLocTime = 0;
Asnxthaony's avatar
Asnxthaony committed
109

Melledy's avatar
Melledy committed
110
111
112
	@Transient private final Int2ObjectMap<CoopRequest> coopRequests;
	@Transient private final InvokeHandler<CombatInvokeEntry> combatInvokeHandler;
	@Transient private final InvokeHandler<AbilityInvokeEntry> abilityInvokeHandler;
113
	@Transient private final InvokeHandler<AbilityInvokeEntry> clientAbilityInitFinishHandler;
Asnxthaony's avatar
Asnxthaony committed
114
115
116

	@Deprecated
	@SuppressWarnings({"rawtypes", "unchecked"}) // Morphia only!
117
	public Player() {
Melledy's avatar
Melledy committed
118
119
120
121
122
123
124
125
126
127
128
129
		this.inventory = new Inventory(this);
		this.avatars = new AvatarStorage(this);
		this.friendsList = new FriendsList(this);
		this.pos = new Position();
		this.rotation = new Position();
		this.properties = new HashMap<>();
		for (PlayerProperty prop : PlayerProperty.values()) {
			if (prop.getId() < 10000) {
				continue;
			}
			this.properties.put(prop.getId(), 0);
		}
Asnxthaony's avatar
Asnxthaony committed
130

131
132
133
134
		this.gachaInfo = new PlayerGachaInfo();
		this.nameCardList = new HashSet<>();
		this.flyCloakList = new HashSet<>();
		this.costumeList = new HashSet<>();
Asnxthaony's avatar
Asnxthaony committed
135

136
137
		this.mail = new ArrayList<>();

Melledy's avatar
Melledy committed
138
139
140
		this.setSceneId(3);
		this.setRegionId(1);
		this.sceneState = SceneLoadState.NONE;
Asnxthaony's avatar
Asnxthaony committed
141

Melledy's avatar
Melledy committed
142
143
144
		this.coopRequests = new Int2ObjectOpenHashMap<>();
		this.combatInvokeHandler = new InvokeHandler(PacketCombatInvocationsNotify.class);
		this.abilityInvokeHandler = new InvokeHandler(PacketAbilityInvocationsNotify.class);
145
		this.clientAbilityInitFinishHandler = new InvokeHandler(PacketClientAbilityInitFinishNotify.class);
Miyucchi's avatar
Miyucchi committed
146
147

		this.birthday = new PlayerBirthday();
148
		this.rewardedLevels = new HashSet<>();
Yazawazi's avatar
Yazawazi committed
149
		this.moonCardGetTimes = new HashSet<>();
Kengxxiao's avatar
Kengxxiao committed
150
151

		this.shopLimit = new ArrayList<>();
Melledy's avatar
Melledy committed
152
	}
Asnxthaony's avatar
Asnxthaony committed
153

Melledy's avatar
Melledy committed
154
	// On player creation
155
	public Player(GameSession session) {
Melledy's avatar
Melledy committed
156
157
158
159
160
161
162
		this();
		this.account = session.getAccount();
		this.accountId = this.getAccount().getId();
		this.session = session;
		this.nickname = "Traveler";
		this.signature = "";
		this.teamManager = new TeamManager(this);
Miyucchi's avatar
Miyucchi committed
163
		this.birthday = new PlayerBirthday();
Melledy's avatar
Melledy committed
164
165
166
167
168
169
170
171
172
173
		this.setProperty(PlayerProperty.PROP_PLAYER_LEVEL, 1);
		this.setProperty(PlayerProperty.PROP_IS_SPRING_AUTO_USE, 1);
		this.setProperty(PlayerProperty.PROP_SPRING_AUTO_USE_PERCENT, 50);
		this.setProperty(PlayerProperty.PROP_IS_FLYABLE, 1);
		this.setProperty(PlayerProperty.PROP_IS_TRANSFERABLE, 1);
		this.setProperty(PlayerProperty.PROP_MAX_STAMINA, 24000);
		this.setProperty(PlayerProperty.PROP_CUR_PERSIST_STAMINA, 24000);
		this.setProperty(PlayerProperty.PROP_PLAYER_RESIN, 160);
		this.getFlyCloakList().add(140001);
		this.getNameCardList().add(210001);
174
		this.getPos().set(GameConstants.START_POSITION);
Melledy's avatar
Melledy committed
175
176
177
		this.getRotation().set(0, 307, 0);
	}

178
	public int getUid() {
Melledy's avatar
Melledy committed
179
180
181
		return id;
	}

182
	public void setUid(int id) {
Melledy's avatar
Melledy committed
183
184
		this.id = id;
	}
Asnxthaony's avatar
Asnxthaony committed
185

186
	public long getNextGameGuid() {
Melledy's avatar
Melledy committed
187
		long nextId = ++this.nextGuid;
188
		return ((long) this.getUid() << 32) + nextId;
Melledy's avatar
Melledy committed
189
190
191
192
193
194
195
196
	}

	public Account getAccount() {
		return account;
	}

	public void setAccount(Account account) {
		this.account = account;
197
		this.account.setPlayerId(getUid());
Melledy's avatar
Melledy committed
198
199
200
201
202
203
204
205
206
	}

	public GameSession getSession() {
		return session;
	}

	public void setSession(GameSession session) {
		this.session = session;
	}
Asnxthaony's avatar
Asnxthaony committed
207

Melledy's avatar
Melledy committed
208
209
210
	public boolean isOnline() {
		return this.getSession() != null && this.getSession().isActive();
	}
Asnxthaony's avatar
Asnxthaony committed
211

Melledy's avatar
Melledy committed
212
213
214
	public GameServer getServer() {
		return this.getSession().getServer();
	}
Asnxthaony's avatar
Asnxthaony committed
215

Melledy's avatar
Melledy committed
216
217
218
	public synchronized World getWorld() {
		return this.world;
	}
Asnxthaony's avatar
Asnxthaony committed
219

Melledy's avatar
Melledy committed
220
221
222
	public synchronized void setWorld(World world) {
		this.world = world;
	}
Asnxthaony's avatar
Asnxthaony committed
223

224
	public synchronized Scene getScene() {
225
226
227
		return scene;
	}

228
	public synchronized void setScene(Scene scene) {
229
230
231
		this.scene = scene;
	}

Melledy's avatar
Melledy committed
232
233
234
235
236
237
238
239
240
241
242
243
	public int getGmLevel() {
		return 1;
	}

	public String getNickname() {
		return nickname;
	}

	public void setNickname(String nickName) {
		this.nickname = nickName;
		this.updateProfile();
	}
Asnxthaony's avatar
Asnxthaony committed
244

Melledy's avatar
Melledy committed
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
	public int getHeadImage() {
		return headImage;
	}

	public void setHeadImage(int picture) {
		this.headImage = picture;
		this.updateProfile();
	}

	public String getSignature() {
		return signature;
	}

	public void setSignature(String signature) {
		this.signature = signature;
		this.updateProfile();
	}

	public Position getPos() {
		return pos;
	}
Asnxthaony's avatar
Asnxthaony committed
266

Melledy's avatar
Melledy committed
267
268
269
	public Position getRotation() {
		return rotation;
	}
Asnxthaony's avatar
Asnxthaony committed
270

Melledy's avatar
Melledy committed
271
272
273
	public int getLevel() {
		return this.getProperty(PlayerProperty.PROP_PLAYER_LEVEL);
	}
Asnxthaony's avatar
Asnxthaony committed
274

Melledy's avatar
Melledy committed
275
276
277
	public int getExp() {
		return this.getProperty(PlayerProperty.PROP_PLAYER_EXP);
	}
Asnxthaony's avatar
Asnxthaony committed
278

Melledy's avatar
Melledy committed
279
280
281
	public int getWorldLevel() {
		return this.getProperty(PlayerProperty.PROP_PLAYER_WORLD_LEVEL);
	}
282
283
284
285
286
	
	public void setWorldLevel(int level) {
		this.setProperty(PlayerProperty.PROP_PLAYER_WORLD_LEVEL, level);
		this.sendPacket(new PacketPlayerPropNotify(this, PlayerProperty.PROP_PLAYER_WORLD_LEVEL));
	}
Asnxthaony's avatar
Asnxthaony committed
287

Melledy's avatar
Melledy committed
288
289
290
	public int getPrimogems() {
		return this.getProperty(PlayerProperty.PROP_PLAYER_HCOIN);
	}
Asnxthaony's avatar
Asnxthaony committed
291

Melledy's avatar
Melledy committed
292
293
294
295
	public void setPrimogems(int primogem) {
		this.setProperty(PlayerProperty.PROP_PLAYER_HCOIN, primogem);
		this.sendPacket(new PacketPlayerPropNotify(this, PlayerProperty.PROP_PLAYER_HCOIN));
	}
Asnxthaony's avatar
Asnxthaony committed
296

Melledy's avatar
Melledy committed
297
298
299
	public int getMora() {
		return this.getProperty(PlayerProperty.PROP_PLAYER_SCOIN);
	}
Asnxthaony's avatar
Asnxthaony committed
300

Melledy's avatar
Melledy committed
301
302
303
304
	public void setMora(int mora) {
		this.setProperty(PlayerProperty.PROP_PLAYER_SCOIN, mora);
		this.sendPacket(new PacketPlayerPropNotify(this, PlayerProperty.PROP_PLAYER_SCOIN));
	}
305
306
307
308
309
310
311
312
313
	
	public int getCrystals() {
		return this.getProperty(PlayerProperty.PROP_PLAYER_MCOIN);
	}

	public void setCrystals(int crystals) {
		this.setProperty(PlayerProperty.PROP_PLAYER_MCOIN, crystals);
		this.sendPacket(new PacketPlayerPropNotify(this, PlayerProperty.PROP_PLAYER_MCOIN));
	}
Asnxthaony's avatar
Asnxthaony committed
314

Melledy's avatar
Melledy committed
315
	private int getExpRequired(int level) {
316
		PlayerLevelData levelData = GameData.getPlayerLevelDataMap().get(level);
Asnxthaony's avatar
Asnxthaony committed
317
		return levelData != null ? levelData.getExp() : 0;
Melledy's avatar
Melledy committed
318
	}
Asnxthaony's avatar
Asnxthaony committed
319

Melledy's avatar
Melledy committed
320
	private float getExpModifier() {
321
		return Grasscutter.getConfig().getGameServerOptions().getGameRates().ADVENTURE_EXP_RATE;
Melledy's avatar
Melledy committed
322
	}
Asnxthaony's avatar
Asnxthaony committed
323

Melledy's avatar
Melledy committed
324
325
326
327
	// Affected by exp rate
	public void earnExp(int exp) {
		addExpDirectly((int) (exp * getExpModifier()));
	}
Asnxthaony's avatar
Asnxthaony committed
328

Melledy's avatar
Melledy committed
329
330
331
332
333
334
	// Directly give player exp
	public void addExpDirectly(int gain) {
		boolean hasLeveledUp = false;
		int level = getLevel();
		int exp = getExp();
		int reqExp = getExpRequired(level);
Asnxthaony's avatar
Asnxthaony committed
335

Melledy's avatar
Melledy committed
336
		exp += gain;
Asnxthaony's avatar
Asnxthaony committed
337

Melledy's avatar
Melledy committed
338
339
340
341
342
343
		while (exp >= reqExp && reqExp > 0) {
			exp -= reqExp;
			level += 1;
			reqExp = getExpRequired(level);
			hasLeveledUp = true;
		}
Asnxthaony's avatar
Asnxthaony committed
344

Melledy's avatar
Melledy committed
345
346
347
348
349
350
351
352
		if (hasLeveledUp) {
			// Set level property
			this.setProperty(PlayerProperty.PROP_PLAYER_LEVEL, level);
			// Update social status
			this.updateProfile();
			// Update player with packet
			this.sendPacket(new PacketPlayerPropNotify(this, PlayerProperty.PROP_PLAYER_LEVEL));
		}
Asnxthaony's avatar
Asnxthaony committed
353

Melledy's avatar
Melledy committed
354
355
		// Set exp
		this.setProperty(PlayerProperty.PROP_PLAYER_EXP, exp);
Asnxthaony's avatar
Asnxthaony committed
356

Melledy's avatar
Melledy committed
357
358
359
		// Update player with packet
		this.sendPacket(new PacketPlayerPropNotify(this, PlayerProperty.PROP_PLAYER_EXP));
	}
Asnxthaony's avatar
Asnxthaony committed
360

Melledy's avatar
Melledy committed
361
362
363
	private void updateProfile() {
		getProfile().syncWithCharacter(this);
	}
Asnxthaony's avatar
Asnxthaony committed
364

Melledy's avatar
Melledy committed
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
	public boolean isFirstLoginEnterScene() {
		return !this.hasSentAvatarDataNotify;
	}

	public TeamManager getTeamManager() {
		return this.teamManager;
	}

	public PlayerGachaInfo getGachaInfo() {
		return gachaInfo;
	}

	public PlayerProfile getProfile() {
		if (this.playerProfile == null) {
			this.playerProfile = new PlayerProfile(this);
		}
		return playerProfile;
	}

	public Map<Integer, Integer> getProperties() {
		return properties;
	}
Asnxthaony's avatar
Asnxthaony committed
387

Melledy's avatar
Melledy committed
388
389
390
	public void setProperty(PlayerProperty prop, int value) {
		getProperties().put(prop.getId(), value);
	}
Asnxthaony's avatar
Asnxthaony committed
391

Melledy's avatar
Melledy committed
392
393
394
395
396
397
398
	public int getProperty(PlayerProperty prop) {
		return getProperties().get(prop.getId());
	}

	public Set<Integer> getFlyCloakList() {
		return flyCloakList;
	}
Asnxthaony's avatar
Asnxthaony committed
399

Melledy's avatar
Melledy committed
400
401
402
	public Set<Integer> getCostumeList() {
		return costumeList;
	}
Asnxthaony's avatar
Asnxthaony committed
403

Melledy's avatar
Melledy committed
404
405
406
407
408
	public Set<Integer> getNameCardList() {
		return this.nameCardList;
	}

	public MpSettingType getMpSetting() {
Melledy's avatar
Melledy committed
409
		return MpSettingType.MP_SETTING_ENTER_AFTER_APPLY; // TEMP
Melledy's avatar
Melledy committed
410
	}
Asnxthaony's avatar
Asnxthaony committed
411

Melledy's avatar
Melledy committed
412
413
414
415
416
417
418
	public synchronized Int2ObjectMap<CoopRequest> getCoopRequests() {
		return coopRequests;
	}

	public InvokeHandler<CombatInvokeEntry> getCombatInvokeHandler() {
		return this.combatInvokeHandler;
	}
Asnxthaony's avatar
Asnxthaony committed
419

Melledy's avatar
Melledy committed
420
421
422
423
	public InvokeHandler<AbilityInvokeEntry> getAbilityInvokeHandler() {
		return this.abilityInvokeHandler;
	}

424
425
426
427
	public InvokeHandler<AbilityInvokeEntry> getClientAbilityInitFinishHandler() {
		return clientAbilityInitFinishHandler;
	}

Melledy's avatar
Melledy committed
428
429
430
	public AvatarStorage getAvatars() {
		return avatars;
	}
Asnxthaony's avatar
Asnxthaony committed
431

Melledy's avatar
Melledy committed
432
433
434
	public Inventory getInventory() {
		return inventory;
	}
Asnxthaony's avatar
Asnxthaony committed
435

Melledy's avatar
Melledy committed
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
	public FriendsList getFriendsList() {
		return this.friendsList;
	}

	public int getEnterSceneToken() {
		return enterSceneToken;
	}

	public void setEnterSceneToken(int enterSceneToken) {
		this.enterSceneToken = enterSceneToken;
	}

	public int getNameCardId() {
		return nameCardId;
	}

	public void setNameCardId(int nameCardId) {
		this.nameCardId = nameCardId;
		this.updateProfile();
	}

	public int getMainCharacterId() {
		return mainCharacterId;
	}

	public void setMainCharacterId(int mainCharacterId) {
		this.mainCharacterId = mainCharacterId;
	}

	public int getPeerId() {
		return peerId;
	}

	public void setPeerId(int peerId) {
		this.peerId = peerId;
	}

	public int getClientTime() {
		return session.getClientTime();
	}

	public long getLastPingTime() {
		return session.getLastPingTime();
	}

	public boolean isPaused() {
		return paused;
	}

	public void setPaused(boolean newPauseState) {
		boolean oldPauseState = this.paused;
		this.paused = newPauseState;
Asnxthaony's avatar
Asnxthaony committed
488

Melledy's avatar
Melledy committed
489
490
491
492
493
494
495
496
497
498
499
500
501
502
		if (newPauseState && !oldPauseState) {
			this.onPause();
		} else if (oldPauseState && !newPauseState) {
			this.onUnpause();
		}
	}

	public SceneLoadState getSceneLoadState() {
		return sceneState;
	}

	public void setSceneLoadState(SceneLoadState sceneState) {
		this.sceneState = sceneState;
	}
Asnxthaony's avatar
Asnxthaony committed
503

Melledy's avatar
Melledy committed
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
	public boolean isInMultiplayer() {
		return this.getWorld() != null && this.getWorld().isMultiplayer();
	}

	public int getSceneId() {
		return sceneId;
	}

	public void setSceneId(int sceneId) {
		this.sceneId = sceneId;
	}

	public int getRegionId() {
		return regionId;
	}

	public void setRegionId(int regionId) {
		this.regionId = regionId;
	}
Asnxthaony's avatar
Asnxthaony committed
523

Yazawazi's avatar
Yazawazi committed
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
	public void setShowAvatars(boolean showAvatars) {
		this.showAvatars = showAvatars;
	}

	public boolean isShowAvatars() {
		return showAvatars;
	}

	public void setShowAvatarList(List<Integer> showAvatarList) {
		this.showAvatarList = showAvatarList;
	}

	public List<Integer> getShowAvatarList() {
		return showAvatarList;
	}

Yazawazi's avatar
Yazawazi committed
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
	public boolean inMoonCard() {
		return moonCard;
	}

	public void setMoonCard(boolean moonCard) {
		this.moonCard = moonCard;
	}

	public void addMoonCardDays(int days) {
		this.moonCardDuration += days;
	}

	public int getMoonCardDuration() {
		return moonCardDuration;
	}

	public void setMoonCardDuration(int moonCardDuration) {
		this.moonCardDuration = moonCardDuration;
	}

	public Date getMoonCardStartTime() {
		return moonCardStartTime;
	}

	public void setMoonCardStartTime(Date moonCardStartTime) {
		this.moonCardStartTime = moonCardStartTime;
	}

	public Set<Date> getMoonCardGetTimes() {
		return moonCardGetTimes;
	}

	public void setMoonCardGetTimes(Set<Date> moonCardGetTimes) {
		this.moonCardGetTimes = moonCardGetTimes;
	}

	public int getMoonCardRemainDays() {
		Calendar remainCalendar = Calendar.getInstance();
		remainCalendar.setTime(moonCardStartTime);
		remainCalendar.add(Calendar.DATE, moonCardDuration);
		Date theLastDay = remainCalendar.getTime();
Yazawazi's avatar
Yazawazi committed
581
		Date now = DateHelper.onlyYearMonthDay(new Date());
Yazawazi's avatar
Yazawazi committed
582
583
584
585
		return (int) ((theLastDay.getTime() - now.getTime()) / (24 * 60 * 60 * 1000)); // By copilot 
	}

	public void rechargeMoonCard() {
586
		inventory.addItem(new GameItem(203, 300));
Yazawazi's avatar
Yazawazi committed
587
588
589
		if (!moonCard) {
			moonCard = true;
			Date now = new Date();
Yazawazi's avatar
Yazawazi committed
590
			moonCardStartTime = DateHelper.onlyYearMonthDay(now);
Yazawazi's avatar
Yazawazi committed
591
592
593
594
595
596
597
598
599
600
601
602
603
			moonCardDuration = 30;
		} else {
			moonCardDuration += 30;
		}
		if (!moonCardGetTimes.contains(moonCardStartTime)) {
			moonCardGetTimes.add(moonCardStartTime);
		}
	}

	public void getTodayMoonCard() {
		if (!moonCard) {
			return;
		}
Yazawazi's avatar
Yazawazi committed
604
		Date now = DateHelper.onlyYearMonthDay(new Date());
Yazawazi's avatar
Yazawazi committed
605
606
607
608
609
610
611
612
613
614
615
616
617
618
		if (moonCardGetTimes.contains(now)) {
			return;
		}
		Date stopTime = new Date();
		Calendar stopCalendar = Calendar.getInstance();
		stopCalendar.setTime(stopTime);
		stopCalendar.add(Calendar.DATE, moonCardDuration);
		stopTime = stopCalendar.getTime();
		if (now.after(stopTime)) {
			moonCard = false;
			return;
		}
		moonCardGetTimes.add(now);
		addMoonCardDays(1);
619
620
		GameItem item = new GameItem(201, 90);
		getInventory().addItem(item, ActionReason.BlessingRedeemReward);
Yazawazi's avatar
Yazawazi committed
621
622
623
		session.send(new PacketCardProductRewardNotify(getMoonCardRemainDays()));
	}

Kengxxiao's avatar
Kengxxiao committed
624
625
626
627
	public List<ShopLimit> getShopLimit() {
		return shopLimit;
	}

Kengxxiao's avatar
Kengxxiao committed
628
629
630
631
632
	public ShopLimit getGoodsLimit(int goodsId) {
		Optional<ShopLimit> shopLimit = this.shopLimit.stream().filter(x -> x.getShopGoodId() == goodsId).findFirst();
		if (shopLimit.isEmpty())
			return null;
		return shopLimit.get();
Kengxxiao's avatar
Kengxxiao committed
633
634
	}

Kengxxiao's avatar
Kengxxiao committed
635
636
637
638
639
640
641
	public void addShopLimit(int goodsId, int boughtCount, int nextRefreshTime) {
		ShopLimit target = getGoodsLimit(goodsId);
		if (target != null) {
			target.setHasBought(target.getHasBought() + boughtCount);
			target.setHasBoughtInPeriod(target.getHasBoughtInPeriod() + boughtCount);
			target.setNextRefreshTime(nextRefreshTime);
		} else {
Kengxxiao's avatar
Kengxxiao committed
642
643
644
			ShopLimit sl = new ShopLimit();
			sl.setShopGoodId(goodsId);
			sl.setHasBought(boughtCount);
Kengxxiao's avatar
Kengxxiao committed
645
646
647
			sl.setHasBoughtInPeriod(boughtCount);
			sl.setNextRefreshTime(nextRefreshTime);
			getShopLimit().add(sl);
Kengxxiao's avatar
Kengxxiao committed
648
649
650
651
		}
		this.save();
	}

KingRainbow44's avatar
KingRainbow44 committed
652
	public boolean inGodmode() {
Melledy's avatar
Melledy committed
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
		return godmode;
	}

	public void setGodmode(boolean godmode) {
		this.godmode = godmode;
	}

	public boolean hasSentAvatarDataNotify() {
		return hasSentAvatarDataNotify;
	}

	public void setHasSentAvatarDataNotify(boolean hasSentAvatarDataNotify) {
		this.hasSentAvatarDataNotify = hasSentAvatarDataNotify;
	}

668
	public void addAvatar(Avatar avatar) {
Melledy's avatar
Melledy committed
669
		boolean result = getAvatars().addAvatar(avatar);
Asnxthaony's avatar
Asnxthaony committed
670

Melledy's avatar
Melledy committed
671
672
673
		if (result) {
			// Add starting weapon
			getAvatars().addStartingWeapon(avatar);
Asnxthaony's avatar
Asnxthaony committed
674

Melledy's avatar
Melledy committed
675
676
677
678
679
			// Done
			if (hasSentAvatarDataNotify()) {
				// Recalc stats
				avatar.recalcStats();
				// Packet
680
				sendPacket(new PacketAvatarAddNotify(avatar, false));
Melledy's avatar
Melledy committed
681
682
683
684
685
			}
		} else {
			// Failed adding avatar
		}
	}
Asnxthaony's avatar
Asnxthaony committed
686

Melledy's avatar
Melledy committed
687
688
689
690
	public void addFlycloak(int flycloakId) {
		this.getFlyCloakList().add(flycloakId);
		this.sendPacket(new PacketAvatarGainFlycloakNotify(flycloakId));
	}
Asnxthaony's avatar
Asnxthaony committed
691

Melledy's avatar
Melledy committed
692
693
694
695
	public void addCostume(int costumeId) {
		this.getCostumeList().add(costumeId);
		this.sendPacket(new PacketAvatarGainCostumeNotify(costumeId));
	}
Asnxthaony's avatar
Asnxthaony committed
696

Melledy's avatar
Melledy committed
697
698
699
700
	public void addNameCard(int nameCardId) {
		this.getNameCardList().add(nameCardId);
		this.sendPacket(new PacketUnlockNameCardNotify(nameCardId));
	}
Asnxthaony's avatar
Asnxthaony committed
701

Melledy's avatar
Melledy committed
702
703
704
705
	public void setNameCard(int nameCardId) {
		if (!this.getNameCardList().contains(nameCardId)) {
			return;
		}
Asnxthaony's avatar
Asnxthaony committed
706

Melledy's avatar
Melledy committed
707
		this.setNameCardId(nameCardId);
Asnxthaony's avatar
Asnxthaony committed
708

Melledy's avatar
Melledy committed
709
710
		this.sendPacket(new PacketSetNameCardRsp(nameCardId));
	}
Asnxthaony's avatar
Asnxthaony committed
711

Melledy's avatar
Melledy committed
712
	public void dropMessage(Object message) {
713
		this.sendPacket(new PacketPrivateChatNotify(GameConstants.SERVER_CONSOLE_UID, getUid(), message.toString()));
Melledy's avatar
Melledy committed
714
	}
Melledy's avatar
Melledy committed
715
716
717

	/**
	 * Sends a message to another player.
Asnxthaony's avatar
Asnxthaony committed
718
719
	 *
	 * @param sender  The sender of the message.
Melledy's avatar
Melledy committed
720
721
	 * @param message The message to send.
	 */
722
	public void sendMessage(Player sender, Object message) {
723
		this.sendPacket(new PacketPrivateChatNotify(sender.getUid(), this.getUid(), message.toString()));
Melledy's avatar
Melledy committed
724
	}
Asnxthaony's avatar
Asnxthaony committed
725

Benjamin Elsdon's avatar
Benjamin Elsdon committed
726
	// ---------------------MAIL------------------------
727

Benjamin Elsdon's avatar
Benjamin Elsdon committed
728
	public List<Mail> getAllMail() { return this.mail; }
729

Benjamin Elsdon's avatar
Benjamin Elsdon committed
730
	public void sendMail(Mail message) {
731
732
733
734
		// Call mail receive event.
		PlayerReceiveMailEvent event = new PlayerReceiveMailEvent(this, message); event.call();
		if(event.isCanceled()) return; message = event.getMessage();
		
Benjamin Elsdon's avatar
Benjamin Elsdon committed
735
		this.mail.add(message);
736
		this.save();
737
		Grasscutter.getLogger().debug("Mail sent to user [" + this.getUid()  + ":" + this.getNickname() + "]!");
738
		if(this.isOnline()) {
Benjamin Elsdon's avatar
Benjamin Elsdon committed
739
740
			this.sendPacket(new PacketMailChangeNotify(this, message));
		} // TODO: setup a way for the mail notification to show up when someone receives mail when they were offline
741
	}
Benjamin Elsdon's avatar
Benjamin Elsdon committed
742
743

	public boolean deleteMail(int mailId) {
744
		Mail message = getMail(mailId);
Benjamin Elsdon's avatar
Benjamin Elsdon committed
745
746

		if(message != null) {
747
			int index = getMailId(message);
748
749
			message.expireTime = (int) Instant.now().getEpochSecond(); // Just set the mail as expired for now. I don't want to implement a counter specifically for an account...
			this.replaceMailByIndex(index, message);
Benjamin Elsdon's avatar
Benjamin Elsdon committed
750
751
752
753
754
755
			return true;
		}

		return false;
	}

756
757
	public Mail getMail(int index) { return this.mail.get(index); }
	public int getMailId(Mail message) {
Benjamin Elsdon's avatar
Benjamin Elsdon committed
758
759
760
		return this.mail.indexOf(message);
	}

761
	public boolean replaceMailByIndex(int index, Mail message) {
762
		if(getMail(index) != null) {
763
764
			this.mail.set(index, message);
			this.save();
Benjamin Elsdon's avatar
Benjamin Elsdon committed
765
766
767
768
769
			return true;
		} else {
			return false;
		}
	}
770
	
Melledy's avatar
Melledy committed
771
	public void interactWith(int gadgetEntityId) {
772
		GameEntity entity = getScene().getEntityById(gadgetEntityId);
Asnxthaony's avatar
Asnxthaony committed
773

Melledy's avatar
Melledy committed
774
775
776
		if (entity == null) {
			return;
		}
Asnxthaony's avatar
Asnxthaony committed
777

Melledy's avatar
Melledy committed
778
779
780
781
		// Handle
		if (entity instanceof EntityItem) {
			// Pick item
			EntityItem drop = (EntityItem) entity;
Kengxxiao's avatar
Kengxxiao committed
782
783
784
785
786
787
788
			if (!drop.isShare()) // check drop owner to avoid someone picked up item in others' world
			{
				int dropOwner = (int)(drop.getGuid() >> 32);
				if (dropOwner != getUid())
					return;
			}
			entity.getScene().removeEntity(entity);
789
			GameItem item = new GameItem(drop.getItemData(), drop.getCount());
Melledy's avatar
Melledy committed
790
			// Add to inventory
791
			boolean success = getInventory().addItem(item, ActionReason.SubfieldDrop);
Melledy's avatar
Melledy committed
792
			if (success) {
Kengxxiao's avatar
Kengxxiao committed
793
794
795
796
797

				if (!drop.isShare()) // not shared drop
					this.sendPacket(new PacketGadgetInteractRsp(drop, InteractType.INTERACT_PICK_ITEM));
				else
					this.getScene().broadcastPacket(new PacketGadgetInteractRsp(drop, InteractType.INTERACT_PICK_ITEM));
Melledy's avatar
Melledy committed
798
			}
Kengxxiao's avatar
Kengxxiao committed
799
800
801
		} else {
			// Delete directly
			entity.getScene().removeEntity(entity);
Melledy's avatar
Melledy committed
802
		}
Asnxthaony's avatar
Asnxthaony committed
803

Melledy's avatar
Melledy committed
804
805
		return;
	}
Asnxthaony's avatar
Asnxthaony committed
806

Melledy's avatar
Melledy committed
807
	public void onPause() {
Asnxthaony's avatar
Asnxthaony committed
808

Melledy's avatar
Melledy committed
809
	}
Asnxthaony's avatar
Asnxthaony committed
810

Melledy's avatar
Melledy committed
811
	public void onUnpause() {
Asnxthaony's avatar
Asnxthaony committed
812

Melledy's avatar
Melledy committed
813
	}
Asnxthaony's avatar
Asnxthaony committed
814

815
	public void sendPacket(BasePacket packet) {
Melledy's avatar
Melledy committed
816
817
818
819
		if (this.hasSentAvatarDataNotify) {
			this.getSession().send(packet);
		}
	}
Asnxthaony's avatar
Asnxthaony committed
820

Melledy's avatar
Melledy committed
821
822
	public OnlinePlayerInfo getOnlinePlayerInfo() {
		OnlinePlayerInfo.Builder onlineInfo = OnlinePlayerInfo.newBuilder()
Asnxthaony's avatar
Asnxthaony committed
823
824
825
826
827
828
				.setUid(this.getUid())
				.setNickname(this.getNickname())
				.setPlayerLevel(this.getLevel())
				.setMpSettingType(this.getMpSetting())
				.setNameCardId(this.getNameCardId())
				.setSignature(this.getSignature())
Melledy's avatar
Melledy committed
829
				.setProfilePicture(ProfilePicture.newBuilder().setAvatarId(this.getHeadImage()));
Asnxthaony's avatar
Asnxthaony committed
830

Melledy's avatar
Melledy committed
831
		if (this.getWorld() != null) {
Melledy's avatar
Melledy committed
832
			onlineInfo.setCurPlayerNumInWorld(getWorld().getPlayerCount());
Melledy's avatar
Melledy committed
833
834
835
		} else {
			onlineInfo.setCurPlayerNumInWorld(1);
		}
Asnxthaony's avatar
Asnxthaony committed
836

Melledy's avatar
Melledy committed
837
838
839
		return onlineInfo.build();
	}

Asnxthaony's avatar
Asnxthaony committed
840
	public PlayerBirthday getBirthday() {
Miyucchi's avatar
Miyucchi committed
841
842
843
844
845
846
847
848
		return this.birthday;
	}

	public void setBirthday(int d, int m) {
		this.birthday = new PlayerBirthday(d, m);
		this.updateProfile();
	}

Asnxthaony's avatar
Asnxthaony committed
849
850
851
852
	public boolean hasBirthday() {
		return this.birthday.getDay() > 0;
	}

853
854
855
856
857
858
859
860
	public Set<Integer> getRewardedLevels() {
		return rewardedLevels;
	}

	public void setRewardedLevels(Set<Integer> rewardedLevels) {
		this.rewardedLevels = rewardedLevels;
	}

Melledy's avatar
Melledy committed
861
	public SocialDetail.Builder getSocialDetail() {
Yazawazi's avatar
Yazawazi committed
862
		List<SocialShowAvatarInfoOuterClass.SocialShowAvatarInfo> socialShowAvatarInfoList = new ArrayList<>();
Yazawazi's avatar
Yazawazi committed
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
		if (this.isOnline()) {
			if (this.getShowAvatarList() != null) {
				for (int avatarId : this.getShowAvatarList()) {
					socialShowAvatarInfoList.add(
							socialShowAvatarInfoList.size(),
							SocialShowAvatarInfoOuterClass.SocialShowAvatarInfo.newBuilder()
									.setAvatarId(avatarId)
									.setLevel(getAvatars().getAvatarById(avatarId).getLevel())
									.setCostumeId(getAvatars().getAvatarById(avatarId).getCostume())
									.build()
					);
				}
			}
		} else {
			List<Integer> showAvatarList = DatabaseHelper.getPlayerById(id).getShowAvatarList();
			AvatarStorage avatars = DatabaseHelper.getPlayerById(id).getAvatars();
			avatars.loadFromDatabase();
			if (showAvatarList != null) {
				for (int avatarId : showAvatarList) {
					socialShowAvatarInfoList.add(
							socialShowAvatarInfoList.size(),
							SocialShowAvatarInfoOuterClass.SocialShowAvatarInfo.newBuilder()
									.setAvatarId(avatarId)
									.setLevel(avatars.getAvatarById(avatarId).getLevel())
									.setCostumeId(avatars.getAvatarById(avatarId).getCostume())
									.build()
					);
				}
			}
Yazawazi's avatar
Yazawazi committed
892
893
		}

Asnxthaony's avatar
Asnxthaony committed
894
895
		SocialDetail.Builder social = SocialDetail.newBuilder()
				.setUid(this.getUid())
Yazawazi's avatar
Yazawazi committed
896
				.setProfilePicture(ProfilePicture.newBuilder().setAvatarId(this.getHeadImage()))
Asnxthaony's avatar
Asnxthaony committed
897
898
899
900
901
902
				.setNickname(this.getNickname())
				.setSignature(this.getSignature())
				.setLevel(this.getLevel())
				.setBirthday(this.getBirthday().getFilledProtoWhenNotEmpty())
				.setWorldLevel(this.getWorldLevel())
				.setNameCardId(this.getNameCardId())
Yazawazi's avatar
Yazawazi committed
903
904
				.setIsShowAvatar(this.isShowAvatars())
				.addAllShowAvatarInfoList(socialShowAvatarInfoList)
Asnxthaony's avatar
Asnxthaony committed
905
				.setFinishAchievementNum(0);
Melledy's avatar
Melledy committed
906
907
		return social;
	}
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936

	public List<ShowAvatarInfoOuterClass.ShowAvatarInfo> getShowAvatarInfoList() {
		List<ShowAvatarInfoOuterClass.ShowAvatarInfo> showAvatarInfoList = new ArrayList<>();

		Player player;
		boolean shouldRecalc;
		if (this.isOnline()) {
			player = this;
			shouldRecalc = false;
		} else {
			player = DatabaseHelper.getPlayerById(id);
			player.getAvatars().loadFromDatabase();
			player.getInventory().loadFromDatabase();
			shouldRecalc = true;
		}

		List<Integer> showAvatarList = player.getShowAvatarList();
		AvatarStorage avatars = player.getAvatars();
		if (showAvatarList != null) {
			for (int avatarId : showAvatarList) {
				Avatar avatar = avatars.getAvatarById(avatarId);
				if (shouldRecalc) {
					avatar.recalcStats();
				}
				showAvatarInfoList.add(avatar.toShowAvatarInfoProto());
			}
		}
		return showAvatarInfoList;
	}
937
938
939
	
	public PlayerWorldLocationInfoOuterClass.PlayerWorldLocationInfo getWorldPlayerLocationInfo() {
		return PlayerWorldLocationInfoOuterClass.PlayerWorldLocationInfo.newBuilder()
Asnxthaony's avatar
Asnxthaony committed
940
941
942
				.setSceneId(this.getSceneId())
				.setPlayerLoc(this.getPlayerLocationInfo())
				.build();
Melledy's avatar
Melledy committed
943
	}
Asnxthaony's avatar
Asnxthaony committed
944

Melledy's avatar
Melledy committed
945
	public PlayerLocationInfo getPlayerLocationInfo() {
Asnxthaony's avatar
Asnxthaony committed
946
947
948
949
950
		return PlayerLocationInfo.newBuilder()
				.setUid(this.getUid())
				.setPos(this.getPos().toProto())
				.setRot(this.getRotation().toProto())
				.build();
Melledy's avatar
Melledy committed
951
	}
Asnxthaony's avatar
Asnxthaony committed
952

Melledy's avatar
Melledy committed
953
954
955
956
957
958
959
960
961
962
963
	public synchronized void onTick() {
		// Check ping
		if (this.getLastPingTime() > System.currentTimeMillis() + 60000) {
			this.getSession().close();
			return;
		}
		// Check co-op requests
		Iterator<CoopRequest> it = this.getCoopRequests().values().iterator();
		while (it.hasNext()) {
			CoopRequest req = it.next();
			if (req.isExpired()) {
964
				req.getRequester().sendPacket(new PacketPlayerApplyEnterMpResultNotify(this, false, PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Reason.SYSTEM_JUDGE));
Melledy's avatar
Melledy committed
965
966
967
968
969
				it.remove();
			}
		}
		// Ping
		if (this.getWorld() != null) {
Melledy's avatar
Melledy committed
970
971
			// RTT notify - very important to send this often
			this.sendPacket(new PacketWorldPlayerRTTNotify(this.getWorld()));
Asnxthaony's avatar
Asnxthaony committed
972

Melledy's avatar
Melledy committed
973
974
975
976
977
978
979
			// Update player locations if in multiplayer every 5 seconds
			long time = System.currentTimeMillis();
			if (this.getWorld().isMultiplayer() && this.getScene() != null && time > nextSendPlayerLocTime) {
				this.sendPacket(new PacketWorldPlayerLocationNotify(this.getWorld()));
				this.sendPacket(new PacketScenePlayerLocationNotify(this.getScene()));
				this.resetSendPlayerLocTime();
			}
Melledy's avatar
Melledy committed
980
981
		}
	}
Asnxthaony's avatar
Asnxthaony committed
982

Melledy's avatar
Melledy committed
983
984
985
	public void resetSendPlayerLocTime() {
		this.nextSendPlayerLocTime = System.currentTimeMillis() + 5000;
	}
Melledy's avatar
Melledy committed
986
987
988
989
990

	@PostLoad
	private void onLoad() {
		this.getTeamManager().setPlayer(this);
	}
Asnxthaony's avatar
Asnxthaony committed
991

Melledy's avatar
Melledy committed
992
993
994
995
996
997
998
999
	public void save() {
		DatabaseHelper.savePlayer(this);
	}

	public void onLogin() {
		// Make sure these exist
		if (this.getTeamManager() == null) {
			this.teamManager = new TeamManager(this);
Asnxthaony's avatar
Asnxthaony committed
1000
1001
		}
		if (this.getProfile().getUid() == 0) {
1002
			this.getProfile().syncWithCharacter(this);
Melledy's avatar
Melledy committed
1003
		}
Asnxthaony's avatar
Asnxthaony committed
1004

Melledy's avatar
Melledy committed
1005
1006
		// Check if player object exists in server
		// TODO - optimize
1007
		Player exists = this.getServer().getPlayerByUid(getUid());
Melledy's avatar
Melledy committed
1008
1009
1010
		if (exists != null) {
			exists.getSession().close();
		}
Asnxthaony's avatar
Asnxthaony committed
1011

Melledy's avatar
Melledy committed
1012
1013
1014
1015
		// Load from db
		this.getAvatars().loadFromDatabase();
		this.getInventory().loadFromDatabase();
		this.getAvatars().postLoad();
Asnxthaony's avatar
Asnxthaony committed
1016

Melledy's avatar
Melledy committed
1017
		this.getFriendsList().loadFromDatabase();
Asnxthaony's avatar
Asnxthaony committed
1018

Melledy's avatar
Melledy committed
1019
1020
1021
		// Create world
		World world = new World(this);
		world.addPlayer(this);
Asnxthaony's avatar
Asnxthaony committed
1022

Melledy's avatar
Melledy committed
1023
1024
1025
1026
1027
		// Add to gameserver
		if (getSession().isActive()) {
			getServer().registerPlayer(this);
			getProfile().setPlayer(this); // Set online
		}
Asnxthaony's avatar
Asnxthaony committed
1028
1029

		// Multiplayer setting
Melledy's avatar
Melledy committed
1030
1031
		this.setProperty(PlayerProperty.PROP_PLAYER_MP_SETTING_TYPE, this.getMpSetting().getNumber());
		this.setProperty(PlayerProperty.PROP_IS_MP_MODE_AVAILABLE, 1);
Asnxthaony's avatar
Asnxthaony committed
1032

Melledy's avatar
Melledy committed
1033
1034
1035
1036
1037
		// Packets
		session.send(new PacketPlayerDataNotify(this)); // Player data
		session.send(new PacketStoreWeightLimitNotify());
		session.send(new PacketPlayerStoreNotify(this));
		session.send(new PacketAvatarDataNotify(this));
Asnxthaony's avatar
Asnxthaony committed
1038

Yazawazi's avatar
Yazawazi committed
1039
1040
		getTodayMoonCard(); // The timer works at 0:0, some users log in after that, use this method to check if they have received a reward today or not. If not, send the reward.

Melledy's avatar
Melledy committed
1041
		session.send(new PacketPlayerEnterSceneNotify(this)); // Enter game world
1042
		session.send(new PacketPlayerLevelRewardUpdateNotify(rewardedLevels));
Melledy's avatar
Melledy committed
1043
1044
1045
1046
		session.send(new PacketOpenStateUpdateNotify());

		// First notify packets sent
		this.setHasSentAvatarDataNotify(true);
1047
1048
1049
1050
1051

		// Call join event.
		PlayerJoinEvent event = new PlayerJoinEvent(this); event.call();
		if(event.isCanceled()) // If event is not cancelled, continue.
			session.close();
Melledy's avatar
Melledy committed
1052
	}
Asnxthaony's avatar
Asnxthaony committed
1053

Melledy's avatar
Melledy committed
1054
1055
1056
1057
1058
	public void onLogout() {
		// Leave world
		if (this.getWorld() != null) {
			this.getWorld().removePlayer(this);
		}
Asnxthaony's avatar
Asnxthaony committed
1059

Melledy's avatar
Melledy committed
1060
1061
1062
		// Status stuff
		this.getProfile().syncWithCharacter(this);
		this.getProfile().setPlayer(null); // Set offline
Asnxthaony's avatar
Asnxthaony committed
1063

Melledy's avatar
Melledy committed
1064
		this.getCoopRequests().clear();
Asnxthaony's avatar
Asnxthaony committed
1065

Melledy's avatar
Melledy committed
1066
1067
1068
1069
		// Save to db
		this.save();
		this.getTeamManager().saveAvatars();
		this.getFriendsList().save();
KingRainbow44's avatar
KingRainbow44 committed
1070
1071
1072
		
		// Call quit event.
		PlayerQuitEvent event = new PlayerQuitEvent(this); event.call();
Melledy's avatar
Melledy committed
1073
	}
Asnxthaony's avatar
Asnxthaony committed
1074

Melledy's avatar
Melledy committed
1075
	public enum SceneLoadState {
Asnxthaony's avatar
Asnxthaony committed
1076
1077
		NONE(0), LOADING(1), INIT(2), LOADED(3);

Melledy's avatar
Melledy committed
1078
		private final int value;
Asnxthaony's avatar
Asnxthaony committed
1079

Melledy's avatar
Melledy committed
1080
1081
1082
		private SceneLoadState(int value) {
			this.value = value;
		}
Asnxthaony's avatar
Asnxthaony committed
1083

Melledy's avatar
Melledy committed
1084
1085
1086
1087
1088
		public int getValue() {
			return this.value;
		}
	}
}