Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×
Programming Games

Ask Slashdot: How To Find Expertise For Amateur Game Development? 188

New submitter es330td writes "I'd like to write a program that takes the old cannon game to another level, but instead of the path being a simple parabolic arc, the projectile will move through a field of objects exerting gravitational attraction (or repulsion) and the player will have to adjust velocity and angle to find the path through the space between launch point and the target.In an ideal world, this would end up as one of these Flash based web playable games, as that would force me to fully flesh it out, debug and complete the app. I doubt this will ever be commercial, so hiring somebody doesn't make sense, and I wouldn't learn anything that way either. I have been programming for almost 20 years, but the bulk of my work has been in corporate programming, primarily web (Cold Fusion, ASP & C#.Net,) or VB6 and then C# Windows GUI interfaces to RDBMS. I have never written a graphics based game, nor have I ever written something using the physics this will require. Once upon a time, I could program in C but I think I would be much better off to work with someone rather than try to roll my own unless good books exist to flatten the learning curve. Any advice on how to proceed?"
This discussion has been archived. No new comments can be posted.

Ask Slashdot: How To Find Expertise For Amateur Game Development?

Comments Filter:
  • Javascript (Score:4, Informative)

    by Vixe ( 1846608 ) on Friday March 09, 2012 @08:24PM (#39307753)
    If you learn javascript and make it a web-based type deal, you can use something like processing js [ http://processingjs.org/ [processingjs.org] ] to handle the graphics for you.
    • by Rinikusu ( 28164 )

      Add to that Box2D as a physics engine, and you'd be half-way there. I'm partial to the impactjs + box2D stack, myself, but impact isn't free.

    • by cgenman ( 325138 )

      Flash and Unity are also good choices. Unity supports C#, Javascript, or several others natively. Flash's Actionscript is an offshoot of Javascript, albeit an odd one. The physics themselves involved in gravity simulations are very, very simple to model. If only one body is moving (and to work as a game, only one body should be moving), just have the projectile iterate over all of the objects in the gravity list every update. Velocity += ( Distance * Mass * Scalar ) ^2

      However, he should realize that no

      • Velocity += ( Distance * Mass * Scalar ) ^2

        Actually, Velocity += Scalar * MassOfOtherObject / Distance^2.

        • by cgenman ( 325138 )

          Whoops! Thanks. That will teach me to write off-the-cuff equations while pulling an all nighter.

  • by mangu ( 126918 ) on Friday March 09, 2012 @08:25PM (#39307777)

    Physics simulation of rotation is complicated because you are handling matrices and vectors. Google David Baraff [google.com] for a good reference. Russell Smith's ODE [ode.org] is a good library for this.

  • Too late! (Score:5, Informative)

    by togofspookware ( 464119 ) on Friday March 09, 2012 @08:25PM (#39307785) Homepage

    Angry birds is already doing it [angrybirds.com].

    This is what someone called, uhm, 'emergent ideas', or something. You think of something new only to find out someone else announced the same project a week ago!

    • Re:Too late! (Score:5, Informative)

      by pjt33 ( 739471 ) on Friday March 09, 2012 @08:34PM (#39307887)

      I did it three years ago as an entry for the Java4k Game Contest: Gravitational Fourks [java4k.com]. And my inspiration was a game I played on the Acorn Archimedes in the early 90s.

      • Sweet, it's scorched earth with spherical gravitational fields! I'm having a good time putting things into orbit, but the only way I've managed to hit the target so far is plowing through the planet in the middle...
      • Re:Too late! (Score:5, Interesting)

        by emj ( 15659 ) on Friday March 09, 2012 @08:47PM (#39308025) Journal

        There is a slightly more "flashy" version called gravitee wars [kongregate.com]. Polished and stuff.

        • by pjt33 ( 739471 )

          Well, there's a limit to how much polish anyone can pack into 4 kilobytes.

          • by fa2k ( 881632 )
            Kraków (ac. Cracovia, jid. Kroke, niem. Krakau, fr. Cracovie, ang. Cracow, hiszp. & w. Cracovia) – miasto na prawach powiatu w poudniowej Polsce, siedziba wadz województwa maopolskiego, drugie w kraju pod wzgldem liczby mieszkaców[1][4] i pod wzgldem powierzchni[1]. Pooone nad Wis, na obszarze Bramy Krakowskiej, Niecki Nidziaskiej i Pogórza Zachodniobeskidzkiego. Jest jednym z najstarszych miast Polski o ponadtysicletniej historii, z wieloma wartociowymi obiektami architektoni
      • On the Amiga in 1987 it was called Gravity Wars. Still it is a cool idea.

    • Re:Too late! (Score:5, Interesting)

      by artor3 ( 1344997 ) on Friday March 09, 2012 @09:09PM (#39308219)

      It was done in Flash games long before Angry Birds decided to do it.

      I like to call it the iPod Effect -- people assume that whatever company gets rich with an idea must have been the one to invent it.

      • by asylumx ( 881307 )
        Just re-read the GP and found -- nope, he never said Angry Birds was the only one, or that they did it first.
    • The oldest version I've played [hpcalc.org] was on the HP48 calculators, and I think even that was a port off of some older platform.

  • Stackexchange (Score:5, Informative)

    by Letharion ( 1052990 ) on Friday March 09, 2012 @08:29PM (#39307817)
    http://gamedev.stackexchange.com/ [stackexchange.com] is a great place to ask game development related questions.
    • Re:Stackexchange (Score:5, Informative)

      by Anonymous Coward on Friday March 09, 2012 @08:36PM (#39307915)

      I'm currently a student studying game programming, and http://www.gamedev.net/ has been a godsend. The forums are by far the best I've found. There is a Help Wanted section, and it varies in how serious or deadlined the projects are, so that could be a good place to find a potential partner.

      If you're familiar with C#, look into XNA. The framework is built in C#, it's free and its projects can be run on PC/XBOX Indie/Windows Phone. Other options would be Flash or the Unity engine (can run in browsers, scripted with C# or Javascript).

      I like your idea, could be a fun casual game.

      • Re:Stackexchange (Score:5, Informative)

        by The Optimizer ( 14168 ) on Friday March 09, 2012 @09:10PM (#39308223)

        Mod parents up. I've been making games professionally for over 15 years, and I was going to mention both of those sites.

        My general advice, when asked, "How do I learn to make games" is to 1) Look around online as there are communities and resources all over, and 2) Just start making something, anything. Do it rather than talk about it. Start with something small - an early Atari 2600-class game project - and expand as you become comfortable and more knowledgeable and experienced.

        • by narcc ( 412956 )

          Start with something small - an early Atari 2600-class game project

          Just don't write an actual Atari 2600 game. It's fun and challenging, but ridiculously difficult.

  • by Anonymous Coward on Friday March 09, 2012 @08:30PM (#39307829)

    You seem to be an expert programmer, so I'll just point you to the XNA library here [http://msdn.microsoft.com/en-us/library/bb198548.aspx] and let you figure it out from there.

  • by Anonymous Coward

    A friend of mine wrote something that sounds very similar to what you're talking about as a ruby app. It's open source (available at http://rubyforge.org/projects/planetsgame/), so you could start by looking at what he's got and tweaking, rather than trying to build from the ground up.

  • by woodhouse ( 625329 )

    Unless you're providing some kind of financial incentive, I'm not sure why anyone would want to do it for you. But fortunately, what you're describing is doesn't sound particularly difficult. If you want to learn from the experience, you should really just do it yourself. You could put something together in C/OpenGL pretty quickly (there are lots of tutorials on the web for getting up and running with OpenGL).

    • Re: (Score:2, Insightful)

      by Dahamma ( 304068 )

      The whole post doesn't make any sense. He wants to make a simple non-commercial game for the purpose of learning, but he doesn't want to have to figure out how to program it and would like to find someone who already knows how to do it to write it for him. Wha?!

      • Re: (Score:2, Insightful)

        by hawguy ( 1600213 )

        The whole post doesn't make any sense. He wants to make a simple non-commercial game for the purpose of learning, but he doesn't want to have to figure out how to program it and would like to find someone who already knows how to do it to write it for him. Wha?!

        I don't think he's looking for someone to write it for him, he's looking for someone to guide him and point him in the right direction so he doesn't spin his wheels doing something one way that's going to lead him to a dead end. Maybe he'd learn more by doing it all on his own. Or maybe he'd learn bad habits that are hard to correct later.

        • by Dahamma ( 304068 )

          If that's true I guess there is a reason he can't find anyone to do this for him... who would want to handhold someone to teach them the basics required to develop a simplistic game concept as a learning exercise without being paid anything??

          I suppose that's the answer he needs to hear: you won't find a expert game developer to "partner" with you on this, so do what most other hobbyist game programmers do - try to figure it out for yourself, and when you can't then ask questions on any of the many developer

      • No, you misunderstood. "he doesn't want to have to figure out how to program it" is very wrong:

        "I'd like to write a program..."
        "...In an ideal world, ... [I would be forced] to fully flesh it out, debug and complete the app"
        "...hiring somebody doesn't make sense, and I wouldn't learn anything that way either"
        "...I think I would be much better off to work with someone rather than try to roll my own unless good books exist to flatten the learning curve"

        He wants a somewhat experienced partner who might be willing to answer questions and guide him through the process of making a game. Perhaps this person might develop side-by-side with him if the project is large enough. He clearly wants to learn how to do this, he's just not sure about the best way to start. He's suggested that an experienced partner is a good way to go, and if he can find one it probably is. Mos

    • Or C/SDL (for 2D stuff, OpenGL is often overkill).

      Actually, given his C# background, XNA may make more sense. It's essentially C#.NET with extra gaming-oriented libraries and optimization. Runs natively on Windows XP+, the Xbox360, and one of the Windows Phone types, and there's probably a Mono-based project to make it run on non-MS systems.

      Like any Microsoft environment, it's heavily documented and aimed at novices and amateurs. I've never used it much myself (I prefer C++/SDL or C++/OpenGL, myself), but I

    • by narcc ( 412956 )

      Judging from the question, I doubt the fellow has a strong mathematics background. OpenGL may not be the best choice for him.

      This poor guy has been writing CRUD apps for the last 20 years; how much linear algebra do you expect him to remember?

      • How many programmers ever learned linear algebra in the first place, especially if they graduated decades ago (if they even went to college)? It's not like you need to understand linear algebra to call a library rotation routine though. Theoretically at least, I prefer quaternion rotations, which aren't even primarily based on linear algebra--just because quaternions are cuter than matrices (though I'm a pure math person).

  • In case you're not the same guy who posted this exact same idea already...
    >>>>/AGDG/ [spiderchan.com]
    is that way. You may be able to see if the person who posted similar game idea / implementation is still around.

    You can contract a freelance programmer to write it for you, then look at the source and gain understanding that way (ever played GORILLAS.BAS [microsoft.com]?).

    Alternatively, take a tutorial for getting graphics on the screen; Then moving the graphics; Then collision detection; Then apply gravity.
    Or, simply join a group of people in the modding scene for an established game engine -- ask the mod community how to proceed -- Port to flash when done.
    If you already know one language Learning ActionScript is as simple as learning the flash API and ECMAScript syntax...

  • first small step... (Score:4, Informative)

    by Tastecicles ( 1153671 ) on Friday March 09, 2012 @08:35PM (#39307899)

    have a look at this [newtondynamics.com].

    • I know, I know, bad form...

      One of the first complex programs I wrote in GWBASIC (my first serious(!) adventure in programming) was a Newtonian orbital model (I didn't actually write it from scratch, I took a simple program I found in a magazine that demonstrated the inner solar system as a realtime simulation and replaced the individual chunks of code for each body with a unified algorithm and called each body n). Basically it took n massive particles and calculated their interactions with every other parti

  • by Weaselmancer ( 533834 ) on Friday March 09, 2012 @08:37PM (#39307921)

    First you say this:

    hiring somebody doesn't make sense, and I wouldn't learn anything that way either

    Ok. So you're looking at this as a learning experience. That's great. But then you say this:

    Once upon a time, I could program in C but I think I would be much better off to work with someone rather than try to roll my own

    So you're looking for someone to do this for you and not learn any coding.

    I think you need to consider why you want to get involved in this in the first place. If you want to learn game programming, that's great. Go do it. If you want to learn project management, that's good too, go do that. But first I think you have to figure out what your goal here actually is.

    I will tell you this though. Until you narrow down your scope and figure out exactly what you want, the dithering is sending up some flags. You have an idea, you say you're not interested in money, yet you want someone to write a game for you based on an idea you have, and you're not willing to pay anything to get it done. Jaded old programmers like me hear this kind of a thing and mentally translate it into "I want you to write a program for me so I can get rich from it without doing any of the actual work."

    • Game development is a large field. There are many platforms, physics is hard for most people, especially without a good background in math, getting art/sound/music can be hard--there are plenty of reasons to want a mentor-like person when just starting out.

      Jaded old programmers like me hear this kind of a thing and mentally translate it into "I want you to write a program for me so I can get rich from it without doing any of the actual work."

      Why? There's no evidence I can find to support that interpretation, and there's a mound of evidence against it. Why would he list his coding background and invite suggestions for books to "flatten the learning curve"--to make the post more convincing? Tha

  • html5 (Score:4, Informative)

    by gr7 ( 933549 ) on Friday March 09, 2012 @08:39PM (#39307945)

    Read about the canvas element. You should be able to write the whole thing in javascript. You should be able to get an extremely basic version up and running within a few hours. Just play around a bit in javascript and read about <canvas>. The physics is trivial - you store the x,y vx,vy value of everything that is moving (velocity x,y). You add vx to x every cycle through your loop. You adjust vy by gravity through every cycle. Also known as ay. And you also adjust vx,vy by every gravitational point nearby. You calculate the distance sqrt((x1-x2)^2+(y1-y2)^2 ) to each object and use gravity formula which is realted to 1/distance squared so you can get rid of that sqrt and make the code more efficient. Then find the portion of accel that is due to x and y. Anyway, it's just a few hours work. Just give it a shot - don't read any books - just find an html primer website that talks about <canvas>.

  • Go For It (Score:5, Insightful)

    by mugnyte ( 203225 ) on Friday March 09, 2012 @08:42PM (#39307971) Journal

    Although truly "new" ideas are a rare breed - don't be deterred. Build this yourself using all your skills and use it as a lesson. If you use a group, it might be more fun but just don't sub-out the interesting parts. Learn about them.

    Start with the core and work outward
    - movement of an object in space
    - applying single-point and universal gravity
    - collision detection
    - concurrent animations
    - 2D crash physics
    - some graphics

    Then story out something to power some gameplay
    - characters / features
    - scoring
    - co-op/vs online ideas

    Of course, the core has been done - but really this is for you to learn the basics. Once you do this, someday you can go from an actually novel idea to a game in less time. Who knows, down the road you may have a really good idea. My best wishes go out to you to persevere!

  • Seriously.... a book?

    Just Google what you want to know.

    If you've done C#, then look at XNA. It lets you do game stuff in C#. You know how to program, now just pick up things you don't know to build on that toolbox. On sites like http://create.msdn.com/ [msdn.com] you can find all the information you need, and better yet, full functioning examples projects to pick apart and learn from.

    Why back in my day there was no Google machine. Much less any book son the subject. Now there is so much information out there, for

  • Physics, etc (Score:5, Informative)

    by Dan East ( 318230 ) on Friday March 09, 2012 @08:56PM (#39308091) Journal

    Well, you can look at existing physics engines, like Box2D, but it won't do what you want by default. Games of the type you're talking about simulate motion in discrete steps - usually once per frame. However, you can also decouple your motion (physics) from the rendering, but you usually only need to do that for very precise physics simulations that need to be reproducible time after time (when you decouple physics then the physics engine can always run at some fixed time interval, like 1/60th of a second, which is how realistic physics engine like Box2D function best).

    Essentially you have a simulation going, in which each object has a position in floating point precision. Each frame you calculate the duration of the previous frame in milliseconds, then you move all your objects the appropriate amount over that discrete time step. So if your frame is 10 milliseconds, and an object has an X velocity of 1 unit per second, then you increment its X value .01 units. The next frame might take twice as long to render at 20 milliseconds (maybe you have more objects, or some other multitasking app used some CPU time) so you have to move your objects twice as far - .02 units. The math is very simple. Then after moving all the objects you render them into screen space.

    As for the attractors / repulsors, you also store a velocity value for each moving object. Then each frame you calculate the distance to each attractor / repulsor, and modify the velocity based on the strength of the attractor / repulsor attenuated by (divided by ) its distance from your object. You can make it as simple or complex as you'd like. You can factor in mass, use linear or exponential repulsive effects, etc. Now if you start getting into collision detection and resolution, then things can get very complex if you're dealing with objects more complex than circles or really, really fast moving objects. For example, say you have a bullet traveling really fast, and it is heading towards a thin barrier (wall). One frame the bullet could be on one side of the barrier, and the next frame it moved so far that it is on the other side. In other words, there wasn't a frame in which the bullet was exactly in contact with the barrier. Those things can get complex to simulate, and it gets even worse when both objects are moving at the same time.

    The key thing is grasping the concept of discrete time steps, and moving objects a variable distance each frame depending on how long the previous frame took to render. You can't just hardcode the game to run at, say, 1/60th a second, because if it is running on a slower device than you tested on, or if the device is multitasking and can't spend as much processing time on your app, then things will seem to run in slow motion and be herky-jerky. The other key thing is the idea that the positions of your objects do not (and should not) correspond directly to screen coordinates. Say your world is 100x100 units. Well, when you render it, you simply scale it so that the 100 is the width of the display (if you're using something like OpenGL to do your drawing, then you just set the matrix scale appropriately). So the "real" position of the objects, and all that simulation, occurs at some arbitrary coordinate system, and then is scaled appropriately when the objects are drawn.

    As for languages, personally I recommend C++ and use OpenGL ES for rendering. Then the vast majority of your code can be used on Android, iOS, Windows, Linux, OSX, etc, but is not conducive to web-based like Flash or Java.

  • You see posts like this quite a lot. "I have this idea for a game, now i just need someone to help me write it" This is getting things backwards. Concepts are cheap, execution is everything. You are a programmer, bite the bullet and get your hands dirty. In the 'programming for fun' market noone wants to write *your* game because they are busy writing *their* game. You will only attract external talent if you already have something concrete and valuable that they will want to be a part of. First thing is t
  • As at least one other person has suggested, do this in Javascript. Processing power shouldn't be an issue - consider a "swarm" or "hive" screensaver running on a 386 with a tiny fraction of the power of a modern PC.

    You have two separate areas to work on, three if you actually want it to look good (graphic design is its own thing): the physics/calculations, the animation, and making the animation not look like crap. For the animation/graphics, HTML5's Canvas may be your friend but I don't have the experience
  • Unity 3D lets you write in C# (or Javascript) then port to PC, Mac, WebGL, iPhone, Android -and, if rumors are to be believed, soon Windows phone.

    Free to try, not too pricey for the full version either. They have some demos to get you started, there are also a few books to help you dive deeper.

    http://unity3d.com/ [unity3d.com]

  • Congratulations! (Score:4, Insightful)

    by JohnnyBGod ( 1088549 ) on Friday March 09, 2012 @09:17PM (#39308273)

    You're well on your way to recreating Slingshot [wikispot.org]!

    Anyhow, if you're looking at this as a learning experience, XNA seems to be the thing where you could put your skillset to work the fastest. Python also seems like a good choice, if you're willing to learn it. As for graphics/physics/whatever, there should be libraries to help you, and surely some other Slashdotter will drop a few names shortly.

  • Since when do they post craigslist ads on the front page of slashdot?

  • This game would be pretty easy to do with Python and would be a good project to use as an excuse to learn some Python.. Either use pyglet (openGL wrapper) or pygame (SDL wrapper) modules. You can probably find some open domain 2D game examples that you could tear apart to do what you want.

  • I did something like this for a first year project, it involved charged particles which obeys a similar inverse square as gravity does for determining position. You basically had a fixed set of charges, that users could toggle to be between {-8,-4,-2,-1,0,1,2,4,8} * K, then you'd hit start and you'd try to get the puck to go to the goal (It was very much based on this: http://phet.colorado.edu/en/simulation/electric-hockey [colorado.edu]). It involved basically looking at F_x (the force applied in the x direction, from e
  • by rastoboy29 ( 807168 ) on Friday March 09, 2012 @09:51PM (#39308551) Homepage
    Like Torque (my favorite, that I used in my own game (see sig)).  Or check out Ogre, which is coming along nicely.

    Finding help (for free OR pay!) is nearly impossible.  Most people just don't have the staying power.  I've had many people enthusastically tell me they want to partner with me on my game, and exactly zero lasted more than a few days.  Either that, or they just don't have anything to offer.

    I made my game by myself, and it's a full featured first person shooter.  You can make your cannon game.
  • When I had a brand new PS2/30 with two floppy drives and (gasp!) MCGA, I wanted to write a game, and settled on a new arcade game I had seen: tetris. To get the game fleshed out, I first did it all in text, and then wrote a graphics front end. As the OP indicated, there was no money in it, but it was educational. But basically my advice is to ignore the graphics until everything else is done.
  • I converted one of my c games straight to Flash in one week of learning the language. The syntax is almost identical! On top of this, AS3 graphic handling is waaaaay better than C/C++. I recommend picking up Flash, get Flashbuilder 4.6 from Adobe, well worth the money imo if you know C.
  • Find a book on 2d graphics and start learning. It's really, really trivial. Almost nothing required beyond the ability to add and subtract.

    3d is a quantum leap more difficult, requiring matrix algebra and calculus, so I'd stay away from it unless you really want to do some studying.

    So learn what a sprite is, get one appearing on screen, start manipulating it according to the physics equations you look up, and see how it behaves.

    I'll also warn you that you aren't likely to find someone to build your game,

    • by Surt ( 22457 )

      Gravitee wars, mentioned elsewhere in this thread was the game I was thinking of.

  • repeat:

    xpos += xvel
    ypos += yvel

    xaccel += xforce
    yaccel += yforce

    xdist = planetx-bodyx
    ydist = planety-bodyy
    mass2 = bodymass

    xforce = g*mass1*mass2 / xdist*xdist
    yforce = g*mass1*mass2 / ydist*ydist

    ----

    if you have more than one object, do a loop through the 'force = ' stuff and use += to aggregate it.

    • mass2 = planetmass
      mass1 = bodymass

    • Because that's a pretty bad way of integrating equations of motion.

      It's what I learned high school---when I actually started doing physics for real I found it was junk.
      At least use 2-nd order Runge-Kutta, you'll also need a variable time step.

      For a game it doesn't matter likely, but even RK won't actually preserve things like energy, momentum and the 3rd invariant in 2-body mechanics which I've forgotten now.

    • quote: xforce = g*mass1*mass2 / xdist*xdist

      assuming you meant to write parentheses (xdist*xdist), if the particle coordinates are (0,0) and (0,1), then xforce would become infinite. you'd need something like
        xforce = g*mass1*mass2*xdist / pow(xdist*xdist+ydist*ydist, 1.5)

  • i apologize, it looks like the original monster app has already cannibalized your idea space:

    http://www.youtube.com/watch?v=lxI1L1RiSJQ [youtube.com]

    Angry Birds on the ISS

    (then following through to your idea of alternative gravitational fields)

  • Just FYI. There was an online, multiplayer artillery game in space, where the players sat on planets and had to shoot each other by using the planets' gravities to manuever the shells. I even remember it having little callbacks to Scorched Earth (e.g. the death messages, "Remember the Alamo!"). It was pretty damn entertaining, I just can't remember the name.

  • Give XNA a try. It allows you to create games for the Xbox or a Windows PC, and the developer license is only $100 a year. Since you have some C# experience, you should be able to get comfortable with it fairly quickly.
  • I have never understood this question. Maybe I'm a little young (27), but I've been programming professionally a while (6 years), and it's all the same: programming is programming. If you understand physics, I don't get why you wouldn't know how to program game physics. Sure, It's some different libraries, and a different sort of idea of how to do things, but that should take you all of a day to learn that idea (the three methods that run continuously and what they do/mean). You're not describing something
  • I don't work for Unity 3D, so this is not a shill. Unity 3D is an awesome tool, well worth the $400 investment. I've never seen a game development tool flatten the learning curve better.

  • by Tom ( 822 )

    Get an engine. I personally use Unity 3D, and there's a free version of that available.

    In this day and age, only the insane and the bleeding-edge write everything from scratch.

  • by Daniel Phillips ( 238627 ) on Saturday March 10, 2012 @05:30AM (#39310377)

    Physics for Game Developers [oreilly.com]
    Physics for Game Programmers [amazon.com]
    Essential Mathematics for Games and Interactive Applications, Second Edition: A Programmer's Guide [Hardcover] [amazon.com]

    Nothing that Google can't find. Programming language: C++ because the vast majority of examples are coded in it, plus it's fast and light if you don't get too stupidly abstract. Java if you want to write for Android. This particular application will work fine with very basic Euler integration: add the forces, divide by the mass, poof you have acceleration, integrate for velocity, integrate again for position, and shazam, physics.

  • I'm a thouroughbreed Flash/ActionScript developer currently bemoaning the slow demise of Flash and diving into other technologies as a replacement - which, on a sidenote, are *all* a *big* step backwards in terms of development workflow and deployment for end-user applikations. Even something like Qt wether with some neat PL like Python or just the pure C++ feels like going back 20 years in time. Thus I have to say the following:

    If you want to do this project for yourself and your close friends, for fun and

  • http://www.gameifesto.com/ [gameifesto.com]
    I have no experience with them, but it sounds like they're thinking along the same lines that you are - a matchmaking service for game developers.
  • I am so sick of people coming to me having seen my successful apps and saying, "hey you and I should make an app together." I just tell them, "I have about 20 years of projects floating around in my head with them coming out one at a time. It would be faster for you to learn to program apps. I can suggest some great online resources."

    These bozos seem genuinely hurt that I don't want to make them a pile of cash. The only time I have collaborated on an app the other half brought a huge non programming resour
  • Go there. Read the tutorials. Ask in the forums.

    You are welcome.

  • You could contribute to Ogre, Crystal Space, Blender Game Engine, or Erlicht. Or physics frameworks such as Bullet; or if AI is your interest - Recast and Detour. Or sound openal. If you are interested in the 'tool' side - then write importers/exporters for Blender; add tools that make rigging; skinning; modeling; texturing; animating; etc easier. You might also try writing importers/exporters for non opensource projects - ie Maya, 3DSMax, XSI, ZBrush - one taskthat would benefit blender users and build

"Protozoa are small, and bacteria are small, but viruses are smaller than the both put together."

Working...