Working with Ren’Py:
- Part 1: Downloading and Configuring
- Part 2: Editing and Creating Characters
- Part 3: Scenes and Showing Images
- Part 4: Menus, Labels, and Jumps
- Part 5: Variables and Conditional Statements
- Part 6: Transitions
- Part 7: Building Distributions
Advanced Ren’Py:
- Part 1: Screen Language
- Part 2: Position Style Properties
- Part 3: Animation and Transformation Language
- Part 4: Text and Button
- Part 5: Bar and VBar
- Part 6: Textbutton and Imagebutton
- Part 7: Input, Key, and Mousearea
Customizing Ren’Py:
- Part 1: Editing options.rpy
- Part 2: Editing gui.rpy
- Part 3: Style Inspector and Overriding Styles
- Part 4: Special Screen Names and Overriding Screens
- Part 5: Replacing Default GUI Images
Ren’Py + Python:
- Part 1: Setting and Using Flags
- Part 2: Python Blocks
- Part 3: User-Defined Displayables
- Part 4: User-Defined Statements
- Part 5: Custom Text Tags
Ren’Py is a engine for creating visual novels. It comes with a suite of tools for taking code and transforming it into programs that can be run on Windows, Mac, Linux, and even, with a little more work, mobile platforms like Android and iOS.
Variables
In programming terminology, a variable is a container for values that may change while code is being run. In Ren’Py, variables often come in the form of “flags”. They are changed as a result of moving through a project, and frequently, but not always, either one value or another.
In Python, and many other programming languages, the more abstract idea of a “flag” being raised or lowed can be represented as a Boolean value: either it is true or it is false, but not both at the same time.
Open the “script.rpy” file for “The Question”.
Lines 5-10 contains the first use of a variable. The variable book is set to the value of False.
Note: In Python, Boolean values, true or false, are represented as capitalized words. Either True or False.
Line 8 establishes (initializes) the variable book so that it can be used later in the project. By creating a variable early in a project, it can be used multiple times without worrying if it exists.
In the label book, line 139 uses the variable book again. In this case, instead of creating it as happened at line 8, its value is changed.
Note: To use Python code in Ren’Py, the statement must start with the dollar sign ($). This lets Ren’Py know that it should not run it directly, but treat it as Python instead of the dialect that Ren’Py uses.
Through either creating or changing its value, the value of the variable book can be manipulated throughout the project.
Conditional Statements
In programming terminology, a conditional statement is run based on if a condition, the result of comparing some values, is true or not.
A conditional statement appears on line 175 in “The Question”. It starts with the keyword if and then checks if what follows it is True or not. If the value is True, that is, if the variable book is set to the value True, some code will be run. Otherwise, it will not.
If the variable is set to the value True when the project reaches line 175, then line 177 will be run. Otherwise, it will not.
In “The Question”, the variable book is first set on line 8 to the value False. Then, if the player reaches the label book, it is changed to the value of True on line 139. Once the player reaches line 175, a conditional statement checks if the variable book is True or False. If it is True, line 177 is run. If it is False, line 177 is skipped.