Ricket
|
Registered User
|
I'm a student at North Carolina State University. I enjoy programming, and hope to work for a game development studio one day. Game development and web 2.0 are my specialties.
|
|
Oct 8 |
comment |
How to convert OpenGL code to JOGL? This is assuming arg0 is a type GLAutoDrawable (or maybe GLDrawable?). Furthermore, you would actually need GL2 gl = arg0.getGL().getGL2(); |
|
Oct 8 |
comment |
How to convert OpenGL code to JOGL? Note that gl is generally of type GL2 now, gotten with drawable.getGL().getGL2(). Similarly, you would instead say GL2.GL_WHATEVER as of recent JOGL versions. |
|
Sep 30 |
comment |
Pros and Cons of Gaming Frameworks @Dykam are you sure c++ is possible? I would definitely debate it, and I can't find anything on Google to suggest it is possible... |
|
Sep 30 |
comment |
Pros and Cons of Gaming Frameworks @darthcoder well, yes and no... it's MUCH simpler than DirectX ever was, though maybe only a step up from managed DirectX (I never used it); and of course, the xbox 360 support is a highlight. |
|
Sep 29 |
answered | 3D model format for games |
|
Sep 27 |
answered | Pros and Cons of Gaming Frameworks |
|
Sep 27 |
answered | Pros and Cons of Gaming Frameworks |
|
Sep 27 |
answered | OpenGL - moving camera with mouse |
|
Sep 27 |
comment |
const char* to LPTSTR I'm pretty sure you can actually just do foo(L"bar") - try it. |
|
Sep 8 |
comment |
What’s the most cross-platform friendly coding language? Why is Java out of the question? I think it would be a good candidate, using JOGL. If you think it's slow, you are mistaking the Java of years ago; Java today is near native speed thanks to HotSpot VM technology. |
|
Sep 8 |
comment |
What is good language for web-based games? According to adobe.com/products/player_census/…, Shockwave is installed on 57% of all internet-enabled PCs. That is not a good percentage at all, and it's only decreasing. Stay away from it. |
|
Sep 7 |
comment |
Why is UDP + a software reliable ordering system faster than TCP? Can you elaborate on the exception that was thrown when you used TCP? I would definitely blame your code and not the TCP layer for that, as it sounds a little ridiculous. Thanks for pointing out the Sliding Window Protocol though, I hadn't heard of that and it's an interesting algorithm. |
|
Sep 3 |
comment |
what is the best approach for to use openGL in the web? JOGL is very approachable if you already know C++. I don't think you would have any problem using JOGL. |
|
Aug 31 |
comment |
draw using mouse drag event in JOGL. Please surround all of the code in a code block, and not just pieces of it... |
|
Aug 23 |
awarded | ● Good Answer |
|
Aug 20 |
comment |
Start with a scene graph engine or with opengl direct? or Irrlicht... |
|
Aug 20 |
comment |
Start with a scene graph engine or with opengl direct? though I am opposed to the use of Singletons that exist throughout Ogre, as well as all the config files and plugins required to do anything. :-\ But I highly agree with starting with plain OpenGL. |
|
Aug 20 |
comment |
How to keep track of OpenGL state across function calls? Well thanks for the edit but again, I'm in complete control of OpenGL. Your answer would be great if I was using, for example, a OpenGL library and calling functions which modify OpenGL state in ways unknown to me. But I can know when I enable or disable lighting, because I did it. It's like the difference between compile time and run time; the only reason that conditionals and booleans would be necessary is if the code was organized poorly, to leave OpenGL in a disorderly state. Your snippet is more of a hack, bad code added on top of bad code. I don't mean any insult. It's just bad practice. |
|
Aug 20 |
comment |
Is Programming always interesting? @Robert Harvey, yes, I've seen but barely remember them. @Gerard I didn't mean high like drugs, I mean high spirits... Trying to find an elusive bug can be the most frustrating thing in the world, but when you finally find it, it can be the most awesome feeling of accomplishment. |
|
Aug 12 |
revised |
3D Game Development tips (especially game architecture) added 1 characters in body |
|
Aug 12 |
comment |
Processing English Statements X: Was bumped should say X: bumped |
|
Aug 12 |
comment |
Is there ever a time where using a database 1:1 relationship makes sense? Yes I wish the OP could mark this as a second accepted answer. My first thought, when reading this question, was "row locks". |
|
Aug 12 |
comment |
Setting a default CPU Frequency in Ubuntu? (blog.stackoverflow.com/2009/07/…) |
|
Aug 12 |
comment |
Setting a default CPU Frequency in Ubuntu? This is a question for superuser.com |
|
Aug 12 |
comment |
Is Programming always interesting? I am deeply confused by all 3 of your comments. |
|
Aug 12 |
comment |
I need to sleep for long periods (days) in Java I would follow Aaron Digulla's advice if I were you. It looks to me like the classes and functionality in java.util.concurrent are made for thread scheduling, not far-in-the-distant-future task scheduling, and it would probably be extremely non-optimal. Scheduling in that sense means figuring out how several tasks will take turns to run on one CPU/core (in chunks of milliseconds), not scheduling a task several days from now. |
|
Aug 12 |
comment |
Is Programming always interesting? bah. it shouldn't have been closed, I think it would have been neat to get some good opinions, The idiots who wrote "yes", "no" can go jump off a bridge but I really don't think there's room for argument, I was just expecting a civil discussion of each person's point of view... at least, that's what I gave... |
|
Aug 12 |
answered | Is Programming always interesting? |
|
Aug 12 |
comment |
How to keep track of OpenGL state across function calls? glGet should probably be reserved for times when I need to get the state in order to make a decision, and when the state can't be known; obviously I'm in complete control of OpenGL, so I can know in advance what things are enabled or disabled (because I was the one to enable or disable them), so it really just comes down to organization of my enable/disable calls... Which is what this question is about. |
|
Aug 12 |
comment |
How to keep track of OpenGL state across function calls? Thanks Troubadour, I was about to ask that. I haven't seen any experiments but I would guess that calling glGet and then calling the function would be worse than just calling the function regardless of the prior state. I would think it'd be a pretty big deal, because glGet involves at least grabbing stuff from the GPU memory (GDDR?) and bringing it to RAM. |
|
Aug 11 |
comment |
How to layout the code of a simple game? You are right in exploring how to structure a game from the beginning to minimize the need to completely change everything halfway through. And that's why I asked the same question. It's good to have a general idea. I find that it helps if I sit down and write requirements - what are all the things I want my game to do. Then draw some real simple UML diagrams and make sure that they can accomplish those requirements. That's sort of the process that the business world uses, and I think it's very clean for making a game too; plus, it forces you to have a clear idea of your game from the start. |
|
Aug 11 |
comment |
How to layout the code of a simple game? Well if you get to the opint where your player is the only object that handles input and you have to make him die, then you refactor; highlight that input code, cut, paste it into a new class with calls to the new class in your player. Then move it one level up; put the input stuff into whatever class manages the player, and have it manipulate the player like a puppet using public methods rather than direct manipulation of the player variables. Keep moving it around like this, one step/layer at a time. That's what refactoring is all about. |
|
Aug 11 |
answered | How to layout the code of a simple game? |
|
Aug 11 |
comment |
Using Linux Virtual Server for load balancing of zones in MMO game Well sorry, I guess I missed the point then... I can't find much info about "level 7 balancing" on Google, and I don't fully understand how applications are written to take advantage of KTCPVS or Linux Virtual Server. I guess I'd have to read more into it. Sorry I couldn't help! |
|
Aug 10 |
answered | Using Linux Virtual Server for load balancing of zones in MMO game |
|
Aug 8 |
comment |
How to keep track of OpenGL state across function calls? .ms3d file loader with bounding box computation. That's probably about it. What I can't do with a scene graph library, at least easily, is my special heightmap (with planned dynamic loading) and my custom GUI features. So yeah it's a tradeoff, but it's easier for me to write the things a scene graph library can do and then do other things that it can't, rather than use one and try to figure out workarounds and hacks just to be able to draw 2d shapes on the screen or something. |
|
Aug 7 |
comment |
In english, what really is model-view-controller? In English we capitalize the first letter of sentences and proper nouns. We also end all sentences with periods or other punctuation. |
|
Aug 7 |
comment |
OpenGL or DirectX? I wouldn't call these exact duplicates, but read the responses to these questions (if you haven't already): stackoverflow.com/questions/504754/… , stackoverflow.com/questions/1141135/… |
|
Aug 7 |
comment |
How to test void method with Junit testing tools? added tag 'junit' |
|
Aug 7 |
revised |
How to test void method with Junit testing tools? edited tags |
|
Aug 6 |
revised |
How to keep track of OpenGL state across function calls? added 17 characters in body |
|
Aug 6 |
asked | How to keep track of OpenGL state across function calls? |
|
Aug 5 |
revised |
3D Game Development tips (especially game architecture) deleted 1 characters in body |
|
Aug 5 |
answered | how to reset a form after submit? |
|
Aug 4 |
revised |
Coming back to Java after a long absence; good Java game dev resources? added 228 characters in body |
|
Aug 4 |
answered | Coming back to Java after a long absence; good Java game dev resources? |
|
Aug 3 |
revised |
3D Game Development tips (especially game architecture) added 1 characters in body |
|
Aug 2 |
revised |
Subversion: Add all unversioned files to subversion using one linux command edited tags |
|
Jul 31 |
revised |
3D Game Development tips (especially game architecture) edited body |
|
Jul 31 |
answered | Where can I find free sound effects for a game? |
