Codeblocks setup

From The Powder Toy
Revision as of 00:46, 6 October 2012 by Videogamer555 (talk | contribs) (Preparing the project)
Jump to: navigation, search

Author: tian110796

Fixed by macweirdo for Version 47 (Python Console Fixes)

Some parts are from JojoBond.

Environmental variable instuctions by pilojo.

Last modified: 06/07/2012


This is a guide for compiling using Code::Blocks with MinGW. This guide is targeted to Windows users who are intimidated by the large Visual C++ Express download.

Note: This tutorial works only in Windows, but will work in Macintosh with minor changes.

If you have neither MinGW nor Code::Blocks, and don't feel like going through all of this, then you can download this file containing everything you need to compile TPT, including the Code::Blocks IDE, the MinGW compiler, and the source code for TPT v79.2. If you download this, it's still a good idea to add the bin directory containing the MinGW executables to the PATH environment variable as described below (it might still work if you don't, but that's not guaranteed).

If you already have Code::Blocks and/or MinGW and don't want to go through this tutorial, there's a download below (under "Preparing the project") containing just the source (including the necessary libraries) and a project file which you can use.

In any case, it is encouraged to try to do this all yourself (it may look long, but it's really not that bad) rather than relying on these downloads, which may or may not be kept up-to-date.

MinGW Preparation

  • Download and Install MinGW using the default settings (You can also install the C++ compiler if you feel like it, but it's not necessary).
  • Add "C:\MinGW\bin" to the PATH environment variable, without quotes.

(If you don't know how to set environment variables, here is how to do it.)

  • 1. Go to My Computer.
  • 2. System properties/settings.
  • 3. Advanced system settings.
  • 4. Environmental Variables.
  • 5. Second box, scroll down till you see PATH.
  • 6. Click PATH, then click Edit.
  • 7. If there is not a semi-colon at the end of the line, add one and then add "C:\MinGW\bin" without quotes.
  • 8. Press OK
  • 9. Continue tutorial.

Code::Blocks preparation

  • Download and Install Code::Blocks here
  • In the first run, you will be asked what compiler to use. Select "MinGW" or "GNU GCC Compiler".
  • Code::Blocks is now ready!

Preparing the project

  • Note: If you can't be bothered to do all of this yourself, here is a zip file containing a project file and all necessary headers, libraries, and the source for v80.3 of The Powder Toy (this latest version of this does NOT WORK on a fresh install of Codeblocks+Mingw!!!!! Please package it next time along with Mingw and Codeblocks). For this to work, you must have the latest version of MinGW installed (if you downloaded the MinGW from above, you should be fine). If the project file doesn't work for you, try updating your MinGW and/or going through the steps below.
  • Download the latest source and put it in an empty folder. Or, if you want to compile the latest stable version, look here.
  • Download these libraries and extract it directly into the source folder.
  • Open Code::Blocks.
  • Create a new empty project in the folder where your source exists. (sometimes it adds the project name to the directory; if that happens, remove the project name part from the directory)
  • In the Management window you will see the project name listed there. Right-click it, click "Add files recursively...", and choose the folder where all of the files are.
  • Leave all the checkboxes as they are and click "OK".
  • At the very top of the window, next to "Build target:", open the drop-down menu and click "Release". (it probably won't matter because of the next few steps, but it's still a good thing to do)
  • Go to Project -> Properties -> Build targets, and for every build target on the left, find the drop-down menu on the right next to "Type:" and change it from "Console Application" to "GUI Application". (You don't have to, but it's a good idea to do so.)
  • Go to Project -> Build options -> Compiler Settings.
  • Under Compiler Flags, make sure that everything is unchecked.
  • Under Other Options, type in (put it all in one line)
-w -m32 -std=c99 -mincoming-stack-boundary=2 -D_POSIX_C_SOURCE=200112L -DLUACONSOLE -DGRAVFFT
-D_GNU_SOURCE -DWIN32 -DPTW32_STATIC_LIB -O3 -ffast-math -ftree-vectorize -funsafe-math-optimizations
-march=native -mtune=native -DX86 -DX86_SSE2 -msse2
  • Go to the Search Directories tab at the top of the build options window.
  • Under the Compiler tab, click Add, and browse to and add the "includes" folder of the source to the list. (It should be okay to leave it as a relative path, but if you get a bunch of errors about various .h files not being found, try using the full path of the includes folder.)
  • Under the Linker tab, click Add, and add the "lib" folder of the source to the list. (as with the includes folder, you may or may not have to use the full path of the lib folder.)
  • Now go to the Linker Settings tab at the top of the build options window.
  • Under "Other Linker Options", type in (again, have it all in one line)
-s -static -lmingw32 -lregex -lpthreadGC2 -lws2_32 -lSDLmain -lSDL -luser32 -lgdi32 -lwinmm -lfftw3f
-lm -lbz2 -llua5.1 -mwindows
  • Hit OK at the very bottom.

Compiling

  • Press Ctrl+F9 in your keyboard to compile.
  • If compilation fails, try updating your MinGW installation or removing -DGRAVFFT from the compiler options and -lfftw3f from the linker options.
  • If you still can't get it to compile, post in the forums with a pastebin of your error(s).
  • If it compiles continue to the element coding tutorial.