Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

iTyran/SK_CardGameServer

Repository files navigation

game server use golang and websocket

Card Game client

Github repo

Login module

Register

{
 "Command" : "CM_REGISTER",
 "Param":
 {
 "Username" : "xxx",
 "Password" : "aa",
 "Email" : "a@x.com"
 }
}
{
 "Command" : "CM_REGISTER",
 "Return" :
 {
 "Code" : 0,
 "Message" : "CreateCharacter"
 }
}

Login

{
 "Command" : "CM_LOGIN",
 "Param" :
 {
 "Username" : "xxx",
 "Password" : "aa"
 }
}
{
 "Command" : "CM_LOGIN",
 "Return" :
 {
 "Code" : 0,
 "Message" : "Success" // or "CreateCharacter"
 }
}

Create character (LOGIN FIRST)

{
 "Command" : "CM_CHAR_CREATE",
 "Param" :
 {
 "CharName" : "xxx",
 }
}
{
 "Command" : "CM_CHAR_CREATE",
 "Return" :
 {
 "Code" : 0,
 "Message" : {json of char info}
 }
}

Get character (LOGIN FIRST)

{
 "Command" : "CM_CHAR_GET",
 "Param" : ""
}
{
 "Command" : "CM_CHAR_GET",
 "Return" :
 {
 "Code" : 0,
 "Message" : {json of char info}
 }
}

json of char info

{
 "CharName": "a New Name ",
 "Level" : 1,
 "Vitality": 60,
 "Scene": 1,
 "Stage" : 1
}

Get card array

{
 "Command" : "CM_CARDS_GET",
 "Param" : ""
}
{
 "Command" : "CM_CARDS_GET",
 "Return" :
 {
 "Code" : 0,
 "Message" : {json of card array}
 }
}

json of card array

[
{
 "Name": "小花猫",
 "HP": 21,
 "Attack": 27,
 "Defence": 13,
 "Speed": 120,
 "Talent": 720,
 "Drop": 50,
 "Experience": 324,
 "Skill": [1,2],
 "ID": "002",
 "Level": 1,
 "Status": 1,
 "Hash": "0xc2000e9630",
}
]

Raid

{
 "Command" : "CM_RAID",
 "Param" : {
 "Scene" : 1,
 "Stage" : 1
 }
}
{
 "Command" : "CM_RAID",
 "Return" : 
 {
 "Code" : 0,
 "Message" : "{battle command order}"
 }
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

AltStyle によって変換されたページ (->オリジナル) /