hunterize / SoACode-Public

Public repository for all the game code for Seed of Andromeda.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Seed of Andromeda

This repository contains the source code for Seed of Andromeda.

Getting Started

This guide will walk you through setting up as a developer for Seed of Andromeda. There is a basic requirement of having several packages installed prior to being able to develop. In addition, we support all three major operating systems:

Installing and building:

Contributing

Windows

Required pre-setup

  1. Compiler: Microsoft Visual Studio 2013

Installation

  1. Open a dos window.
Windows + R
cmd
  1. Create a folder to hold the repositories
cd c:\
mkdir -p repos
  1. Clone the Seed of Andromeda repositories
c:\
cd c:\repos
git clone --recurse-submodules git@github.com:RegrowthStudios/SoACode-Public.git soa

Building

  1. Pull latest code
cd c:\repos\soa
git checkout develop
git pull --recurse-submodules
  1. Run build script
build.bat

Mac

Required pre-setup

  1. Compiler: Xcode

Installation

  1. Open a terminal.
cmd + space
Terminal
  1. Create a folder to hold the repositories
mkdir ~/repos
  1. Clone the Seed of Andromeda repositories
cd ~/repos
git clone --recurse-submodules git@github.com:RegrowthStudios/SoACode-Public.git soa

Building

  1. Pull latest code
cd ~/repos/soa
git checkout develop
git pull --recurse-submodules
  1. Run build script
./build.sh

Linux

Required pre-setup

  1. Compiler: gcc or clang
    • Install per your preferred operating system package control...
    • Portage:
    sudo emerge -DuNqa gcc   # for gcc
    sudo emerge -DuNqa clang  # for clang
    
    • PacMan:
    sudo pacman -S gcc
    sudo pacman -S clang
    
    • Apt:
    sudo apt-get install gcc
    sudo apt-get install clang
    
    • Yum:
    sudo yum install gcc
    sudo yum install clang
    
  • Software Version Control: Git
    • Portage:
    sudo emerge -DuNqa git
    
    • PacMan:
    sudo pacman -S git
    
    • Apt:
    sudo apt-get install git
    
    • Yum:
    sudo yum install git
    

Installation

  1. Open a terminal.
  2. Create a folder to hold the repositories
mkdir ~/repos
  1. Clone the Seed of Andromeda repositories
cd ~/repos
git clone --recurse-submodules git@github.com:RegrowthStudios/SoACode-Public.git soa

Building

  1. Pull latest code
cd ~/repos/soa
git checkout develop
git pull --recurse-submodules
  1. Run build script
./build.sh

About

Public repository for all the game code for Seed of Andromeda.

License:MIT License


Languages

Language:C++ 94.5%Language:Python 3.7%Language:Objective-C 0.8%Language:C 0.4%Language:C# 0.4%Language:CMake 0.1%Language:Batchfile 0.1%Language:Shell 0.0%