Search found 17 matches
- Tue Dec 07, 2010 9:31 pm
- Forum: Current Events and Science/Technology
- Topic: North Korea going to war?
- Replies: 9
- Views: 3108
Re: North Korea going to war?
So, here is my story: I came to California when I was 7 in January 13, 2001. Now, I was born in South Korea, so I am a Korean citizen as of now. I am only a permanent resident of these United States of America. I am turning 17 next month, in Korea that would mean I would turn 18 due to their weird ...
- Tue Dec 07, 2010 8:20 am
- Forum: Current Events and Science/Technology
- Topic: North Korea going to war?
- Replies: 9
- Views: 3108
Re: North Korea going to war?
I have mixed opinions about what he did. In some ways, I think he should be congratulated. There's too strong a tendency to lock information away or keep it in the hands of a few, trusting them with information that could have influence over the fate of many, when there a plethora of solutions avai...
- Mon Dec 06, 2010 7:17 pm
- Forum: Current Events and Science/Technology
- Topic: North Korea going to war?
- Replies: 9
- Views: 3108
Re: North Korea going to war?
North Korea is just jealous. And angry of being the only country in the world that's less advanced than its southern neighbour. :) Yeah that's definitely true. Although North Korea boasts a superior military power. (lol I checked on Wikipedia =P says they're the 4th most powerful military power) So...
- Mon Dec 06, 2010 4:51 pm
- Forum: Current Events and Science/Technology
- Topic: North Korea going to war?
- Replies: 9
- Views: 3108
Re: North Korea going to war?
I share your fears; I just hope that there is nothing Julian Assange is in possession off that could make matters worse! It did not help with the fact that one of the leaks indicated that China would rather see NK being governed by the South as this has without doubt just made NK more paranoid and d...
- Sun Dec 05, 2010 8:02 pm
- Forum: General/Off-Topic
- Topic: Post your desk!
- Replies: 28
- Views: 4550
Re: Post your desk!
houston
- Sun Dec 05, 2010 4:47 pm
- Forum: Art, Music, and Design
- Topic: Question about this art style
- Replies: 7
- Views: 2906
Re: Question about this art style
I don't know if anyone has played it, but rollercoaster tycoon 2 has an awesome art style. It's isometric but it looks like a 3d model that was like hand drawn....I want to know how they did it.. I believe some of the guy's that did this can be found over at http://www.pixeljoint.com/ , It's a grea...
- Fri Dec 03, 2010 6:22 am
- Forum: Programming Discussion
- Topic: polygon coords "x1,y1,x2,y2,..." suggestions [RESOLVED]
- Replies: 3
- Views: 650
Re: polygon coords "x1,y1,x2,y2,..." suggestions
So are you talking about testing the mouse position against those clickable areas? Or drawing the shapes to the screen? For drawing it depends on your API, for example, some will have built in methods for drawing those shapes. I knew I'd worded that badly lol.. Yes testing mouse position within the...
- Fri Dec 03, 2010 5:49 am
- Forum: Programming Discussion
- Topic: polygon coords "x1,y1,x2,y2,..." suggestions [RESOLVED]
- Replies: 3
- Views: 650
polygon coords "x1,y1,x2,y2,..." suggestions [RESOLVED]
hi; I want to have an image on the screen and have relative regions within the image that are clickable hot-spots, with the following region types: circle coords = "x,y,r" rect coords = "x1,y1, x2,y2" polygon coords = "x1,y1, ... " how would I work out the polygon regi...
- Thu Dec 02, 2010 3:53 pm
- Forum: Programming Discussion
- Topic: Slowly losing motivation...
- Replies: 7
- Views: 1199
Re: Slowly losing motivation...
What is the reason for losing your motivation? Have you simply become overwhelmed with the amount of work that is ahead of you? because this happens a lot to just about everybody, if so you need to stop thinking ahead and just do the task at hand, better achieved by breaking your projects up into ma...
- Thu Dec 02, 2010 1:52 pm
- Forum: Programming Discussion
- Topic: OpenGL and Vsync
- Replies: 31
- Views: 3858
Re: OpenGL and Vsync
Hi; you do realize that using VSync will make your program run at different speeds on different monitors! If somebody is using say a monitor that can only handle 800x600 @ 60Hz the program will seem slower than yours if yours runs at 85Hz on 800x600.. You should just setup timing for display renderi...
- Wed Dec 01, 2010 6:28 pm
- Forum: General/Off-Topic
- Topic: mac or pc
- Replies: 33
- Views: 5477
Re: mac or pc
Been a Linux user a very long time.. I use an iMac the big one i7 running parallels with Ubuntu and windows 7, so I guess I use em all at the same time.
- Wed Dec 01, 2010 6:15 pm
- Forum: Programming Discussion
- Topic: the power of assembly
- Replies: 15
- Views: 2792
Re: the power of assembly
C was not designed to "replace" assembly, and it could not possibly ever do that. As I said before, there are processor-specific opcodes and registers can provide extremely useful functionality that are literally inaccessible due to the platform-independent nature of higher level language...
- Wed Dec 01, 2010 5:45 pm
- Forum: Programming Discussion
- Topic: Slowly losing motivation...
- Replies: 7
- Views: 1199
Re: Slowly losing motivation...
i'm kind of ok at game programming but recently i've just not been doing it because i've lost my motivation. I have to many problems with my current project that i put it on hold. Is there anything thats kind of easy to make but will help me learn? hi; what I do when I lose my motivation is go writ...
- Tue Nov 30, 2010 8:22 pm
- Forum: Programming Discussion
- Topic: the power of assembly
- Replies: 15
- Views: 2792
Re: the power of assembly
:dreamcast: so what im getting from here is that assembly by now is mainly good for allowing your engine to access registers of hardware devices. basically in theory if you can do this successsfully, you could completely control your console? please tell me if i am accurate or not, as i am still tr...
- Mon Nov 29, 2010 5:21 am
- Forum: Programming Discussion
- Topic: the power of assembly
- Replies: 15
- Views: 2792
Re: the power of assembly
Today it's not really a good idea to use assembly for a few reasons, portability for one but there are other reasons.. C/C++ compilers today are very well designed and a lot better then those of say just 10 years ago when using inline asm was still used quite a bit, but today the optimization of the...