Search found 18 matches

by simplicity
April 7th, 2013, 12:28 am
Forum: Everything
Topic: good books
Replies: 4
Views: 2784

Re: good books

http://www.rastertek.com/tutindex.html

Try this instead of books. It covers a lot of stuff and builds a framework.
by simplicity
April 7th, 2013, 12:00 am
Forum: Everything
Topic: general understanding
Replies: 5
Views: 2647

Re: general understanding

hi im new to programming and i have a quite general question its a matter of general understanding compiling i guess i was writing two versions of Putpixel PutPixel( int x, int y, D3DCOLOR c ) { pSysBuffer[ x + WIDTH * y ] = c; } and PutPixel( int x, int y, int r, int g, int b) { PutPixel( int x, i...
by simplicity
August 1st, 2012, 5:42 pm
Forum: Everything
Topic: Did you ever imagine your tuts would be this popular?
Replies: 16
Views: 5798

Re: Did you ever imagine your tuts would be this popular?

Hi simplicity, He wasn't showing us the score system because it was fun, but a good way to show you how linked lists work. However I didn't do very well with the tutorial LOL. I will be mainly using arrays, until I understand linked lists more ahem :) Asimov I know what he was trying to do as I hav...
by simplicity
August 1st, 2012, 5:04 pm
Forum: Everything
Topic: Did you ever imagine your tuts would be this popular?
Replies: 16
Views: 5798

Re: Did you ever imagine your tuts would be this popular?

Hey Chili you could make your later tutorials a bit more fun. Most of the examples you are using aren't that fun. Like creating a score system isn't what I call the definition of fun. I want lasers.
by simplicity
July 30th, 2012, 9:57 pm
Forum: Everything
Topic: Project: BMOP (Baddest man on the planet)
Replies: 6
Views: 4422

Re: Project: BMOP (Baddest man on the planet)

This sounds a lot like Drawf Fortress.

You should look up Rogue like games. I have book on python that goes into creating a rogue like game with randomly generated levels.
by simplicity
July 30th, 2012, 9:48 pm
Forum: Everything
Topic: when is the next lesson comming out?
Replies: 4
Views: 2104

Re: when is the next lesson comming out?

kacper130320 wrote:cant wait for something new
Chili broke his computer.
by simplicity
July 30th, 2012, 9:39 pm
Forum: Everything
Topic: New project, Travelling salesman problem[need help]
Replies: 15
Views: 8005

Re: New project, Travelling salesman problem[need help]

There is a million pounds award to someone who can solve this problem. Offered by who? : -P I doubt something will be that easy to do, if someone were really going to give out a million for such a thing. Clay Math institute. This is assuming that P=NP. Hey Lux you doing the next AI challenge?
by simplicity
July 30th, 2012, 6:57 pm
Forum: Everything
Topic: New project, Travelling salesman problem[need help]
Replies: 15
Views: 8005

New project, Travelling salesman problem[need help]

There is a million pounds award to someone who can solve this problem. I want to solve it and I think I can do it by using Genetic Programming and studying Ants. I need to do this: 1. Add weights to the random lines. 2. Add a player who can only move using the lines. 3. Make it so the player can't t...
by simplicity
July 16th, 2012, 1:29 am
Forum: Everything
Topic: The differences between Java and C++?
Replies: 7
Views: 2872

Re: My local college language is Java

Java is an interpreted language so it will not be able to match the speed of an optimized native application, and Java does not have the same level of access to hardware resources such as a native application or even a .NET app. I keep on reading Java is easier programming language to learn. But, C...
by simplicity
July 15th, 2012, 2:33 am
Forum: Everything
Topic: Purity [Concept]
Replies: 19
Views: 10874

Re: Purity [Concept]

That would be a good game to write some AI for. Plus it would be good to see your way point code. Wouldn't it be easy to add a suppress fire command. Maybe if you make yourself move faster, but can't shoot. Sort of like a sprint that can dodge bullets. I'm assuming the bullets aren't instant. Also y...