From 60fe7119294334a2a4bd14c0af0fcfaa9d6d3d1f Mon Sep 17 00:00:00 2001 From: wzdwc Date: Thu, 23 Apr 2020 00:01:14 +0800 Subject: [PATCH] feat: palyer action and update common card --- .gitignore | 1 - .idea/TexasPokerGame.iml | 8 + .idea/codeStyles/Project.xml | 36 +++++ .idea/codeStyles/codeStyleConfig.xml | 5 + .idea/misc.xml | 6 + .idea/modules.xml | 8 + .idea/workspace.xml | 100 +++++++++++++ client/src/App.vue | 136 ++++++++--------- client/src/views/game.vue | 21 ++- server/logs/ELKLog/error.log | 3 + server/logs/ELKLog/info.log | 13 ++ server/logs/game-node-center/agent.log | 38 +++++ server/logs/game-node-center/app.log | 86 +++++++++++ server/logs/game-node-center/core.log | 51 +++++++ server/logs/game-node-center/egg-schedule.log | 15 ++ server/logs/game-node-center/error.log | 29 ++++ server/src/app/core/Player.ts | 9 +- server/src/app/core/PokerGame.ts | 77 +++++----- server/src/app/io/controller/game.ts | 141 +++++++++++------- server/test/app/core/pokerGame.test.ts | 18 +-- 20 files changed, 614 insertions(+), 187 deletions(-) create mode 100644 .idea/TexasPokerGame.iml create mode 100755 .idea/codeStyles/Project.xml create mode 100755 .idea/codeStyles/codeStyleConfig.xml create mode 100755 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100755 .idea/workspace.xml diff --git a/.gitignore b/.gitignore index 315d8b7..4666ef5 100755 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,5 @@ dist/ npm-debug.log yarn-error.log test/unit/coverage -/.idea/ run/ npm-debug.* diff --git a/.idea/TexasPokerGame.iml b/.idea/TexasPokerGame.iml new file mode 100644 index 0000000..c956989 --- /dev/null +++ b/.idea/TexasPokerGame.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml new file mode 100755 index 0000000..fd1509a --- /dev/null +++ b/.idea/codeStyles/Project.xml @@ -0,0 +1,36 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100755 index 0000000..a55e7a1 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100755 index 0000000..28a804d --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..3ca83e1 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100755 index 0000000..f37f0a5 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1586870120922 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/client/src/App.vue b/client/src/App.vue index 7797306..e6d4d44 100644 --- a/client/src/App.vue +++ b/client/src/App.vue @@ -1,68 +1,68 @@ - - - - - + + + + + diff --git a/client/src/views/game.vue b/client/src/views/game.vue index 83dd9a8..8543d53 100644 --- a/client/src/views/game.vue +++ b/client/src/views/game.vue @@ -1,8 +1,9 @@