mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-13 01:24:46 -07:00
server-side part of client -> server commands almost converted to ProtocolBuffers. not usable yet
This commit is contained in:
parent
ca3a7e69a1
commit
4eb9dfc5bf
26 changed files with 1233 additions and 1436 deletions
|
|
@ -8,7 +8,7 @@ DEPENDPATH += . src ../common
|
|||
INCLUDEPATH += . src ../common
|
||||
MOC_DIR = build
|
||||
OBJECTS_DIR = build
|
||||
LIBS += -lgcrypt
|
||||
LIBS += -lgcrypt -lprotobuf
|
||||
|
||||
CONFIG += qt debug
|
||||
QT += network sql
|
||||
|
|
@ -37,7 +37,16 @@ HEADERS += src/main.h \
|
|||
../common/server_game.h \
|
||||
../common/server_player.h \
|
||||
../common/server_protocolhandler.h \
|
||||
../common/server_arrowtarget.h
|
||||
../common/server_arrowtarget.h \
|
||||
../common/pb/commands.pb.h \
|
||||
../common/pb/color.pb.h \
|
||||
../common/pb/move_card_to_zone.pb.h \
|
||||
../common/pb/game_commands.pb.h \
|
||||
../common/pb/room_commands.pb.h \
|
||||
../common/pb/session_commands.pb.h \
|
||||
../common/pb/moderator_commands.pb.h \
|
||||
../common/pb/admin_commands.pb.h
|
||||
|
||||
|
||||
SOURCES += src/main.cpp \
|
||||
src/servatrice.cpp \
|
||||
|
|
@ -59,4 +68,13 @@ SOURCES += src/main.cpp \
|
|||
../common/server_room.cpp \
|
||||
../common/server_game.cpp \
|
||||
../common/server_player.cpp \
|
||||
../common/server_protocolhandler.cpp
|
||||
../common/server_protocolhandler.cpp \
|
||||
../common/pb/commands.pb.cc \
|
||||
../common/pb/color.pb.cc \
|
||||
../common/pb/move_card_to_zone.pb.cc \
|
||||
../common/pb/game_commands.pb.cc \
|
||||
../common/pb/room_commands.pb.cc \
|
||||
../common/pb/session_commands.pb.cc \
|
||||
../common/pb/moderator_commands.pb.cc \
|
||||
../common/pb/admin_commands.pb.cc
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue