Booktorio deprecated


Deprecated in favor of the built-in Tips and Tricks interface.

Tweaks
3 years ago
0.18 - 1.1
605
Owner:
raiguard
Source:
N/A
Homepage:
https://discord.gg/ECBzaXu
License:
GNU GPLv3
Created:
3 years ago
Latest Version:
1.5.4 (3 years ago)
Factorio version:
0.18 - 1.1
Downloaded by:
605 users

INTRODUCTION

Welcome to Booktorio!
This is a library mod designed to give a in game wiki to all mods that want one but don't want have to go crazy with the challenging Factorio GUI implementations.
If you are an user (not a mod creator/developer) you can read only the section 1, if instead you are a mod developer and you want understand if this mod fit your needs, see the section 2.

1 - USERS GUIDE

If you are using a mod that use this library mod for provide a wiki to users, just simply install it, from the internal Factorio mod installer, or download it from the mod portal and place it in the mod folder of Factorio. Remember that you need at lease Factorio 0.18.13 o greater.

This is the list of know compatible mods:

2 - MODDERS GUIDE

Ok below I will describe how Booktorio works, let's start from the basic;
First, is recommended to add Booktorio in the optional dependencies, for be sure that when the remote calls will be called will already be available.
Booktorio is available to be called only in control phase, this is the available calls:

remote.call("Booktorio", "add_thread", new_thread, not_override)

This call is the basic one to add a thread, the variable new_thread is a table defined as the pseudo-prototype thread(which we will see later). If not_override is false, nil or not specified then the basic action is override the old thread added.

remote.call("Booktorio", "override_thread", new_thread)

This call is similar to add_thread, but will override for sure. This wrapper is more like for have more intelligible code.

Also is recommended to use a form like this for call the remote:

if remote.interfaces["Booktorio"] then
    remote.call("Booktorio", "add_thread", new_thread) 
end

Because will avoid some errors in case that the mod is not present.
The suggested events where this remotes must be called are in on_init and on_configuration_changed.

Also using

remote.call("Booktorio", "remove_thread", thread_name) 

A thread can be forced to be removed.


Now let's see how to implement the wiki, so we must talk about how Booktorio load implement mod section.
For be simple implement a wiki, this mod defined some "pseudo-prototype", like Factorio use in the normal prototype definition is data phases. We have this kind of pseudo-prototype:
- 2.1 Thread
- 2.2 Topic
- 2.3 TopicTitle
- 2.4 TopicSubtitle
- 2.5 TopicText
- 2.6 TopicBlueprint
- 2.7 TopicImage
- 2.8 TopicTable
- 2.9 TopicPlugin

2.1 Thread

This is the main object (a table) must be given to Booktorio in remotes, have the follow properties:
- name :: LocalisedString or string (mandatory)
- localized :: bool (optional)
- topics :: table of Topic (mandatory)
- mod :: string (optional)
- specified_version :: uint8 (optional)

Mandatory values
- name, the name of this thread(mod section), can be localized.
- topics, a set of Topic object.

Optional values
- localized, specify if the property name should not be localized, set this to false if you don't want that the name string will be localized.
- mod, is the name of the mod associated to this thread (can be different from the mod that call the remote to add this thread), is needed if is wanted that the thread will be removed with the mod if disabled in an existing game. This property is not necessary, if not given the thread will be permanent, and if the mod that contain the localized strings is not given simply will leave an unreadable thread.
- specified_version, specify the version of this thread (via one unsigned integer), this can be useful for update the thread, if is called the remote interface "add_thread" with an existing thread, not_override = false or nil, but the specified_version is greater with the stored one, will be overrided anyway.

2.2 Topic

This is a single topic.
- name :: LocalisedString or string (mandatory)
- localized :: bool (optional)
- topic :: table of TopicTitle or TopicText or TopicImage (mandatory)
- align :: string (optional)

Mandatory values
- name, the name of this topic, can be localized, also this string is used in the left list for select the topic.
- topic, is a set of TopicTitle or TopicText or TopicImage, the can be defined all or only some of them in the same topic, only the TopicTitle can be defined one time, and must be positioned as first element of the table, or can be omitted, if the TopicTitle will be defined in positions different from the first will be skipped. Instead, TopicTexts or TopicImages, can be defined in any quantity and order.

Optional values
- localized, specify if the property name should not be localized, set this to false if you don't want that the name string will be localized.
- align, change the align of the topic, can have the follows values: "left", "center", "right".

2.3 TopicTitle

Is the title of the topic, must be the first element of the topic table.
- type :: string (mandatory)
- title :: LocalisedString or string (mandatory)
- localized :: bool (optional)
- style :: string (optional)

Mandatory values
- type, is the type of this element, in this case must be "title".
- title :: is the string of the title, can be localized.

Optional values
- localized, specify if the property title should not be localized, set this to false if you don't want that the name string will be localized.
- style, the name of the style to apply on this element, if not given will be used the standard Booktorio style.

2.4 TopicSubtitle

Show a subtitle, differently from the title, they can be more than one.
- type :: string (mandatory)
- subtitle :: LocalisedString or string (mandatory)
- localized :: bool (optional)
- style :: string (optional)

Mandatory values
- type, is the type of this element, in this case must be "subtitle".
- subtitle, the text of the subtitle, can localized.

Optional values
- localized, specify if the property subtitle should not be localized, set this to false if you don't want that the name string will be localized.
- style, the name of the style to apply on this element, if not given will be used the standard Booktorio style.

2.5 TopicText

Show a text, can be multi-line.
- type :: string (mandatory)
- text :: LocalisedString or string (mandatory)
- localized :: bool (optional)
- style :: string (optional)

Mandatory values
- type, is the type of this element, in this case must be "text".
- text, the string to show, can be multi-line and localized.

Optional values
- localized, specify if the property text should not be localized, set this to false if you don't want that the name string will be localized.
- style, the name of the style to apply on this element, if not given will be used the standard Booktorio style.

2.6 TopicBlueprint

Show a clickable text that players can click it for get a blueprint in the cursor.
- type :: string (mandatory)
- text :: LocalisedString or string (mandatory)
- blueprint :: string (mandatory)
- localized :: bool (optional)
- style :: string (optional)

Mandatory values
- type, is the type of this element, in this case must be "blueprint".
- blueprint, the exported string that define the blueprint.
- text, the string to show, can be multi-line and localized.

Optional values
- localized, specify if the property text should not be localized, set this to false if you don't want that the text string will be localized.
- style, the name of the style to apply on this element, if not given will be used the standard Booktorio style. WARNING with this particular element is recommended to not override the style, if the new one don't have hovered_font_color and clicked_font_color well defined.

2.7 TopicImage

Show a image, must be associated to a SpritePath.
- type :: string (mandatory)
- spritename :: name of SpritePath (mandatory)
- style :: string (optional)

Mandatory values
- type, is the type of this element, in this case must be "image".
- spritename, is the name of the SpritePath that must show this image element.

Optional values
- style, the name of the style to apply on this element, if not given will be used the standard Booktorio style.

2.8 TopicTable

Show a table.
- type :: string (mandatory)
- table :: (lua)table of tables (mandatory)
- style :: string (optional)

Mandatory values
- type, is the type of this element, in this case must be "table".
- table, is the table defined in an human-friendly way:

local table_example =
{
    {"Ingredient 1", "Ingredient 2", {"gui.bk-ex-table-5-product-string"}},
    {"[item=copper-cable]", "[item=iron-plate]", "[item=electronic-circuit]"},
    {"3", "1", "1", "->1.25s"}
}

Each row can have an arbitrary number of elements, the table will automatically autofill the empty cells based on the longest row. In this case use brackets change the localization result.

Optional values
- style, the name of the style to apply on this element, if not given will be used the standard Booktorio style.

2.9 TopicPlugin

Show a plugin, created by a function that must be given to Booktorio via some remote method. One way to implement this is give a file with a function returned, another way is specify a remote to use. Both (functions and remotes) should accept only one argument, a flow gui element, to use like parent(root) add inside of it custom gui elements. Warning! Remember that Booktorio is designed to create wikis, so all interfaces are stateless, don't use plugins to create gui elements that must remain loaded in times, also don't create plugin functions that have problem to run two time in the same savegame/map.
- type :: string (mandatory)
- path :: string (optional)
- remote_name :: string (optional)
- remote_function :: string (optional)
- style :: string (optional)

Mandatory values
- type, is the type of this element, in this case must be "plugin".

Optional values
- path, mandatory if remote_name and remote_function are not given, is a path of a mod file that return one function that add some gui element/s to the flow that the function must accept in the arguments.
- remote_name, mandatory if path is not given, is the name the interface that contain the remote function that add some gui element/s to the flow that the function must accept in the arguments.
- remote_function, mandatory if path is not given, is the spefied function name of the remote inteface that add some gui element/s to the flow that the function must accept in the arguments.
- style, the name of the style to apply on the flow element given to the plugin function, if not given will be used the standard Booktorio style.

All TopicTitle, TopicSubtitle, TopicText, TopicImage, TopicPlugin, support pair definition, for exame this two are equivalent forms:

    {type = "text", text = "gui.bk-ex-description-1"}
    {"text", "gui.bk-ex-description-1"}

Only if have the two main mandatory values defined.


Example

-- Defining a new thread
local new_thread =
{
    name = {"gui.bk-ex-name"},
    specified_version = 0,
    topics =
    {
        {
            name  = {"gui.bk-ex-example-1"},
            topic =
            {   
                -- A title and a text, how you can see the localize string can be defined with or without brackets
                {type = "title", title = {"gui.bk-ex-title-1"}},
                {type = "text", text = "gui.bk-ex-description-1"},
                {type = "text", text = "Instead, this text is not localized", localized = false}
            }
        },
        {
            name  = {"gui.bk-ex-example-2"},
            topic =
            {   
                -- A image example, how you can see the image is specified from a name
                {type = "text", text = "This is an image example:", localized = false},
                {type = "image", spritename = "wikipedia-image-example"}
            }
        }
    }
}

You can test this code using the Booktorio Example mod.

Requests

I accept suggestions for new wiki elements implementations, contact me on discord or open a discussion in the mod portal mod thread.

Next updates

  • Internal wiki documentation.
  • Full color override for descriptions.

This mod is part of mods developed by Krastorio Team