Well this actually helped me with displaying integers in SFML strings. In order to convert an int (or any other numeric type, e.g., float,double, etc.) to string, you can use: #include <sstream> int i = 5; std::string s; std::stringstream out; out << i; s = out.str(); - Rares Vernica
October 6, 2012
I honestly should be doing these more often… I’ve been actually been asked about my designs & why havent I made them games. I honestly wanted to move & get settled first before I took on a project but on to the design doc( a bit shorter since I havent been doing these too often)… What type […]
October 1, 2012
To make sure I stay creative ( & at lease start posting on this blog more than once a month) I’m going to start the 15 minute game design challenge. it’s basically going to be a test to see what can i design & see if i can increase my creative talent. This is basically […]
September 29, 2012
Well, my accomplishment of the day: finally found something that works for me. tho this would mean using SFML instead of SDL but then again i’ve been working on basically a set of functions to make SDL look like SFML. .. Rumor has it that both will be updating to 2.0 this year ( which […]
June 25, 2012
How to Play Commercial DVD formats on #Ubuntu http://ow.ly/bOWAN
June 25, 2012
This is my thoughts on the game design class I took this year: http://youtu.be/yPRcyQVeW7o
June 7, 2012
I found this article. I just wanted to share it with everyone so they knew that there has been some changes. sadly oracle doesnt maintain a .Deb version of it so we have to do it the old fashion way. the tutorial is here. NOTE THERE HAVE BEEN CHANGES TO JAVA SINCE THE CREATION OF […]
October 12, 2012
0