Search found 10 matches

by ElmerCoder
April 12th, 2013, 7:10 pm
Forum: Everything
Topic: I'm going to start Objective-C programming soon
Replies: 6
Views: 3484

Re: I'm going to start Objective-C programming soon

Btw i haven't found out if you can use Objective-C to program Android apps.
I know that c and c++ works but they say it's a bit of a problem there. Do you know anything about it?
by ElmerCoder
April 12th, 2013, 6:47 pm
Forum: Everything
Topic: I'm going to start Objective-C programming soon
Replies: 6
Views: 3484

Re: I'm going to start Objective-C programming soon

Wow that looks awesome, unfortunately i wont be able to make such a nice game for them if I'm able to :P
Just got my books today and started reading the C book :D, I'm on page 30 something.
Now I'm going to continue reading, thanks!
by ElmerCoder
April 11th, 2013, 4:28 pm
Forum: Everything
Topic: I'm going to start Objective-C programming soon
Replies: 6
Views: 3484

Re: I'm going to start Objective-C programming soon

Thanks a lot for the answer, it was a great answer, I'll probably start reading the c book and then go on to c++
When I've read both I'm going to start learning Objective-C
I will probably make Android games most :).
I'll tell planetchili when I've uploaded my first app!
Thanks again.
by ElmerCoder
April 11th, 2013, 5:48 am
Forum: Everything
Topic: I'm going to start Objective-C programming soon
Replies: 6
Views: 3484

I'm going to start Objective-C programming soon

Hi, I've been following all the 22 beginner videos and I've ordered 2 books. One about c programming and one about c++. But I want to start to learn Objective-C as soon as possible also. Which one should i start reading ? c or c++. On a site they said it's easier to go from c++ to objective-c. I don...
by ElmerCoder
April 7th, 2013, 5:41 pm
Forum: Everything
Topic: Cant open file....
Replies: 1
Views: 1489

Cant open file....

My program did work. I had it opened. Just went eating food. But when i came back and tried running it, it said 1>LINK : fatal error LNK1104: cannot open file 'C:\Users\Elmer1\Desktop\Font\Release\Chili DirectX Framework.exe' I saw i had it in the folder, and then i deleted the Realese folder to try...
by ElmerCoder
April 7th, 2013, 11:24 am
Forum: Everything
Topic: Lesson 20 Please help me
Replies: 3
Views: 2294

Re: Lesson 20 Please help me

Yea ty, it was just the Chili DirectX Framework being a dick :)
by ElmerCoder
April 2nd, 2013, 5:54 pm
Forum: Everything
Topic: Lesson 20 Please help me
Replies: 3
Views: 2294

Lesson 20 Please help me

Hi i wrote this in the Bitmap.h struct Pixel24 { unsigned char blue; unsigned char green; unsigned char red; }; and this is in the Bitmap.cpp Pixel24 pixel; but the Pixel24 in the last one is undefined but not in the VIDEO !!! Im getting crazy wow.... I really want to keep watching the video and sta...
by ElmerCoder
March 8th, 2013, 1:21 pm
Forum: Everything
Topic: Lesson 13 UpSpeed Pixel
Replies: 1
Views: 1591

Lesson 13 UpSpeed Pixel

Hi, i've had problems with the making the pixels faster, and it worked without the upspeed but this is what it made me do : In D3DGraphics.h class D3DGraphics: Private : pBackBuffer; D3DLOCKED_RECT backRect; to add all those 3. and inside the Graphics.cpp it made me do #include "D3DGraphics.h" D3DGr...
by ElmerCoder
March 7th, 2013, 5:44 pm
Forum: Everything
Topic: Lesson 12 Assignment ( I NEED HELP )
Replies: 1
Views: 1719

Lesson 12 Assignment ( I NEED HELP )

Soo.. I did'nt understand that much in the lesson 12 which is bad :(. Would never be able to create those stuff by myself later on Example : XOState ( int ix,int iy, ) Or what it was and do all those piece of Shit. Well, i do have problems with the hard AI to get it smarter... Can't figure out where...
by ElmerCoder
March 5th, 2013, 8:08 pm
Forum: Everything
Topic: Lesson 9 Assignment (HELP FOR YOU WITH SQUARE)
Replies: 0
Views: 3290

Lesson 9 Assignment (HELP FOR YOU WITH SQUARE)

Hi :) , I've made the square being able to be moved and Minimized. (Have not fixed going back to normal yet ) This is how it looks: int y = boxY; while( y < boxY + boxWidth ) { int x = boxX; while( x < boxX + boxWidth ) { gfx.PutPixel(x,y,255,255,255); x = x + 1; } y = y + 1; } That is the whole Squ...