Skip to content

Latest commit

 

History

History
68 lines (56 loc) · 1.83 KB

README.md

File metadata and controls

68 lines (56 loc) · 1.83 KB

Pokedex

Software Engineering team project for CEN4010

Team Calendar

Introduction

######Core mechanics: Search for Pokemon for name or types JSON for serialization

######Mini Games:

  • Who's that Pokemon? & Pokemon quiz
  • Pokemon snap 2D

######Ideas:

  • Give out Pokemon cards (achievements)
  • Facebook integration

######Nice to have:

  • Augmented reality
  • Mobile (Android)

Dependencies

Workflow Instructions

  1. Fork this repo
  2. Clone: git clone link-to-your-fork
  3. Create branch: git checkout -b my-feature
  4. Make some change
  5. Commit it git commit
  6. Do a pull request

Build Instructions

Building requires Cmake >= 2.8 in order to generate the build files

*nix instructions
cd thirdparty/gwen
mkdir -p build && cd build
cmake ..
make
make install
cd ../../../

mkdir -p build && cd build
cmake ..
make
make install

A pokedex executable will be generated in the root

Windows instructions
  1. Download the cmake gui tool
  2. Set the source path to point to the Pokedex/thirdparty/gwen
  3. Set build path to Pokedex/thirdparty/gwen/build
  4. Generate project file and build in release configuration
  5. Go back to the cmake gui tool
  6. Set the source path to the Pokedex source path
  7. Set the build path to point to Pokedex/_build
  8. configure
  9. You'll need to edit the SDL_INCLUDE_LIBRARY and similar paths to point to their respective folders
  10. generate
  11. the generated visual studio (or other ide files) project is in _build