{"id":25319888,"url":"https://github.com/scrivener07/fo4_atc","last_synced_at":"2026-02-14T12:34:19.396Z","repository":{"id":82367208,"uuid":"140366752","full_name":"Scrivener07/FO4_ATC","owner":"Scrivener07","description":"Build and expand empires across the land like never before!","archived":false,"fork":false,"pushed_at":"2018-11-07T08:39:48.000Z","size":21,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-04T09:27:15.002Z","etag":null,"topics":["fallout-4","papyrus","scaleform"],"latest_commit_sha":null,"homepage":"https://www.nexusmods.com/fallout4/mods/32170","language":"ActionScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Scrivener07.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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}},"created_at":"2018-07-10T02:33:44.000Z","updated_at":"2023-01-31T17:02:12.000Z","dependencies_parsed_at":null,"dependency_job_id":"69bee30f-29c2-43c8-a353-bce0baf3d3b9","html_url":"https://github.com/Scrivener07/FO4_ATC","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Scrivener07/FO4_ATC","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Scrivener07%2FFO4_ATC","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Scrivener07%2FFO4_ATC/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Scrivener07%2FFO4_ATC/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Scrivener07%2FFO4_ATC/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Scrivener07","download_url":"https://codeload.github.com/Scrivener07/FO4_ATC/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Scrivener07%2FFO4_ATC/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29443477,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T10:51:12.367Z","status":"ssl_error","status_checked_at":"2026-02-14T10:50:52.088Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["fallout-4","papyrus","scaleform"],"created_at":"2025-02-13T20:56:22.199Z","updated_at":"2026-02-14T12:34:19.390Z","avatar_url":"https://github.com/Scrivener07.png","language":"ActionScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Annex the Commonwealth, contributions for `v0.4.0.07.11.2018`\nBuild and expand empires across the land like never before!\n\n[Public Release](https://www.nexusmods.com/fallout4/mods/32170)\n\n## Compatibility\nThis mod does not require a new game, has no external requirements and, has no quest requirements.\n\n* **Unofficial Fallout 4 Patch:** `v2.0.0` and lower broke the workshop script API and is the only direct incompatibility with this mod. This was fixed in `v2.0.1` so, either do not use UFO4P or use `v2.0.1` or later.\n* **Fallout 4 Script Extender:** This mod does not require the F4SE but has some enhanced features if it is installed.\n* **Sim Settlements \u0026 Rise of the Commonwealth:** This mod does not require these mods but has some enhanced features.\n* **Otherwise:** This mod is not incompatible with any other mod. That being said, it may be redundant with certain other mods.\n\n# Prototype\nThe goal is to render a settlement's borders on the map menu in a way that considers it's current sub-divisions.\n\nThe \"main\" border along settlements have two separate but individually contiguous sections. The way the actual marker nodes work is they are linked in a circle around a sub-division with a specific keyword for that sub-division. So multiple sub-division borders may share source nodes. Each border enabler will house the points for it's [x] sections, each sub-division will have [y] border enablers, each settlement will have [z] sub-divisions.\n\nInstead of detecting and parsing that in the game, the final data needed to pass it to Scaleform will be generated ahead of time. The UI has to be able to handle multiple sets of points to use for drawing the borders. There should be no issues with storing multiple individual arrays for the points if needed.\n\nWhen drawing a line from one point to the next, ordering will be handled inherently by the array index of any given point. For example, the point at index `0` will draw a line to the point at index `1`, and so on. The last `Point` in the array will have the same `Point` as the first to ensure the region is rendered as a \"closed loop\".\n\n**Steps**\n* Setup plumbing for the project, papyrus, and scaleform.\n* Create a standalone ATC map menu that may be opened and closed freely.\n* * Create an AS3 texture loader to display the vanilla map texture on screen.\n* * Add a very simple draw test for primitives in AS3. How about 4 `Points` to draw a square.\n* Create some mock `Point` data in Papyrus that loosely represents sub-division borders.\n* Add interoperation between AS3 and Papyrus scripts.\n* * Pass `Point` data array to ATC map menu.\n* Add rendering for the papyrus point data to display sub-division borders in AS3.\n\n\n## Specification\nThis is a mockup of the potential point data to render.\n```\nPoint\n{\n    float X\n    float Y\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscrivener07%2Ffo4_atc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscrivener07%2Ffo4_atc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscrivener07%2Ffo4_atc/lists"}