├── .gitignore ├── README.md ├── include ├── include.pri └── ssl-client │ ├── net │ ├── grSim_client_example │ │ ├── grSim_client_example.cpp │ │ └── grSim_client_example.h │ ├── net.h │ ├── netraw │ │ ├── netraw.cpp │ │ └── netraw.h │ ├── referee_ssl_client │ │ ├── referee_ssl_client.cpp │ │ └── referee_ssl_client.h │ ├── robocup_ssl_client │ │ ├── robocup_ssl_client.cpp │ │ └── robocup_ssl_client.h │ └── robocup_ssl_server │ │ ├── robocup_ssl_server.cpp │ │ └── robocup_ssl_server.h │ ├── protobuf-files │ ├── pb │ │ └── proto │ │ │ ├── compile.sh │ │ │ ├── game_event.proto │ │ │ ├── grSim_Commands.proto │ │ │ ├── grSim_Packet.proto │ │ │ ├── grSim_Replacement.proto │ │ │ ├── messages_robocup_ssl_detection.proto │ │ │ ├── messages_robocup_ssl_detection_tracked.proto │ │ │ ├── messages_robocup_ssl_geometry.proto │ │ │ ├── messages_robocup_ssl_geometry_legacy.proto │ │ │ ├── messages_robocup_ssl_refbox_log.proto │ │ │ ├── messages_robocup_ssl_wrapper.proto │ │ │ ├── messages_robocup_ssl_wrapper_legacy.proto │ │ │ ├── messages_robocup_ssl_wrapper_tracked.proto │ │ │ ├── rcon.proto │ │ │ ├── referee.proto │ │ │ └── savestate.proto │ ├── protobuf-files.h │ └── protobuf-files.pri │ ├── ssl-client.h │ └── utils │ ├── timer │ └── timer.h │ ├── util │ └── util.h │ └── utils.h ├── resources ├── clientH.png ├── exampleSimulation.png ├── expectedBehavior.png ├── ips.png └── myudpCPP.png ├── scripts └── ubuntu │ ├── protobuf.sh │ └── qt.sh ├── src ├── main.cpp └── src.pro └── ssl-client.pro /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/README.md -------------------------------------------------------------------------------- /include/include.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/include.pri -------------------------------------------------------------------------------- /include/ssl-client/net/grSim_client_example/grSim_client_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/net/grSim_client_example/grSim_client_example.cpp -------------------------------------------------------------------------------- /include/ssl-client/net/grSim_client_example/grSim_client_example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/net/grSim_client_example/grSim_client_example.h -------------------------------------------------------------------------------- /include/ssl-client/net/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/net/net.h -------------------------------------------------------------------------------- /include/ssl-client/net/netraw/netraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/net/netraw/netraw.cpp -------------------------------------------------------------------------------- /include/ssl-client/net/netraw/netraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/net/netraw/netraw.h -------------------------------------------------------------------------------- /include/ssl-client/net/referee_ssl_client/referee_ssl_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/net/referee_ssl_client/referee_ssl_client.cpp -------------------------------------------------------------------------------- /include/ssl-client/net/referee_ssl_client/referee_ssl_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/net/referee_ssl_client/referee_ssl_client.h -------------------------------------------------------------------------------- /include/ssl-client/net/robocup_ssl_client/robocup_ssl_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/net/robocup_ssl_client/robocup_ssl_client.cpp -------------------------------------------------------------------------------- /include/ssl-client/net/robocup_ssl_client/robocup_ssl_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/net/robocup_ssl_client/robocup_ssl_client.h -------------------------------------------------------------------------------- /include/ssl-client/net/robocup_ssl_server/robocup_ssl_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/net/robocup_ssl_server/robocup_ssl_server.cpp -------------------------------------------------------------------------------- /include/ssl-client/net/robocup_ssl_server/robocup_ssl_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/net/robocup_ssl_server/robocup_ssl_server.h -------------------------------------------------------------------------------- /include/ssl-client/protobuf-files/pb/proto/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/protobuf-files/pb/proto/compile.sh -------------------------------------------------------------------------------- /include/ssl-client/protobuf-files/pb/proto/game_event.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/protobuf-files/pb/proto/game_event.proto -------------------------------------------------------------------------------- /include/ssl-client/protobuf-files/pb/proto/grSim_Commands.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/protobuf-files/pb/proto/grSim_Commands.proto -------------------------------------------------------------------------------- /include/ssl-client/protobuf-files/pb/proto/grSim_Packet.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/protobuf-files/pb/proto/grSim_Packet.proto -------------------------------------------------------------------------------- /include/ssl-client/protobuf-files/pb/proto/grSim_Replacement.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/protobuf-files/pb/proto/grSim_Replacement.proto -------------------------------------------------------------------------------- /include/ssl-client/protobuf-files/pb/proto/messages_robocup_ssl_detection.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/protobuf-files/pb/proto/messages_robocup_ssl_detection.proto -------------------------------------------------------------------------------- /include/ssl-client/protobuf-files/pb/proto/messages_robocup_ssl_detection_tracked.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/protobuf-files/pb/proto/messages_robocup_ssl_detection_tracked.proto -------------------------------------------------------------------------------- /include/ssl-client/protobuf-files/pb/proto/messages_robocup_ssl_geometry.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/protobuf-files/pb/proto/messages_robocup_ssl_geometry.proto -------------------------------------------------------------------------------- /include/ssl-client/protobuf-files/pb/proto/messages_robocup_ssl_geometry_legacy.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/protobuf-files/pb/proto/messages_robocup_ssl_geometry_legacy.proto -------------------------------------------------------------------------------- /include/ssl-client/protobuf-files/pb/proto/messages_robocup_ssl_refbox_log.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/protobuf-files/pb/proto/messages_robocup_ssl_refbox_log.proto -------------------------------------------------------------------------------- /include/ssl-client/protobuf-files/pb/proto/messages_robocup_ssl_wrapper.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/protobuf-files/pb/proto/messages_robocup_ssl_wrapper.proto -------------------------------------------------------------------------------- /include/ssl-client/protobuf-files/pb/proto/messages_robocup_ssl_wrapper_legacy.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/protobuf-files/pb/proto/messages_robocup_ssl_wrapper_legacy.proto -------------------------------------------------------------------------------- /include/ssl-client/protobuf-files/pb/proto/messages_robocup_ssl_wrapper_tracked.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/protobuf-files/pb/proto/messages_robocup_ssl_wrapper_tracked.proto -------------------------------------------------------------------------------- /include/ssl-client/protobuf-files/pb/proto/rcon.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/protobuf-files/pb/proto/rcon.proto -------------------------------------------------------------------------------- /include/ssl-client/protobuf-files/pb/proto/referee.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/protobuf-files/pb/proto/referee.proto -------------------------------------------------------------------------------- /include/ssl-client/protobuf-files/pb/proto/savestate.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/protobuf-files/pb/proto/savestate.proto -------------------------------------------------------------------------------- /include/ssl-client/protobuf-files/protobuf-files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/protobuf-files/protobuf-files.h -------------------------------------------------------------------------------- /include/ssl-client/protobuf-files/protobuf-files.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/protobuf-files/protobuf-files.pri -------------------------------------------------------------------------------- /include/ssl-client/ssl-client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/ssl-client.h -------------------------------------------------------------------------------- /include/ssl-client/utils/timer/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/utils/timer/timer.h -------------------------------------------------------------------------------- /include/ssl-client/utils/util/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/utils/util/util.h -------------------------------------------------------------------------------- /include/ssl-client/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/include/ssl-client/utils/utils.h -------------------------------------------------------------------------------- /resources/clientH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/resources/clientH.png -------------------------------------------------------------------------------- /resources/exampleSimulation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/resources/exampleSimulation.png -------------------------------------------------------------------------------- /resources/expectedBehavior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/resources/expectedBehavior.png -------------------------------------------------------------------------------- /resources/ips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/resources/ips.png -------------------------------------------------------------------------------- /resources/myudpCPP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/resources/myudpCPP.png -------------------------------------------------------------------------------- /scripts/ubuntu/protobuf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/scripts/ubuntu/protobuf.sh -------------------------------------------------------------------------------- /scripts/ubuntu/qt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/scripts/ubuntu/qt.sh -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/src/src.pro -------------------------------------------------------------------------------- /ssl-client.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocin/ssl-client/HEAD/ssl-client.pro --------------------------------------------------------------------------------