{"id":15016195,"url":"https://github.com/mightypirates/tis-3d","last_synced_at":"2025-10-04T09:38:37.247Z","repository":{"id":2757886,"uuid":"47212500","full_name":"MightyPirates/TIS-3D","owner":"MightyPirates","description":"TIS-100 inspired low-tech computing in Minecraft.","archived":false,"fork":false,"pushed_at":"2024-04-19T10:22:44.000Z","size":4246,"stargazers_count":119,"open_issues_count":22,"forks_count":37,"subscribers_count":12,"default_branch":"1.20.4","last_synced_at":"2025-09-09T06:37:28.695Z","etag":null,"topics":["fabric","forge","minecraft","mod","neoforge"],"latest_commit_sha":null,"homepage":"https://www.curseforge.com/minecraft/mc-mods/tis-3d","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MightyPirates.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2015-12-01T19:34:29.000Z","updated_at":"2025-08-05T03:22:05.000Z","dependencies_parsed_at":"2023-11-16T00:36:51.950Z","dependency_job_id":"4ac6c578-48aa-4f11-bbf8-510334462590","html_url":"https://github.com/MightyPirates/TIS-3D","commit_stats":null,"previous_names":[],"tags_count":22,"template":false,"template_full_name":null,"purl":"pkg:github/MightyPirates/TIS-3D","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MightyPirates%2FTIS-3D","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MightyPirates%2FTIS-3D/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MightyPirates%2FTIS-3D/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MightyPirates%2FTIS-3D/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MightyPirates","download_url":"https://codeload.github.com/MightyPirates/TIS-3D/tar.gz/refs/heads/1.20.4","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MightyPirates%2FTIS-3D/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278295839,"owners_count":25963425,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-04T02:00:05.491Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fabric","forge","minecraft","mod","neoforge"],"created_at":"2024-09-24T19:48:32.342Z","updated_at":"2025-10-04T09:38:37.208Z","avatar_url":"https://github.com/MightyPirates.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TIS-3D\nTIS-3D is a Minecraft mod inspired by the brilliant game TIS-100 (go buy it if you don't own it yet). It takes the concept of minimal, programmable nodes and expands it to the third dimension, allowing you to build multiblock computers from different modules. Basic modules are the executable module, which can be programmed in very basic ASM (as introduced by TIS-100), and the redstone module, which allows reading and writing redstone signals, enabling basic interaction with the world.\n\n## License / Use in Modpacks\nThis mod is [licensed under the **MIT license**](LICENSE). All **assets are public domain**, unless otherwise stated; all are free to be distributed as long as the license / source credits are kept. This means you can use this mod in any mod pack **as you please**. I'd be happy to hear about you using it, though, just out of curiosity.\n\n## Extending\nIn general, please refer to [the API](src/main/java/li/cil/tis3d/api), everything you need to know should be explained in the Javadoc of the API classes and interfaces.\n\nThere are two main ways of extending TIS-3D: by adding custom modules, and by adding serial protocols for the serial port module. Create a custom module if it has its own, self-contained functionality, such as the display module for example.\n\nWhen adding integration with another mod, I strongly ask that you first consider whether this can already be achieved via redstone. If it can, even if it's slightly more complicated, stop right there. If it can't, there are the aforementioned two options, module or protocol.\n\nThe general rule of thumb should be this:\n- if you're adding integration for a general *concept*, usually support for some interface implemented by numerous blocks, such as Minecraft's `IInventory`, use a *module*. \n- if you're adding integration for one specific *block*, such as Minecraft's command block, use a *protocol* so that the block can be communicated with using the serial port module.\n\nThe rationale here being that in the former case the serial protocol is explicitly defined by the *module*, whereas in the latter case the serial protocol is explicitly defined by the *block*. Again, if at all possible, prefer avoiding either of the two and use redstone (and comparators) instead.\n\n### Gradle\nTo add a dependency to TIS-3D for use in your mod, add the following to your `build.gradle`:\n\n```groovy\nrepositories {\n    exclusiveContent {\n        forRepository { maven(\"https://cursemaven.com\") }\n        filter { includeGroup(\"curse.maven\") }\n    }\n}\ndependencies {\n    // Forge via ForgeGradle\n    implementation(fg.deobf(\"curse.maven:tis3d-238603:4714037\"))\n    // Fabric via Loom\n    modImplementation(\"curse.maven:tis3d-238603:4714055\")\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmightypirates%2Ftis-3d","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmightypirates%2Ftis-3d","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmightypirates%2Ftis-3d/lists"}