- 15:16, 4 April 2025 Known issues/2.0.16 (hist | edit) [3,992 bytes] Gelthor (talk | contribs) (Initial draft)
- 13:04, 28 March 2025 Custom level creation/Simplex (hist | edit) [301 bytes] Gelthor (talk | contribs) (Initial stub)
- 10:16, 19 February 2025 Alpha Branch/Word width (hist | edit) [3,328 bytes] Altrag (talk | contribs) (Created page with "Turing Complete allows for components and wires of any size from 1 through 64 bits, primarily for the sake of convenience (eg: placing a single 64-bit word <code>AND</code> rather than 64 individual 1-bit <code>AND</code> gates). In prior iterations of the game, there were individual components with fixed 1, 8, 16, 32 or 64 bit widths. In the modern version however, all but the 1-bit components have been combined into a single set of "word" components with configurable...")
- 06:30, 19 February 2025 Alpha Branch/Components/Switch (hist | edit) [1,143 bytes] Altrag (talk | contribs) (Created page with "{{Breadcrumbs|Alpha Branch|Components}} {{Early-access-version|0|1346}} == Bit Switch == {{Infobox component | image = Bit_Component_switch.png | type = bit | gate-cost = 2 | delay-cost = 1 | prerequisite = Always On }} The switch is a way to pass the state of the input bit to the output of the switch, but only when the switch is in the enabled {{On}} state. The {{Off}} state prevents the input bit from being passed through to the output. {| {{Tru...") originally created as "Alpha Branch/Component/Switch"
- 21:32, 17 February 2025 Alpha Branch/Components/Constants (hist | edit) [1,157 bytes] Altrag (talk | contribs) (Created page with "== ON == {{Infobox component | image = Bit_Component_constant_on.png | type = bit | gate-cost = 0 | delay-cost = 0 | prerequisite = Always On }} This is a single bit representation of the {{On}} state, or '''1''' in logical terms. This is useful when you want to make sure you have a {{On}} input to another component. == OFF == {{Infobox component | image = Bit_Component_constant_off.png | type = bit | gate-cost = 0 | delay-cost...") originally created as "Alpha Branch/Component/Constants"
- 07:57, 7 February 2025 Alpha Branch/Components/OFF (hist | edit) [512 bytes] Altrag (talk | contribs) (Created page with "{{Infobox component | image = Bit_Component_constant_off.png | type = bit | gate-cost = 0 | delay-cost = 0 | prerequisite = Always On }} This is a single bit representation of the {{Off}} state, or '''0''' in logical terms. This is useful for times when you want to make sure you have a {{Off}} input to another component or want to document an intended {{Off}} signal. However, the input pins of most components default to {{Off}} when not connected to...") originally created as "Alpha Branch/Component/OFF"
- 07:54, 7 February 2025 Alpha Branch/Components/ON (hist | edit) [377 bytes] Altrag (talk | contribs) (Created page with "{{Infobox component | image = Bit_Component_constant_on.png | type = bit | gate-cost = 0 | delay-cost = 0 | prerequisite = Always On }} This is a single bit representation of the {{On}} state, or '''1''' in logical terms. This is useful for times when you want to make sure you have a {{On}} input to another component.") originally created as "Alpha Branch/Component/ON"
- 00:49, 20 January 2025 Custom level creation/test.si (hist | edit) [2,510 bytes] Gelthor (talk | contribs) (Initial stub)
- 22:57, 19 January 2025 Custom level creation/meta.txt (hist | edit) [3,478 bytes] Gelthor (talk | contribs) (Initial draft)
- 10:42, 15 January 2025 Spec.isa (hist | edit) [26,041 bytes] Altrag (talk | contribs) (Created page with "{{Breadcrumbs|Alpha Branch}} The ISA ("Instruction Set Architecture") specification is the language used to define assembly instructions in Turing Complete. ISA specifications are stored alongside schematics in the player's save folder, with the name <code>spec.isa</code>. {{note|type=info|Stuffe has released a utility to parse, compile, decompile and perform other operations on ISA specifications here: https://github.com/Stuffe/isa_spec.}} An ISA specification file co...")
- 00:42, 15 January 2025 Custom level creation/ui.txt (hist | edit) [3,378 bytes] Altrag (talk | contribs) (Created page with "{{Breadcrumbs|Alpha Branch|Custom level creation}} The <code>ui.txt</code> is used to define text and image metadata used by the bottom flyout panel, and can be manipulated from within the <code>test.si</code> test code. It has a relatively simple structure in comparison to the other files used for custom level creation. Each entry is a single line enclosed in square brackets (<code>[]</code>). There are currently only two valid entry...")
- 23:26, 14 January 2025 Custom level creation/circuit.data (hist | edit) [2,174 bytes] Altrag (talk | contribs) (Created page with "{{Breadcrumbs|Alpha Branch|Custom level creation}} The <code>circuit.data</code> file contains the default layout of the level. It is the same file format as the <code>circuit.data</code> associated with player schematics, and is created and modified in-game in much the same way as regular play. The two biggest differences are that we want to allow and utilize indelible (red) components to pre-defined required components (currently only the various styles of input and...")
- 06:26, 14 January 2025 Alpha Branch/Components (hist | edit) [6,160 bytes] Altrag (talk | contribs) (Created page with "A list of components found in the game, updated for the alpha branch. * {{Component|Wire||alpha}} == Bit components == * {{Component|ON|Constant ON}} * {{Component|OFF|Constant OFF}} * {{Component|Switch||alpha}} * {{Component|ADD|Full adder|alpha}} * {{Component|1-bit decoder||alpha}} * {{Component|2-bit decoder||alpha}} * {{Component|3-bit decoder||alpha}} * {{Component|Register||alpha}} * {{Component|Delay line||alpha}} === Logical operations === * {{Component|NOT||...")
- 05:14, 14 January 2025 The game console (hist | edit) [3,243 bytes] Altrag (talk | contribs) (Created page with "The game console allows you to modify the game experience in various ways. It is primarily useful for (and intended for) development and debugging purposes. == Accessing the console == To access the console, open the main menu by clicking {{Hamburger}} in the upper left corner of the game window or by pressing <code>Escape</code>, and then press <code>q</code>. {{note|type=info|Some commands operate on a selected component. In these cases you will have to click {{Hamb...")
- 02:59, 14 January 2025 Custom level creation/Adding your level to the map (hist | edit) [2,959 bytes] Altrag (talk | contribs) (Created page with " {{Breadcrumbs|Alpha Branch|Custom level creation}} At any time after your level directory is created, open up the game console and enter the command <code>dev_mode on</code>. This will enable the component menu on the level map, as well as enabling all available components including those normally hidden during gameplay. == Adding the component to the map == For our current purposes, we want the component called <code>Level component</code>: Fil...")
- 02:25, 14 January 2025 Custom level creation/Getting started (hist | edit) [3,078 bytes] Altrag (talk | contribs) (Created page with "{{Breadcrumbs|Alpha Branch|Custom level creation}} == Preparation == # Use your favorite <code>git</code> tool to fork the main <code>tc_campaign</code> repository from https://github.com/Stuffe/tc_campaign. # Make sure the game is closed and that Steam has completed it's cloud sync (if enabled). # Navigate to your game installation directory in your OS' file system (eg: Explorer in Windows, Finder in MacOS). #* In Steam, you can right-click Turing Complete in your libra...")
- 23:34, 13 January 2025 Custom level creation (hist | edit) [734 bytes] Altrag (talk | contribs) (Created page with "WIP")
- 22:33, 13 January 2025 Backing up your save directory (hist | edit) [2,765 bytes] Altrag (talk | contribs) (Created page with "Your game's save directory is very self-contained. Backing it up is as simple as making a copy! To find your save directory, open the main menu (☰) and select Options. You will see a text box displaying your save location (Windows example): frameless|none|alt=Save location screenshot Copy the location and navigate to it in your OS' file system (eg: Explorer in Windows, Finder in MacOS). You can now copy the entire direct...")
- 21:12, 13 January 2025 Alpha Branch (hist | edit) [1,413 bytes] Altrag (talk | contribs) (Initial intro text, just saving early to get a handle on what I'm doing) originally created as "Alpha Branch Wiki"
- 07:05, 14 December 2024 Save breaker changes (hist | edit) [8,853 bytes] Gelthor (talk | contribs) (Initial draft)