Webhallen


I’m busy with the Blender importer for my game framework...


I’m busy with the Blender importer for my game framework again. Dunno what is wrong really, some triangles are not filled with colors for unknown reason.


Saturday, July 3, 2010 - 1:11 PM0 Comments




Video



Thursday, May 6, 2010 - 12:08 PM0 Comments




Post Ludum Dare 17 entry

Ok, so I did not finish my first LD on time Monday morning. Mainly because lack of gameplay and content, but also the collision detection. Also I didn’t know you could submit versions for other platforms afterwards. No worries though, I’ll know that next time. :)



I fixed the collision yesterday, I just had to work on those algorithms I had in mind at first. So here it is for Windows and Linux.



Run LUDUMDARE17.bat/-.sh respectively.



Short postmortem

I wasted to much time on the game engine, clearly. The concept was initially to walk around the islands (planets if you want). I was sure I could manage to get that working, I had the math right on paper, but I have missed some variables of course and had to give that up later on. Unfortunately the concept was a bit too vague, and I was sure it would pop up more stuff in my head once I was done with the major coding parts. Never got there in time though. ;)



Of course some things went right, otherwise I probably wouldn’t have made this post. I learned how much more efficient I became by just having a TODO on paper instead of a in text file on the computer. Much more satisfying to physically cross something off. My framework needed some minor tweaks but it was working very well during development. Implementing the key and hatch went smooth, and the overall code structure is okay. And most satisfying Monday morning was being able to do the test maps very quickly in GIMP, when I was tired (of coding).



Too bad it didn’t get more game in it though. I’m eager to participate in the next LD, I can barely wait. :)


Thursday, April 29, 2010 - 6:55 PM0 Comments
Building universal Lua 5.1 for Mac OS X Leopard

in in lua-5.1/Makefile and lua-5.1/src/Makefile add macosx_ub to PLATS:

PLATS= aix ansi bsd generic linux macosx macosx_ub mingw posix solaris



in lua-5.1/src/Makefile add macosx_ub build optionmacosx_ub:

$(MAKE) all MYCFLAGS=”-DLUA_USE_MACOSX -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.5 -arch ppc -arch i386” “MYLDFLAGS=-Wl,-syslibroot,/Developer/SDKs/MacOSX10.5.sdk -arch ppc -arch i386 -mmacosx-version-min=10.5”



in lua-5.1

make macosx_ub



I had some troubles linking my projects to lua saying: file is not of required architecture.

Solution via, thanks, http://soledadpenades.com/2008/05/19/lua-universal-binary/


Monday, April 26, 2010 - 7:37 PM0 Comments
Solved it! Incremented my face array with only one step instead...


Solved it! Incremented my face array with only one step instead of three and I was doing this after printed out debug information, thinking everything was alright. Each face consist of three vertices, so I incremented my array per face instead of per vertex. This feels so rewarding! :) Will look into mirror modifier and colors next.


Thursday, April 1, 2010 - 2:37 PM0 Comments