mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
Added data collectors, AI and testing tools improves:
- dev: added data collectors API to collect and process game data in real time; - tests: added game logs output in all unit tests (enabled by default); - tests: added games history storage (decks, game logs, chats - disabled by default);
This commit is contained in:
parent
9812e133e1
commit
52180d1393
30 changed files with 1007 additions and 80 deletions
|
|
@ -66,7 +66,6 @@
|
|||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-lang3</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,12 @@ public class ChatMessage implements Serializable {
|
|||
}
|
||||
|
||||
public enum MessageType {
|
||||
USER_INFO, STATUS, GAME, TALK, WHISPER_FROM, WHISPER_TO
|
||||
USER_INFO, // system messages
|
||||
STATUS, // system messages
|
||||
GAME, // game logs
|
||||
TALK, // public chat
|
||||
WHISPER_FROM, // private chat income
|
||||
WHISPER_TO // private chat outcome
|
||||
}
|
||||
|
||||
public enum SoundToPlay {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue