Download Commandos Behind Enemy Lines Mac Os X

After my last game recreation project, Command and Conquer in HTML5 (a complete real time strategy game with multiplayer implemented in HTML5), I was looking for a new and bigger challenge.

My most recent project, a recreation of Commandos: Behind Enemy Lines in HTML5, makes Command & Conquer feel like a kiddie project.

While Command & Conquer took me around three weeks for a first version, and then a couple of months of iterating to create the polished version that it is today, Commandos has been 8 months of slogging just to get the first working game level out.

Every few weeks into the project, I would reach a point where I would think “There is no way I am going to be able to do this bit. I have no idea how to…”, and a few days later, magically, I would find just the thing that I needed to get it done.

  1. Commandos behind enemy lines free download - Force Recon Beyond the Frontier Behind Enemy Lines, Hot Air Balloon: Flying battle behind enemy lines, KILL YOUR ENEMY, and many more programs.
  2. Commandos: Behind Enemy Lines Click the Download Free Trial button above and get a 14-day, fully-functional trial of CrossOver. After you've downloaded CrossOver check out our YouTube tutorial video to the left, or visit the CrossOver Chrome OS walkthrough for specific steps.
  3. 38 Games Like Commandos: Behind Enemy Lines for Mac. Commandos: Behind Enemy Lines is a real-time tactics game set in World War II that puts you in command of a small squad of elite troopers. Send them behind enemy lines on a series of hazardous missions, and bring them back alive. Clever strategy has never been so furiously action-packed.
  4. Control a group of specialized commandos. Commandos: Behind Enemy Lines aims to give you the thrill of sneaking around heavily guarded bases with just a handful of well-trained specialists, in order to disrupt communications, steal documents and generally making life difficult for the enemy.
  5. The Mac OS X version of the game was released in 2005 by Feral Interactive along with Commandos 3: Destination Berlin as part of the Commandos Battle Pack.1 Commando 2 Download Pc Download Commandos Behind Enemy Lines.
  6. Commandos behind enemy lines free download - Commandos: Behind Enemy Lines multiplayer demo, Pilot Down: Behind Enemy Lines demo, Force Recon Beyond the Frontier Behind Enemy Lines.

Download Commandos Behind Enemy Lines books, Fatally efficient single- and multiplayer tactics Walkthroughs for all campaigns Kill order for every single enemy Tactics for using your 6 Commandos Detailed mission maps Strategies for taking out enemy units, vehicles, and gun platforms. Secret Commandos.

Over this period, I’ve gone through what feels like hundreds of articles and computer science Phd papers on path-finding, handling polygons, depth sorting and various aspects of game artificial intelligence.

This has honestly been one of the toughest projects I have ever taken on by myself. Looking back, I have no idea how I ever came this far. In fact, I am amazed that I actually managed to complete this project.

Here is a quick video of the project.

But what really made this project so hard?

I consider Commandos: Behind Enemy Lines a 2.5D, real time tactics game.

What the 2.5D means is that while the game used 2D assets and images, all the game elements contain 3D position information (x, y and z coordinates) as well as shape information (length, breadth, height). This simple difference however brought on most of the challenges that I had to face.

The first and biggest challenge while recreating the game was just rendering everything onto the screen. C&C was entirely 2D, so depth sorting was as simple as drawing everything from back to front and left to right, and everything just looked more or less OK.

Commandos Behind Enemy Lines Mac Os X Free Download

Depth Sorting is so simple with these blue lines

However with Commandos, things got a lot more complicated. Game elements are not positioned along the X & Y axis, and can overlap each other in very different ways, making depth sorting slightly more challenging.

Commandos Behind Enemy Lines Pc

I tried several different implementations. With each implementation, I would find some items rendered correctly, while others would render incorrectly.

After tons of research and experimentation, I finally managed to come up with a reasonably simple and elegant solution – First do a simple comparison to decide whether or not each item is in front or behind every other item, then run a topological sort to order the items for rendering. The image shows how I use a simple line across each item to decide whether another item is ahead or behind. As you can see, the results are pretty decent.

The next big challenge was path-finding. Unlike C&C and it’s simple grid based A* path finding, Commandos uses a polygon based mesh and needs some pretty flexible pathing. I originally started with a simpler implementation using points-of-visibility pathing, however I finally had to switch to a full-blown navigational mesh with path smoothing to allow for everything that commandos needs, such as climbing up ramps and traveling across bridges.

Again, everything had to implemented from scratch and I didn’t use any libraries for it.

Guard AI – Guards follow footsteps in the snow

The next big headache was the guard AI.

The guard vision and visibility cone computations needed to be fast and optimized since they were calculated in real time so they could be used to decide when a guard could see something.

That, combined with a very tricky AI involving some crazy state flip-flopping, meant it took me a couple of months before the guards could even see and attack a commando properly.

Lines

At this point guards can patrol or watch areas, investigate suspicious noises (explosions, gunshots, yelling), follow foot steps, and finally chase commandos and attack or detain them.

Apart from these were all of the little things that I never thought would take much time, which in hindsight turned out to not be so little and took quite a lot longer.

Climbing Walls – Who thought this would be so hard

Enemy
  1. Building a complete in-game multi-window system.
  2. Teaching the commando how to climb walls (starting with detecting whether a surface was climbable).
  3. Building a very intricate game loader system that handled mission files, sprite sheets, audio sprite sheets and the in-game menu files
  4. A custom in-game menu system.
  5. Handling Weapons, Driving vehicles, Rowing boats, Scuba diving, Explosions, Using Decoys, Hiding inside buildings and every other action the commandos can take.

After 8 months of work, I’m happy to say the game is now finally ready and playable.

If you haven’t tried it out yet, you can play Commandos: Behind Enemy Lines – HTML5 here.

Looking back, I don’t know if I regret taking on this project. Thanks to this project, I’ve learned an incredible amount – about computer science and AI, about better game programming techniques and practices, about automating and streamlining my entire game development process. But the biggest thing I learned was what it takes to build a really big game in HTML5, and how to push myself to achieve something that I never thought possible.

Now that the first mission is finally complete, I’ll probably take a break for a while. Once I come back, the plan is to add more missions, and a multi-player cooperative mode using HTML5 Websockets. Again, all playable in your browser without needing any installation.

Behind

If you have any feedback or questions about this project, please feel free to leave a comment below or on the game page.

If you would like to get notified about future game projects, get exclusive access to beta test new project updates, or learn advanced game programming and collaborate with me on future projects, please sign up using the form below. Make sure you fill out the check boxes correctly so I know what you are interested in.

Related articles: