Skip to main content

What does a good game consist of? (part 38)

Top challenges

You can measure your game design by measuring the difficulty of your
challenges. Basically, all of them. After that you see which are the
hardest, and then either keep them, or ideally make them harder or

make additional ones on top of the difficulty of these ones. It may
sound stupid, but the best games ever made are the ones that are hard,
hard to complete and after that beat(finish all additional and

optional setup challenges). The main or normal most useful procedure
to measure the difficulty of challenges is by writing stars. For
example, say an outstanding challenge you made is above most others,

you give 6 stars, then you measure the others and see if you want any
with 7 stars. If you pick any or multiple with 7 stars, just do the
same procedure all over for reassessment. And keep repeating until you

have a decent game design documentation. There's one very important
thing to remember when making top challenges: they are hard and not
everyone can beat them(in other words, it takes skill and lots of

effort. The saying that it is possible to learn from video games(games
are best teachers) is absolutely true and the most you can learn about
life(or playing video games) such as concentration, accuracy,

attention, focus. Hard video games(like impossible badges on
Kongregate, are tedious, frustrating, even depressing, but they are
also the most human memory rewarding. They teach you how to be better

at playing games and also actual life lessons. Top challenges balance
the hard games, so that not everyone beats them(like Achievements in
Steam by percents). This may seem unfair, but is the exact reason, why

they can be so rewarding. Optional for players who like a good
challenge, or in this case, unlike "normal challenges" very big
challenge. So the point here is to separate the game into normal

challenges and top challenges. Normal challenges include Hard
difficulty and hardest difficulties, and optional challenges to beat,
while top challenges take the "game" to the next level. Very useful

tool for making worthy games. You might ask what about the actual
quality of games, the level design, the graphics and the game design.
The truth it quality of the game, and the difficulty of the video game

are interrelated.

Comments

Popular posts from this blog

static mesh render

Static mesh is a data compound of a three dimensional object in time and space. To render one, it takes a one big storage file that contains all the data about the object. That data has to be stored on a disk drive. The really tricky meshes to render are the flying ones. It's a completely different air pressure. The data gets written to a game memory log, it's a massive multiplayer online game, otherwise in the cloud, like Steam. To render one, the data from the level and monster data files to the monitor handling chip. Monitor handling chips vary based on personal computers, lap tops, operating system, processor and graphics car. Before a three dimensional object can be rendered it has to be fixed on memory, either random access memory or the disk drive recovery point. A three dimensional object data can take quite a large amount of memory, especially those used multiple times. Steam Cloud has it's own of handling data, so that it is persistent. A level is made of static m...

object render

To render objects with c++, it is first required to load them on the engine's heap. After loading the object it has to be integrated into the game engine's allocated memory. void integrate() {     direct_x_node.call(); } Modern games(after doom 2) take an insane amount of heap memory. Integrating all the objects on the level, can take 400 mb or random access memory (ram). The same memory has the chip effect on the working of the central processing unit. To completely render the object, the first step is to load all the textures, shadow models, parts, particles, inner model, render the object on the level map, all the corelations with the heuristics. It is very hard to render the inner part of the objects, such as anatomy or infra structure. While it is perfectly fine to just render the inner part to not be displayed.  The anatomy of a player character or non player can be seen on the outside, and the internal strurcture of a level object such as a building, including the ...

drawing with c++

Drawing with c++ is hard, because you'll need at least directx 12 or unreal engine. So it's hard to get started. Because c++ windows programs and unix command line uses drawing to screen methods to generate text, drawing three dimensional text works similar way. int draw(std::string shape) {  if (shape == "circle")  {     window.draw("|---------");  } } Very important part of c++ computer drawing: #include <windows.h> #include <math.h> The printer chips are used for binary code hardware translation. These move the assembly chips data connected to central process unit and graphical unit. To draw a graph ruse window screen, it is required to use straight lines, drawing in three dimensions requires use of two dimensional polygon lines.  The program function above draws a 10 cm horizontal line to the main used window. Windows then processes that data and sends it to the assembler, which manages binary and script code. c plus plus is a very strong an...