Framework Basics

Machinations building blocks

At its core, the Machinations framework is based on:

6 types of Basic Nodes

  1. Pools collect Resources

  2. Sources create Resources

  3. Drains consume/destroy Resources

  4. Converters transmute various types of Resources into another

  5. Traders exchange Resources

  6. Gates redistribute Resources

2 types of Connections:

  1. Resource Connections determine how Resources flow through a diagram

  2. State Connections modify the state of diagram elements

🕹️ Public Diagram

Go through the text below and check out these examples: Framework: Basic Nodes and Connectors

You can Run the diagram and Add it to your Machinations

◉ Resources

All game systems consist of elements in a constant flow of Resources.

Resources can be anything from money and property in Monopoly, ammo and HP in an FPS, or XP and equipment in an RPG.

Resources, together with the entities or actions that cause them to be produced, consumed and exchanged, make up the games' internal economy.

Any Resource flow can be represented in a Machinations diagram.

Entities are represented by Nodes and the way in which Resources are produced, consumed and exchanged is determined by Connections.

⦽ Nodes

🔧 Below is an example of how Sources, Pools and Drains work. Notice the Nodes are linked together by Resource Connections (arrows) with a Label representing the rule by which the Resources will flow between Nodes.

  1. The Source, once clicked, produces 3 Resources which will be transferred to the Pool

  2. The Drain consumes 3 Resources from the Pool

  3. The Random Source randomly produces between 1 and 6 Resources each time it's clicked. The D6 Label notation stands for "Die 6". To establish the flow rate for each step, Machinations simulates the throw of a 6-faces die and the Source produces the resulted number of Resources

  4. The Drain All Drain consumes all Resources in the Pool

📖 More on:

pagePoolspageSourcespageDrains

🔧 Here's a visual of how Converters and Traders work.

  1. The Converter transmutes 3 Resources from the origin Pool into 1 other Resource

  2. The Trader exchanges 2 Coins for 3 Wood and moves these Resources into their respective repository: Coins to Pocket; Wood to Woodshed

📖 Dive into:

pageConverters & Traders

🔧 Gates are more complex Nodes, but the basic is that they redistribute Resources deterministically or probabilistically.

  1. The Deterministic Gate redistributes 9 Resources from the origin Pool and transfers them to each of the target Pool, according to the Labels, which in this case represent the weights of the outcomes

  2. The Probabilistic Gate redistributes the 10 Resources from the origin Pool and transfers them to each of the target Pools according to the probability on their Labels

📖 Further reading:

pageGates

⇶ Connections

All the examples above feature Resource Connections. Full arrows that determine the way in which Resources flow through the diagram. More on this:

pageResource Connections

🔧 State Connections, on the other hand, modify the state of an element. Here's how:

In the example above, the State Connection modifies the Label on the Resource Connection, and alters the flow of Resources function to the number of Resources in the Pool. As such, it adds to the initial Label parameter (1) the number of Resources stored by the Pool after each Time Step.

There's more to State Connections than this, tough. They can modify Nodes' state and act like triggers or activators.

📖 More on:

pageState Connections

Last updated