This is where everything else about the Alisa engine design goes if it doesn't fit into the Globe or Tactical sections.
Time always passes in globe mode, at a minimum of 1 second at a time, no matter what screen you are in, unless you're playing single player and pause (which will also come with optional boss key features), or have a save/load screen open. In multiplayer mode, only the person who is hosting the game can pause it, or if that person gives other people permission to do so.
Messages may occur anytime in the globe mode when the game isn't paused. Messages are classified into tree-like categoriez, and players can set boxes to open or not for specific messages or categories of messages.
To the engine, a human player and a computer AI are not much different. The same internal data given to the interface that the user sees is the same data available to the AI. In fact, the API used to communicate between core+interface, and core+AI are the same. The computer player will try to simulate a real player and be intelligent. The computer AI is part of game data.
The research web, as opposed to the research tree used in X-Com, is being used in this engine. It's a more intuitive way of researching, and closer to reality. Unlike X-Com which had a strict "tree" you had to follow to obtain any info, the alisa engine uses a web that lets you research things the way you think it should be done. You can research things repeatedly, go back to a topic after you've obtained some new information or device and get more out of it, and even get an opinion from your researchers on the progress of things.
The research web consists of nodes and subnodes. Each node defines some possible research. Each subnode defines a specific thing of the research. The node is essentially the research topic, and subnodes are the things you get for researching. The research is defined by setting rules and scripts. Rules are precompiled for use in nodes(just add water), while scripts are scripts. A node simply has a name and a list of rules, scripts, and subnodes. Subnodes just have an internal name, rules, and scripts.
There are two general categories of rules: regular and prerequisite. Here's a draft of the prerequisite rules:
You get this node automatically if you're on this side(s) when the game has a difficulty level of x or lower/higher.
You need x% of these nodes and subnodes researched.
You need all these nodes.
You need to research this node x to y times.
You cannot have these nodes.
You cannot have more then x% of these nodes.
If you have these nodes, the rule x is overridden by rule y, if any.
Here's the draft of the regular rules:
Show cutscene x at the completion of this node for y side.
You get this tech. after getting this node.
These rules are to be checked only when the node is being researched.
You get this node (but not subnodes) upon getting this (sub)node.
Essentially, nodes are the research topic, and subnodes are things you can get out of it.
Scripting generally won't be needed, so no decision will be made on it until we need it. If no one needs it, I'll just trim this out of the design doc.
There are APIs for the globe and tactical allowing the program supplied by game data to start a game. The globe uses the same API supplied to the game selection program to run the tactical engine. Someday that API info will be here... actually, I'm going to split it off into it's own section once some decisions are made. Consider this part a todo note.