Search found 160 matches

by lotios611
Tue Dec 22, 2009 10:06 am
Forum: Game Development
Topic: Books For Development
Replies: 13
Views: 1908

Re: Books For Development

The only book I've read was about Windows Game programming. It helped me wrap my head around the Win32 API. It steps you through making a game engine, so I guess you could follow the book but replace Win32 with whatever library you use. At the end of every chapter, you make a game to show of what th...
by lotios611
Fri Dec 18, 2009 2:30 pm
Forum: Programming Discussion
Topic: Language (script) enquiry
Replies: 12
Views: 777

Re: Language (script) enquiry

I started with Lua. There's a game I play, called Roblox, were people can build things and script them with a version of Lua called RobloxLua (or something.) I liked Roblox because I got to build things and then see them work.
by lotios611
Sat Dec 12, 2009 6:27 pm
Forum: Programming Discussion
Topic: [SOLVED] SFML Help
Replies: 19
Views: 2312

Re: [SOLVED] SFML Help

I had switched to Visual 2010, but I'm switching back. 2010 is ugly.
by lotios611
Sat Dec 12, 2009 3:32 pm
Forum: Programming Discussion
Topic: [SOLVED] SFML Help
Replies: 19
Views: 2312

Re: [SOLVED] SFML Help

I solved it by going back to VC++ 2008. Thanks for all of the help.
by lotios611
Thu Dec 10, 2009 5:15 pm
Forum: Programming Discussion
Topic: [SOLVED] SFML Help
Replies: 19
Views: 2312

Re: SFML Help

I tried changing sf::Window to sf::RenderWindow, still doesn't work.
by lotios611
Mon Dec 07, 2009 5:19 am
Forum: Programming Discussion
Topic: Best Html Book... Then php & mysql
Replies: 6
Views: 1322

Re: Best Html Book... Then php & mysql

I've never read any books, but I learned from http://www.w3schools.com/html/default.asp.
by lotios611
Sun Dec 06, 2009 5:07 pm
Forum: Programming Discussion
Topic: Best Html Book... Then php & mysql
Replies: 6
Views: 1322

Re: Best Html Book... Then php & mysql

I have one piece of advise, don't do anything that you would hate to get hacked, because it is so easy to do things like that. I'm not saying I'm a 1773 hak0r, but I do have some experience.
by lotios611
Sun Dec 06, 2009 7:22 am
Forum: Programming Discussion
Topic: [SOLVED] SFML Help
Replies: 19
Views: 2312

Re: SFML Help

Either way, the default is 32.
by lotios611
Sat Dec 05, 2009 8:25 am
Forum: Programming Discussion
Topic: Python Dictionary
Replies: 4
Views: 674

Re: Python Dictionary

Scoody wrote:

Code: Select all

if answer.lower() in ['a','a)']:
Thanks for the tip, I'll add that.
by lotios611
Sat Dec 05, 2009 8:23 am
Forum: Programming Discussion
Topic: Python Dictionary
Replies: 4
Views: 674

Re: Python Dictionary

Big Grizzle wrote:I don't have the json Python library so can't run the code.
I used json because I wanted it to be easy to directly edit the text file. But if you have another solution, please tell me.
by lotios611
Fri Dec 04, 2009 6:08 pm
Forum: Programming Discussion
Topic: Python Dictionary
Replies: 4
Views: 674

Python Dictionary

I've been coding a dictionary using Python. Any one have any suggestions? Here's the code: import json dictionary = {} f = open("Dictionary.txt", "w") if f.readline() == "" : f.write("{}") f.close(); exitLoop = False while exitLoop == False : dictionary = json...
by lotios611
Fri Dec 04, 2009 3:01 pm
Forum: Programming Discussion
Topic: [SOLVED] SFML Help
Replies: 19
Views: 2312

Re: SFML Help

It still doesn't work.
by lotios611
Fri Dec 04, 2009 2:35 pm
Forum: Programming Discussion
Topic: [SOLVED] SFML Help
Replies: 19
Views: 2312

Re: SFML Help

Debugger says: Unhandled exception at 0x7c809e8a in Learning SFML.exe: 0xC0000005: Access violation reading location 0x0073746e. I don't have a gamepad or USB joystick plugged in. I'm using SFML V 1.5. The input isn't what's wrong, the program breaks at the part where it says sf::Window App(sf::Vide...
by lotios611
Fri Dec 04, 2009 1:53 pm
Forum: Programming Discussion
Topic: [SOLVED] SFML Help
Replies: 19
Views: 2312

Re: SFML Help

Not mixing debug and release versions. What's really annoying is that I can get the System to work, just not Window.
by lotios611
Thu Dec 03, 2009 6:21 pm
Forum: Programming Discussion
Topic: [SOLVED] SFML Help
Replies: 19
Views: 2312

Re: SFML Help

I did that, with the debug versions.