Difference between revisions of "System Architecture, the strategy to complex implementations"

From RogueBasin
Jump to navigation Jump to search
(Adde more minor design)
m (added more alt parts)
Line 44: Line 44:


== Orthogonal Design ==
== Orthogonal Design ==
This design can be found in the original Doom and Super Mario Brothers. It is a design principal where every item is different from every other. See [https://www.youtube.com/watch?v=yuOObGjCA7Q] for an in depth description of this method. Beside being primarily a design principal and therefore not solving all architecture problems it is also very poor choice for modern games as the design method was create good games on resource starved hardware. The design method also creates very strange games, neither hunting demons with shotguns or having a plumber saving princesses makes for a convincing story. This design principal is very difficult to follow when using a random number generator.
This design can be found in the original Doom and Super Mario Brothers. It is a design principal where every item is different from every other. See discussion of doom[https://www.youtube.com/watch?v=yuOObGjCA7Q] for an in depth description of this method. Beside being primarily a design principal and therefore not solving all architecture problems it is also very poor choice for modern games as the design method was create good games on resource starved hardware. The design method also creates very strange games, neither hunting demons with shotguns or having a plumber saving princesses makes for a convincing story. This design principal is very difficult to follow when using a random number generator.


== Minimal Design ==
== Minimal Design ==
The modern way of designing game with an old history going back to games like Boulder Dash [https://www.youtube.com/watch?v=FiEVfa1OK_o](which is also a cellular automata architecture). As it is mostly a design method it cannot solve all of you system architecture questions need but can reduce the complexity of the game. The best modern example of this design philosophy is Dark Soul. The principle focuses on maximising the use of every game mechanic, tough it can be viewed as lazy. The principal goes great with random number generators.   
The modern way of designing game with an old history going back to games like Boulder Dash [https://www.youtube.com/watch?v=FiEVfa1OK_o](which is also a cellular automata architecture). As it is mostly a design method it cannot solve all of you system architecture questions need but can reduce the complexity of the game. The best modern example of this design philosophy is Dark Soul. The principle focuses on maximising the use of every game mechanic, tough it can be viewed as lazy. The principal goes great with random number generators.   
== Model View Controller ==
Not an architecture by itself but an influential design pattern used very frequently in applications. This is in principal a more general version of the 2D Room architecture. The principal here is the state logic of the application is not part of the GUI. See the discussion[https://www.youtube.com/watch?v=1IsL6g2ixak] for a discussion.
== Total Quality Management ==
This is a famous organisational method that could be used to implement system architecture. See a discussion here[http://blog.bid-org.com/toyota-motors-the-king-of-total-quality-management/] about the method. The method increases response speed to reduce quality issues in your product or service drastically. This method could be useful for those trying to sell an online roguelike that needs maintenance or a rogue developed iteratively with input from players.




[[Category:Developing]]
[[Category:Developing]]

Revision as of 21:14, 12 December 2018

Imagine you are making a game and you have an item that allows you to switch health with a monster. On level 100 you encounter the Lich King with negative health that takes damage from healing potion. What exactly is supposed to happen when you switch health with the Lich King? Will the player die?, will the Lich Kind die? or will the Lich King suddenly become a King and the Hero will become the undead Lich Hero with negative health? This is what system architecture solves or is trying to solve, a strategy to deal with complexity. If you don't have any system architecture you will end up building the next NetHack that has required 20+ year of development to fix every possible odd quirky use of every item and spell.

Gunshot Coding

Code by trial and error (or slugger coding). This means coding without a plan which is good if you don't need to create a story. you write some code test it bug fix, write a bit more and so on. The game can become quite strange when coding by trial and error. Doom RL and the original Rogue are designed like this. It is recommended to avoid this style of coding if the story in the game is important as it is very difficult to predict play style and how the actual world will become.


2D Rooms

In this architecture the game consist of a number of rooms with some variables that connect each room. The roguelite "binding of Isaac" uses this architecture as does the game Elona. The architecture is heavily used by JRPGS and is probably the model that is found most frequently in RPGs. The problem and benefit with this architecture is that interaction between rooms are limited, random generation of contents can be an issue. The architecture allows easy creation of overhead maps, special physics, combat screens and many other game features. This type of architecture is very good for creating interesting stories. This architecture can be considered best by test.

Cellular Automata

The world consists of small cells (or atoms) and the world is described through the interaction of these cells. Very much contents can be created with very little effort using this architecture. Spelunky is an example of this architecture, tough the original game of this architecture is boulder dash for 8 bit machines. The game architecture allows easy modeling of falling stones, traps, rolling boulder, flying projectiles and other physical game elements.


Woke Architecture

There is a modern saying go woke go broke. Don't use politics as your system architecture, your game will fail badly and nothing will be created and the horror you make will be avoided by all human beings. The only game which was 'woke' and actually successful is the board game monopoly that was created to critique capitalism. Don't expect to make the next monopoly unless you actually do some research of actual social subject. If you do the research there is still nothing that ensures that the research will define a well behaving system that can be used to create a rogue game. Avoid this architecture unless you have some real reason to make a "woke" game.


Object Oriented Architecture

Not to be confused with Object oriented programing or what is called object oriented system architecture. Object oriented programming is sometimes considered a system architecture, however things are a bit confused in the professional world of computing when talking system architecture. Actual system architecture in this context is an Object Oriented Architecture that copyies your Live Action Role-Playing Game, or copying some real life events. The point is that if you copy your LARP or RPG sessions you will, with some computing skills, have the ability to implement exactly that LARP or RPG session.

No Architecture

This what you do if you go to a conference and implement the system architecture ideas you hear about. The problem is that many of these conferences discuss low level system architecture that you don't need to care about when making a Rogue game using languages like Python, (Javascript and other languages solve those issues). This is worse than gunshot architecture as you believe that you have an architecture while in reality you don't have an architecture that is sufficient to make a rogue game. It is a problem with professional coders with bad habits and less with amateurs (probably). Avoid getting lost in coding details when thinking system architecture.



Alternative Architectures


Below are some more unusual architecture that could be used but are not recommended unless you are making a very unique rogue game. Also included are designs and architecture influencing decisions.

Vector Room

There was a game called Harpoon using vector maps with variable clock times. This game was very realistic warfare simulator. While no roguelites exist using vector based maps with variable clock times there certainly is a few rogulites focusing on warfare that could benefit from this architecture.


Code Generation

In the future people don't code machines, machines code humans. At the very least there is research in generating code by automatic means and this could allow generating your roguelite using an advanced code tool. This one is more for researchers than game makers.

Visual Novel

You create a visual novel and then add roguelike elements to your visual novel. There are a number of roguelikes of this genre but as a system architecture it is incomplete as it cannot describe how to create the roguelike parts. Probably a game like Omega Labyrinth Z should be included in this category. It is recommended to include visual novel elements into your game instead of the other way around.

Orthogonal Design

This design can be found in the original Doom and Super Mario Brothers. It is a design principal where every item is different from every other. See discussion of doom[1] for an in depth description of this method. Beside being primarily a design principal and therefore not solving all architecture problems it is also very poor choice for modern games as the design method was create good games on resource starved hardware. The design method also creates very strange games, neither hunting demons with shotguns or having a plumber saving princesses makes for a convincing story. This design principal is very difficult to follow when using a random number generator.

Minimal Design

The modern way of designing game with an old history going back to games like Boulder Dash [2](which is also a cellular automata architecture). As it is mostly a design method it cannot solve all of you system architecture questions need but can reduce the complexity of the game. The best modern example of this design philosophy is Dark Soul. The principle focuses on maximising the use of every game mechanic, tough it can be viewed as lazy. The principal goes great with random number generators.

Model View Controller

Not an architecture by itself but an influential design pattern used very frequently in applications. This is in principal a more general version of the 2D Room architecture. The principal here is the state logic of the application is not part of the GUI. See the discussion[3] for a discussion.

Total Quality Management

This is a famous organisational method that could be used to implement system architecture. See a discussion here[4] about the method. The method increases response speed to reduce quality issues in your product or service drastically. This method could be useful for those trying to sell an online roguelike that needs maintenance or a rogue developed iteratively with input from players.