Config.java 3.32 KB
Newer Older
Melledy's avatar
Melledy committed
1
2
package emu.grasscutter;

筱傑's avatar
筱傑 committed
3
4
import emu.grasscutter.game.mail.Mail;

KingRainbow44's avatar
KingRainbow44 committed
5
public final class Config {
6

Melledy's avatar
Melledy committed
7
8
	public String DatabaseUrl = "mongodb://localhost:27017";
	public String DatabaseCollection = "grasscutter";
Jaida Wu's avatar
Jaida Wu committed
9

Melledy's avatar
Melledy committed
10
11
12
13
14
	public String RESOURCE_FOLDER = "./resources/";
	public String DATA_FOLDER = "./data/";
	public String PACKETS_FOLDER = "./packets/";
	public String DUMPS_FOLDER = "./dumps/";
	public String KEY_FOLDER = "./keys/";
15
	public String SCRIPTS_FOLDER = "./resources/Scripts/";
KingRainbow44's avatar
KingRainbow44 committed
16
	public String PLUGINS_FOLDER = "./plugins/";
17

18
	public String RunMode = "HYBRID"; // HYBRID, DISPATCH_ONLY, GAME_ONLY
19
20
21
22
23
	public GameServerOptions GameServer = new GameServerOptions();
	public DispatchServerOptions DispatchServer = new DispatchServerOptions();

	public GameServerOptions getGameServerOptions() {
		return GameServer;
Melledy's avatar
Melledy committed
24
	}
25
26
27
28

	public DispatchServerOptions getDispatchOptions() { return DispatchServer; }

	public static class DispatchServerOptions {
29
30
		public String Ip = "0.0.0.0";
		public String PublicIp = "127.0.0.1";
31
		public int Port = 443;
32
		public int PublicPort = 0;
33
		public String KeystorePath = "./keystore.p12";
34
		public String KeystorePassword = "123456";
35
		public Boolean UseSSL = true;
36
		public Boolean FrontHTTPS = true;
37
38

		public boolean AutomaticallyCreateAccounts = false;
memetrollsXD's avatar
memetrollsXD committed
39
		public String[] defaultPermissions = new String[] { "" };
40
41
42
43
44
45
46
47
48
49
50
51
52

		public RegionInfo[] GameServers = {};

		public RegionInfo[] getGameServers() {
			return GameServers;
		}

		public static class RegionInfo {
			public String Name = "os_usa";
			public String Title = "Test";
			public String Ip = "127.0.0.1";
			public int Port = 22102;
		}
Melledy's avatar
Melledy committed
53
54
	}
	
55
56
	public static class GameServerOptions {
		public String Name = "Test";
57
58
		public String Ip = "0.0.0.0";
		public String PublicIp = "127.0.0.1";
59
		public int Port = 22102;
xtaodada's avatar
xtaodada committed
60
		public int PublicPort = 0;
61

62
63
64
		public String DispatchServerDatabaseUrl = "mongodb://localhost:27017";
		public String DispatchServerDatabaseCollection = "grasscutter";

65
66
		public boolean LOG_PACKETS = false;

67
68
69
70
71
72
73
		public int InventoryLimitWeapon = 2000;
		public int InventoryLimitRelic = 2000;
		public int InventoryLimitMaterial = 2000;
		public int InventoryLimitFurniture = 2000;
		public int InventoryLimitAll = 30000;
		public int MaxAvatarsInTeam = 4;
		public int MaxAvatarsInTeamMultiplayer = 4;
KingRainbow44's avatar
KingRainbow44 committed
74
		public int MaxEntityLimit = 1000; // Max entity limit per world. // TODO: Enforce later.
75
		public boolean WatchGacha = false;
xtaodada's avatar
xtaodada committed
76
		public String ServerNickname = "Server";
xtaodada's avatar
xtaodada committed
77
		public int ServerAvatarId = 10000007;
Melledy's avatar
Melledy committed
78
79
		public int[] WelcomeEmotes = {2007, 1002, 4010};
		public String WelcomeMotd = "Welcome to Grasscutter emu";
memetrollsXD's avatar
memetrollsXD committed
80
		public String WelcomeMailContent = "Hi there!\r\nFirst of all, welcome to Grasscutter. If you have any issues, please let us know so that Lawnmower can help you! \r\n\r\nCheck out our:\r\n<type=\"browser\" text=\"Discord\" href=\"https://discord.gg/T5vZU6UyeG\"/> <type=\"browser\" text=\"GitHub\" href=\"https://github.com/Melledy/Grasscutter\"/>";
筱傑's avatar
筱傑 committed
81
82
83
84
		public Mail.MailItem[] WelcomeMailItems = {
				new Mail.MailItem(13509, 1, 1),
				new Mail.MailItem(201, 10000, 1),
		};
85

Kengxxiao's avatar
Kengxxiao committed
86
		public boolean EnableOfficialShop = true;
87
88
89
90
91
92
93
94
95
96

		public GameRates Game = new GameRates();

		public GameRates getGameRates() { return Game; }

		public static class GameRates {
			public float ADVENTURE_EXP_RATE = 1.0f;
			public float MORA_RATE = 1.0f;
			public float DOMAIN_DROP_RATE = 1.0f;
		}
Melledy's avatar
Melledy committed
97
98
	}
}