FoonLudum Dare ExplorerLD30 → Flipside

Flipside

By gingerbill

View on Wayback Machine

CategoryRankScoreCount
Coolness2202

Comments

miziziziz 2014-08-24 21:37

ah man, the art looks cool, I wanna play this, but I'm on windows :(

wolfmother 2014-08-24 23:52

Had a crack at compiling it, and have these notes:
- code also depends on GLM and GLEW (win binaries readily available thankfully)
- code uses C++11 features, which VS2010 doesn't support - haven't got 2013 around to try building it on

togie 2014-08-25 00:05

port to windows after you catch up on sleep lol

nonentheless 2014-08-25 06:51

Agree, port would be advised :) for web I suggest

gingerbill 2014-08-25 08:28

@wolfmother I should have said what the dependencies were but I was really tired last night and I had to go to bed. I'm going to trying port it again.

simplesmiler 2014-08-25 12:55

@gingerBill I have compiled it with QtCreator, but the game crashes inside of StateStack::createState when creating game state.

simplesmiler 2014-08-25 13:02

@gignerBill reach me at <denis.karabaza at gmail.com>, we will try something out.

phobos001 2014-08-25 14:00

Wait, did we end up making the same game with the same title? Either way, I can't wait to play it when you guys work out a Windows port. I'd help, but I've never worked with code compilers before. Best of luck! ^^

endurion 2014-08-31 16:39

Sorry, no OS/X.

2014-12-22 04:28

Porting is a hobby of mine. I got a windows port figured out in about half an hour once I got all the dependencies in place.

It might not compile on OSX anymore with the source changes but I tried to be careful not to do anything seriously detrimental to the original source (except where I had to work around a compiler bug). Built with TDM-GCC 4.8.1 MinGW via CMake. Might be possible to build with msvc 2012 or 2013, but I did not try.

Anyway, gdrive folder contains Win32 build, debug build (need gdb to debug properly) and source code with cmake project file, CLion IDE project files, external dependencies, and changes.

Linux builds with gcc should be pretty effortless as well at this point. Just use cmake to generate a Makefile from the modified source.

https://drive.google.com/folderview?id=0B56DTBLvAbE0aFVILTZBVHJMQ28&usp=sharing

2014-12-22 04:39

On that note...now that I have seen how the game is SUPPOSED to work on the youtube video, it seems there is a camera issue (probably from where I changed where the code was using a private _invert function from one of the libs to use a public invert function) as well as the mouse being WAY too sensitive on the windows port.