Add MAJOR.MINOR.PATCH versioning to the binary.
This also modified the output format for the gamestatefile so AI's will have to be updated
This commit is contained in:
parent
ec7ed601a3
commit
fec9c8dad7
6 changed files with 43 additions and 8 deletions
|
@ -1,5 +1,11 @@
|
|||
cmake_minimum_required( VERSION 2.8.7 )
|
||||
|
||||
# Set version information
|
||||
set( TTRTS_VERSION_MAJOR 0 )
|
||||
set( TTRTS_VERSION_MINOR 0 )
|
||||
set( TTRTS_VERSION_PATCH 1 )
|
||||
set( TTRTS_VERSION_STRING "${TTRTS_VERSION_MAJOR}.${TTRTS_VERSION_MINOR}.${TTRTS_VERSION_PATCH}")
|
||||
|
||||
# Use c++1y (14)
|
||||
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} --std=c++1y" )
|
||||
|
||||
|
@ -9,10 +15,20 @@ set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wno-reorder" )
|
|||
# Turn off reorder warnings as they're kind of irrelevant
|
||||
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-reorder" )
|
||||
|
||||
# This shouldn't be needed, but it looks like IDE's like clion can forget to set -g for Debug
|
||||
if( CMAKE_BUILD_TYPE MATCHES "Debug" )
|
||||
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g" )
|
||||
endif()
|
||||
|
||||
# Add definitions for the version number
|
||||
add_definitions(
|
||||
-DTTRTS_VERSION_MAJOR=${TTRTS_VERSION_MAJOR}
|
||||
-DTTRTS_VERSION_MINOR=${TTRTS_VERSION_MINOR}
|
||||
-DTTRTS_VERSION_PATCH=${TTRTS_VERSION_PATCH}
|
||||
-DTTRTS_VERSION_STRING=\"${DTTRTS_VERSION_STRING}\"
|
||||
)
|
||||
|
||||
|
||||
# Subprojects
|
||||
add_subdirectory( ttrts )
|
||||
add_subdirectory( game )
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "gametypes.h"
|
||||
#include "order.h"
|
||||
|
||||
#define GAME_HEADER_FORMATTER "===== %s =====\nSIZE:[%u,%u]\nTURN:%u"
|
||||
#define GAME_HEADER_FORMATTER "NAME:%s\nSIZE:[%u,%u]\nTURN:%u"
|
||||
#define GAME_HEADER_DELIMITER "~~~~\n"
|
||||
|
||||
// Type for order and unit pairs
|
||||
|
|
|
@ -8,8 +8,8 @@ include_directories(
|
|||
../game
|
||||
)
|
||||
|
||||
# Add the sources
|
||||
set( SOURCES
|
||||
# Add the sources
|
||||
set( SOURCES
|
||||
main.cpp
|
||||
)
|
||||
|
||||
|
@ -22,8 +22,8 @@ target_link_libraries( ${PROJECT_NAME} game )
|
|||
install( TARGETS ${PROJECT_NAME} DESTINATION bin )
|
||||
|
||||
# Run the gen_usage script to generate our usage header
|
||||
add_custom_target(
|
||||
add_custom_target(
|
||||
gen_ttrts_usage
|
||||
cd ${CMAKE_CURRENT_SOURCE_DIR} && ${CMAKE_SOURCE_DIR}/scripts/gen_usage.sh "${CMAKE_CURRENT_BINARY_DIR}/usage.h"
|
||||
)
|
||||
add_dependencies(${PROJECT_NAME} gen_ttrts_usage)
|
||||
add_dependencies(${PROJECT_NAME} gen_ttrts_usage)
|
|
@ -29,18 +29,20 @@
|
|||
## OPTIONS
|
||||
MAPFILE - File to read in the initial game state from
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
--------------------------------------------------------------
|
||||
|
||||
## GAMESTATE FILE FORMAT
|
||||
### Name
|
||||
Turn_{TURN_NUMBER}.txt
|
||||
### Contents
|
||||
===== {GAME_NAME} =====
|
||||
===== ttrts v{MAJOR}.{MINOR}.{PATCH} =====
|
||||
NAME:{GAMENAME}
|
||||
SIZE:[{X},{Y}]
|
||||
TURN:{TURN_NUMBER}
|
||||
... {any extra properties could go here}
|
||||
~~~~
|
||||
UNIT:{ID} tm:{TEAM} vs:{VIS} dr:{DIR(NESW)} ps:[{X},{Y}]
|
||||
...
|
||||
... {continue for all units}
|
||||
|
||||
## ORDER FILE FORMAT
|
||||
### Name
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
#include <stdio.h>
|
||||
|
||||
#include "game.h"
|
||||
#include "version.h"
|
||||
|
||||
static const char* sk_usage =
|
||||
#include "usage.h"
|
||||
|
@ -40,6 +41,13 @@ bool OutputGameStateFile(CTTRTSGame &game, std::string &gameDir)
|
|||
|
||||
// Output the turn description
|
||||
std::string turnDescriptor = game.GetStateAsString();
|
||||
|
||||
// Append the version number
|
||||
turnDescriptor = std::string("==== ttrts v")
|
||||
+ sk_ttrts_version_string
|
||||
+ std::string(" ====")
|
||||
+ turnDescriptor;
|
||||
|
||||
turnFile<<turnDescriptor;
|
||||
turnFile.close();
|
||||
|
||||
|
|
9
source/ttrts/version.h
Normal file
9
source/ttrts/version.h
Normal file
|
@ -0,0 +1,9 @@
|
|||
#ifndef _TTRTS_VERSION_H_
|
||||
#define _TTRTS_VERSION_H_
|
||||
|
||||
static const int sk_ttrts_version_major = TTRTS_VERSION_MAJOR;
|
||||
static const int sk_ttrts_version_minor = TTRTS_VERSION_MINOR;
|
||||
static const int sk_ttrts_version_patch = TTRTS_VERSION_PATCH;
|
||||
static const char* sk_ttrts_version_string = TTRTS_VERSION_STRING;
|
||||
|
||||
#endif //_TTRTS_VERSION_H_
|
Loading…
Add table
Reference in a new issue