PlayerGachaBannerInfo.java 2.31 KB
Newer Older
Melledy's avatar
Melledy committed
1
2
package emu.grasscutter.game.gacha;

3
4
5
import dev.morphia.annotations.Entity;

@Entity
Melledy's avatar
Melledy committed
6
7
8
9
public class PlayerGachaBannerInfo {
	private int pity5 = 0;
	private int pity4 = 0;
	private int failedFeaturedItemPulls = 0;
AnimeGitB's avatar
AnimeGitB committed
10
11
12
13
14
	private int failedFeatured4ItemPulls = 0;
	private int pity5Pool1 = 0;
	private int pity5Pool2 = 0;
	private int pity4Pool1 = 0;
	private int pity4Pool2 = 0;
Melledy's avatar
Melledy committed
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
	
	public int getPity5() {
		return pity5;
	}
	
	public void setPity5(int pity5) {
		this.pity5 = pity5;
	}
	
	public void addPity5(int amount) {
		this.pity5 += amount;
	}
	
	public int getPity4() {
		return pity4;
	}
	
	public void setPity4(int pity4) {
		this.pity4 = pity4;
	}
	
	public void addPity4(int amount) {
		this.pity4 += amount;
	}
	
AnimeGitB's avatar
AnimeGitB committed
40
41
42
43
44
	public int getFailedFeaturedItemPulls(int rarity) {
		return switch (rarity) {
			case 4 -> failedFeatured4ItemPulls;
			default -> failedFeaturedItemPulls;  // 5
		};
Melledy's avatar
Melledy committed
45
46
	}
	
AnimeGitB's avatar
AnimeGitB committed
47
48
49
50
51
	public void setFailedFeaturedItemPulls(int rarity, int amount) {
		switch (rarity) {
			case 4 -> failedFeatured4ItemPulls = amount;
			default -> failedFeaturedItemPulls = amount;  // 5
		};
Melledy's avatar
Melledy committed
52
53
	}
	
AnimeGitB's avatar
AnimeGitB committed
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
	public void addFailedFeaturedItemPulls(int rarity, int amount) {
		switch (rarity) {
			case 4 -> failedFeatured4ItemPulls += amount;
			default -> failedFeaturedItemPulls += amount;  // 5
		};
	}
	
	public int getPityPool(int rarity, int pool) {
		return switch (rarity) {
			case 4 -> switch (pool) {
				case 1 -> pity4Pool1;
				default -> pity4Pool2;
			};
			default -> switch (pool) {
				case 1 -> pity5Pool1;
				default -> pity5Pool2;
			};
		};
	}
	
	public void setPityPool(int rarity, int pool, int amount) {
		switch (rarity) {
			case 4:
				switch (pool) {
					case 1 -> pity4Pool1 = amount;
					default -> pity4Pool2 = amount;
				};
				break;
			case 5:
			default:
				switch (pool) {
					case 1 -> pity5Pool1 = amount;
					default -> pity5Pool2 = amount;
				};
				break;
		};
	}
	
	public void addPityPool(int rarity, int pool, int amount) {
		switch (rarity) {
			case 4:
				switch (pool) {
					case 1 -> pity4Pool1 += amount;
					default -> pity4Pool2 += amount;
				};
				break;
			case 5:
			default:
				switch (pool) {
					case 1 -> pity5Pool1 += amount;
					default -> pity5Pool2 += amount;
				};
				break;
		};
	}

	public void incPityAll() {
		pity4++;
		pity5++;
		pity4Pool1++;
		pity4Pool2++;
		pity5Pool1++;
		pity5Pool2++;
Melledy's avatar
Melledy committed
117
118
	}
}