Skip to main content

How Tough Are You?

Whenever I am given the option to choose a difficulty in new games I tend to choose "easy".  The reason I tend to do this is that the majority of the time the game is absolutely no different except you tend to do more damage while the bad guys tend to do less.  It really bothers me when games do this and ruins the entire point of a difficulty selection.  However there are games out there that use the difficulty selection as actual game play.  My favorite examples of this are Wolfenstein 3D and Doom.  


When you picked a difficulty setting it would either add or remove enemies to maps.  So the designer was designing the experience.  These gave way to awesome gameplay experiences and replay ability.  Maybe on one difficulty setting you could run right through a room but on the next difficulty setting maybe there were two or three bad guys in the room ready to ambush you.  Plus the enemies actual difficulty was still the same you were just dealing with more difficult situations.  So you could actually build up your skill as a player.  I would love to see more examples of this in modern games, and maybe there are and I just haven't seen them.  Too many games come out to keep track of or really spend time with so I am sure there are gems out there.  If you have any hidden gems of this example let me know I would love to check them out!

Comments

Popular posts from this blog

Level Buddy | Blender Addon

An old-school CSG inspired level editor add-on for Blender 3D. The add-on is still very much a work in progress but fairly solid for blocking spaces super quickly.  Just because graphic fidelity has gotten insanely good and hyper detailed doesn't mean we shouldn't look back how older games were put together, at least that is my opinion.  One thing I always come back to is how quickly the tools in the first 2 versions of Unreal Ed 2 and Doom level editors allowed anyone to block out a level, iterate on feedback or try an idea out.  So I just took some time to put together a similar pipeline right in my 3d package of choice.  I wanted to keep it simple and quick to try out level design ideas.  You can use it for simple white boxing of your level, break it up into multiple static meshes and import them into your game engine of choice or  you can use that as your starting point to start more detailed modeling ....

Random Level Generation

The level generation system in This Is Dungeon  uses a few different ideas to produce the final levels but I'm just going to go over the first right now.  Levels are generated using the Dungeon-Building Algorithm by Mike Anderson .  This algorithm is very simple to implement and gives really good results.  The levels generate very quickly and the player is guaranteed to be able to reach every room of the level. random dungeon no choke point. After playing around with the generated levels in game I started wanting to be able to break the map up into multiple sections.  Since the features are built one at a time from a previously built room I realized I could just tell the generator how many sections I wanted to break the map up into and divide that by the number of rooms it was trying to generate.  The result being the number of rooms that should go into each section.  With that info you just keep track of the rooms already built and when tha...

Rocky Terrain | Blender Internal Rendering

I saw a really awesome render of some rocks the other day and was inspired to see if I could recreate a version of my own of some rocky terrain so I made this little scene.  The scene was modled, rendered and composited in Blender 3D .  It is a very simple scene and made just for fun in a couple of hours.  The rocks are all subsurface cube objects that I run a noise displacement map on using the world coordinates.  This allowed me to just make instances of the cube and drag them around the scene to get different rock shapes.  Some of the rocks needed to be scaled to get some more size variation but that is pretty much the only thing that is different about them other then their positions.  It was actually really fun to just move the cube around the scene and watch these random rock shapes form.  After the layout was done I added in some particle grass to break the ground up.  Not enough time was spent on the grass so it looks pretty bad ...