How To Download A World Factorio Mac

Download factorio for free

A mod for factorio that changes the map into a real-world map.

Note that it only changes the terrain, and not the spawning of resources. This is on my list of things to do, so maybe in the future!

You can get this mod here: https://mods.factorio.com/mods/TheOddler/factorio-world

A mod for factorio that changes the map into a real-world map. Note that it only changes the terrain, and not the spawning of resources. This is on my list of things to do, so maybe in the future!

  1. Factorio Mac Download is for everyone. One of the most interesting premieres this year took place a few days ago and it must be admitted that the creators of the game Factorio Mac Download stood up to the task and gave their users something that exceeded their wildest expectations. One of the best strategic economic games as the users say is available on our website, but today we will try to.
  2. Latest version: Factorio 0.18.45 Download Factorio -2D-sandbox in which you have to prepare a foreign planet for a comfortable stay Earthrealm inhabitants! You’ll collect resources, explore technology, build infrastructure, automate production, and fight foreign enemies.
  3. I run factorio on Macbook Air 2013 - and i am really impressed how good the performance is - it slows down around a 1 rpm base - but thats way more than i expected. Now the 2010 model was the first one as far as i remember - i also had one, so yes this first version.

Factorio Download

  • Simply start a new game
  • Your world settings will be ignored, and the terrain replaced by the earth!

Use the ingame mod settings to set:

  • Map scale: Can be anything between 0.01 and infinite
  • Spawn:
    • Pick a location to start, or set to custom
    • When set to custom, it'll use the custom spawn x and y coordinates
  • Repeat map: If set to false everything after the first iteration will become water
  • Use large map: If set to true the mod will use a more detailed map
    • This will use about 4 times the memory I think
  • Safe zone size: All water within this zone will be turned into dirt

The mod reads lua files generated by a converter writen in Python.
These files are generated based on an image.
Currently I'm using the 'Natural Earth II with Shaded Relief, Water, and Drainages' image from Natural Earth.

Factorio Mac Os

The generator simply iterates over each pixel, and assigns a tile-type to it.
The algorithm uses reference colors, and checks which one is closer to encode the types.
To compress the data a little I use a scheme where every tile-letter is followed by how many tiles there are of this type of that row.
The mod then takes these strings (one for each line of pixels), decompresses it to something it can read very quickly, and assigns the tiles a new type when a chunk is generated.

Require Python libraries

How to download factorio mods
  • Pillow - for processing the images: pip install Pillow
  • tqdm - for fast loading bars: pip install tqdm

Usage

To generate a new lua file and load in into your game you'll have to do a little manual labour:

  1. In convert.py change the settings at the top of the file
    • image_file: the name of the image to use (to be placed next to the convert.py file)
    • resize_width: the size you want the final map to be (can be set to None if you just want the same size as the provided image)
    • terrain_codes: set which colours are what terrains !!DANGER!! If you change these, you'll have to update the terrain_codes in control.lua as well
  2. Run convert.py
  3. Copy the created lua files (World_large.lua and World_small.lua) into the mod's root folder
  4. Run the game and start a new game