Robot Soccer v1.5a 机器人足球

来源:百度知道 编辑:UC知道 时间:2024/05/27 06:48:57
这是机器人足球的主程序,有谁可以告诉我怎么玩!如何将自己写的代码用在里面!还有那个英文的帮助,谁有中文的?
没有人懂吗?

现在最流行的有3v3真实组

#ifndef Strategy_H
#define Strategy_H

// The following ifdef block is the standard way of creating macros which make exporting
// from a DLL simpler. All files within this DLL are compiled with the STRATEGY_EXPORTS
// symbol defined on the command line. this symbol should not be defined on any project
// that uses this DLL. This way any other project whose source files include this file see
// STRATEGY_API functions as being imported from a DLL, wheras this DLL sees symbols
// defined with this macro as being exported.
#ifdef STRATEGY_EXPORTS
#define STRATEGY_API __declspec(dllexport)
#else
#define STRATEGY_API __declspec(dllimport)
#endif

#include <string.h>
#include <stdio.h>

const long PLAYERS_PER_SIDE = 5;

// gameState
const long FREE_BALL = 1;
const long PLACE_KICK = 2;
const long PENALTY_KICK = 3;