diff --git a/.gitignore b/.gitignore index cf7abae3..60c92040 100755 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,5 @@ node_modules site/.vitepress/dist site/.vitepress/cache site/garden/ +site/public/garden/ garden-output/ \ No newline at end of file diff --git a/.gitmodules b/.gitmodules index caf6273c..f2649e28 100644 --- a/.gitmodules +++ b/.gitmodules @@ -13,9 +13,6 @@ [submodule "the_ascension_tree"] path = site/public/the_ascension_tree url = https://github.com/thepaperpilot/the_ascension_tree -[submodule "guide-to-incrementals"] - path = site/guide-to-incrementals - url = https://code.incremental.social/thepaperpilot/Guide-to-Incrementals [submodule "dream"] path = site/public/dream url = https://github.com/thepaperpilot/Dream-Hero diff --git a/CNAME b/CNAME deleted file mode 100644 index 580766dc..00000000 --- a/CNAME +++ /dev/null @@ -1 +0,0 @@ -www.thepaperpilot.org \ No newline at end of file diff --git a/Garden b/Garden index 87c5ec9f..6fc782a9 160000 --- a/Garden +++ b/Garden @@ -1 +1 @@ -Subproject commit 87c5ec9f00068af2767b9d42760e78314ca666e3 +Subproject commit 6fc782a95e686cd4426c2d1ec4f6917e3026dc47 diff --git a/build_garden.js b/build_garden.js index f6ba2a33..9d68a3d3 100644 --- a/build_garden.js +++ b/build_garden.js @@ -19,14 +19,22 @@ function toSlug(string) { } (async () => { - const blockRefs = {}; + const blockRefs = {}; + const blockLinks = {}; + const indices = []; await walk("./garden-output/logseq-pages", (dir, file, resolve) => { const filePath = path.resolve(dir, file); const data = fs.readFileSync(filePath).toString(); - for (const match of data.matchAll(/- (.*)\n\s*id:: (.*)/gm)) { + const slug = path.basename(file, ".md").replaceAll('___', '/').replaceAll(/%3F/gi, '').replace('what-is-content-', 'what-is-content'); + for (const match of data.matchAll(/(.*)\n\s*id:: (.*)/gm)) { const text = match[1]; const id = match[2]; - blockRefs[id] = `[${text}](/garden/${path.basename(file, ".md")}/index.md#${id})`; + const link = `/garden/${slug}/index.md#${id}`; + blockLinks[id] = link; + blockRefs[id] = `[${text}](${link})`; + } + if (data.match(/index: "true"/g)) { + indices.push(slug); } resolve(); }); @@ -46,15 +54,15 @@ function toSlug(string) { } const name = path.basename(file, ".md").replaceAll('___', '/'); - const slug = toSlug(name); + const slug = toSlug(name).replaceAll(/%3F/gi, ''); const link = `/garden/${slug}/index.md`; - pageLinks[name] = link; + pageLinks[name.replaceAll(/%3F/gi, '?')] = link; - for (match of data.matchAll(/alias:: (.*)/g)) { + for (const match of data.matchAll(/alias:: (.*)/g)) { match[1].split(", ").forEach(page => (pageLinks[page] = link)); } - for (match of data.matchAll(/tags:: (.*)/g)) { + for (const match of data.matchAll(/tags:: (.*)/g)) { match[1].split(", ").forEach(page => { const pageSlug = toSlug(page); taggedBy[pageSlug] = [...(taggedBy[pageSlug] ?? []), name]; @@ -62,9 +70,11 @@ function toSlug(string) { }); } - for (match of data.matchAll(/\[\[([^\[\]]*)\]\]/g)) { - const pageSlug = toSlug(match[1]); - referencedBy[pageSlug] = [...(referencedBy[pageSlug] ?? []), name]; + if (!indices.includes(slug)) { + for (const match of data.matchAll(/\[\[([^\[\]]*)\]\]/g)) { + const pageSlug = toSlug(match[1]); + referencedBy[pageSlug] = [...(referencedBy[pageSlug] ?? []), name]; + } } resolve(); @@ -97,6 +107,18 @@ function toSlug(string) { data = data.replaceAll( /\[\[([^\[\]]*)\]\]/g, (_, page) => `[${page}](${pageLinks[page]})`); + // Fix internal asset links + data = data.replaceAll( + /\(\/logseq-assets\/([^\)]*)\)/g, + '(/garden/$1)'); + // Fix logseq block links + data = data.replaceAll( + /logseq:\/\/graph\/Garden\?block-id=([^\)]*)/g, + (_, block) => `${blockLinks[block]})`); + // Fix logseq page links + data = data.replaceAll( + /logseq:\/\/graph\/Garden\?page=([^\)]*)/g, + (_, page) => `${pageLinks[page.replaceAll('%20', ' ')]})`); // Add tags and references const title = path.basename(file, ".md"); if (title in tagged) { @@ -116,6 +138,7 @@ function toSlug(string) { `---\n\n> Referenced by: ${referencedBy[title].map(tag => `[${tag}](${pageLinks[tag]})`).join(", ")}\n\n`); } // Add title to the top + data = data.replaceAll('___', '/'); data = data.replaceAll( /---\n\n/gm, `---\n# ${data.match(/title: "(.+)"/)[1]}\n\n`); @@ -127,18 +150,38 @@ function toSlug(string) { }); fs.mkdirSync("./site/garden"); + fs.mkdirSync("./site/public/garden"); // Move everything from ./garden-output/logseq-pages into ./site/garden await walk("./garden-output/logseq-pages", (dir, file, resolve) => { - const folder = path.resolve("./site/garden", path.basename(file, ".md")); + const folder = path.resolve("./site/garden", ...path.basename(file, ".md").split('___')); fs.mkdirSync(folder); fs.copyFileSync(path.resolve(dir, file), path.resolve(folder, "index.md")); resolve(); }); - // Move everything from ./garden-output/logseq-assets into ./site/public + // Move everything from ./garden-output/logseq-assets into ./site/public/garden await walk("./garden-output/logseq-assets", (dir, file, resolve) => { - fs.copyFileSync(path.resolve(dir, file), path.resolve("./site/public", path.basename(file))); + fs.copyFileSync(path.resolve(dir, file), path.resolve("./site/public/garden", ...path.basename(file).split('___'))); resolve(); }); + + // Copy the guide-to-incrementals pages to the old locations so links don't break + fs.mkdirSync('./site/guide-to-incrementals'); + fs.copyFileSync('./site/garden/guide-to-incrementals/index.md', './site/guide-to-incrementals/index.md'); + fs.mkdirSync('./site/guide-to-incrementals/design'); + fs.mkdirSync('./site/guide-to-incrementals/design/criticism'); + fs.copyFileSync('./site/garden/guide-to-incrementals/navigating-criticism/index.md', './site/guide-to-incrementals/design/criticism/index.md'); + fs.mkdirSync('./site/guide-to-incrementals/ludology'); + fs.mkdirSync('./site/guide-to-incrementals/ludology/appeal-developers'); + fs.copyFileSync('./site/garden/guide-to-incrementals/appeal-to-developers/index.md', './site/guide-to-incrementals/ludology/appeal-developers/index.md'); + fs.mkdirSync('./site/guide-to-incrementals/ludology/appeal-gamers'); + fs.copyFileSync('./site/garden/guide-to-incrementals/appeal-to-players/index.md', './site/guide-to-incrementals/ludology/appeal-gamers/index.md'); + fs.mkdirSync('./site/guide-to-incrementals/ludology/content'); + // For what is content, also remove the - at the end + fs.cpSync('./site/garden/guide-to-incrementals/what-is-content-', './site/garden/guide-to-incrementals/what-is-content', { recursive: true }); + fs.copyFileSync('./site/garden/guide-to-incrementals/what-is-content-/index.md', './site/guide-to-incrementals/ludology/content/index.md'); + fs.rmSync('./site/garden/guide-to-incrementals/what-is-content-', { recursive: true }); + fs.mkdirSync('./site/guide-to-incrementals/ludology/definition'); + fs.copyFileSync('./site/garden/guide-to-incrementals/defining-the-genre/index.md', './site/guide-to-incrementals/ludology/definition/index.md'); })(); diff --git a/package.json b/package.json index d561ecd5..e65a2cc7 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "scripts": { "serve": "vitepress serve site", "dev": "vitepress dev site", - "build": "rm -rf ./site/garden && rm -rf ./garden-output && yarn run logseq-export && node build_garden.js && vitepress build site", + "build": "rm -rf ./site/guide-to-incrementals && rm -rf ./site/public/garden && rm -rf ./site/garden && rm -rf ./garden-output && yarn run logseq-export && node build_garden.js && vitepress build site", "logseq-export": "run-script-os", "logseq-export:win32": "logseq-export/logseq-export.exe --logseqFolder ./Garden --outputFolder ./garden-output", "logseq-export:linux": "chmod +x logseq-export/logseq-export && logseq-export/logseq-export --logseqFolder ./Garden --outputFolder ./garden-output" diff --git a/site/.vitepress/config.ts b/site/.vitepress/config.ts index b2290312..e7d9b24d 100644 --- a/site/.vitepress/config.ts +++ b/site/.vitepress/config.ts @@ -4,7 +4,7 @@ import { defineConfig } from "vitepress"; module.exports = { lang: "en-US", title: 'The Paper Pilot', - description: 'The Paper Pilot portfolio site', + description: 'The Paper Pilot Personal Website', vite: { plugins: [ SearchPlugin({ @@ -16,11 +16,13 @@ module.exports = { }) ] }, + sitemap: { + hostname: 'https://thepaperpilot.org' + }, head: [ ['link', { rel: 'preconnect', href: 'https://fonts.googleapis.com' }], ['link', { rel: 'stylesheet', href: 'https://fonts.googleapis.com/css2?family=Pacifico&family=Roboto+Mono:ital,wght@0,400;0,600;1,400&display=swap' }], ['link', { rel: 'manifest', href: '/site.webmanifest' }], - ['script', { defer: true, 'data-domain': 'thepaperpilot.org', src: 'https://plausible.io/js/plausible.js' }], ['meta', { name: 'og:description', content: 'The Paper Pilot portfolio site' }] ], lastUpdated: true, @@ -28,69 +30,161 @@ module.exports = { themeConfig: { outline: 'deep', nav: [ - { text: "Guide to Incrementals", link: "/guide-to-incrementals/", activeMatch: "^/guide-to-incrementals" }, - { text: "Projects", link: "/projects/", activeMatch: "^/projects" }, - { text: "Profectus", link: "https://moddingtree.com" } + { text: "Profectus", link: "https://moddingtree.com" }, + { text: "Incremental Social", link: "https://incremental.social" } ], socialLinks: [ { icon: "github", link: "https://github.com/thepaperpilot" }, { icon: "linkedin", link: "https://www.linkedin.com/pub/anthony-lawn/a9/a98/2" }, - { icon: "discord", link: "https://discord.gg/yJ4fjnjU54" }, - { icon: { svg: ` - -` }, link: "https://mastodon.gamedev.place/@thepaperpilot" } + { icon: { svg: ` + + + + + + ` }, link: "https://matrix.to/#/@thepaperpilot:incremental.social" }, + { icon: { svg: ` + + + + + + + + + + + + + + + + + + + +` }, link: "https://incremental.social/u/thepaperpilot" } ], - sidebar: { - "guide-to-incrementals": [ - { - text: "Ludology", - collapsible: true, - items: [ - { text: "Defining the Genre", link: "/guide-to-incrementals/ludology/definition" }, - { text: "Appeal to Players", link: "/guide-to-incrementals/ludology/appeal-gamers" }, - { text: "Appeal to Developers", link: "/guide-to-incrementals/ludology/appeal-developers" }, - { text: "What is Content?", link: "/guide-to-incrementals/ludology/content" } - ] - }, - { - text: "Development", - collapsible: true, - items: [ - { text: "Navigating Criticism", link: "/guide-to-incrementals/design/criticism"} - ] - } - ], - "projects": [ - { - text: "Games", - items: [ - { text: "Planar Pioneers", link: "https://www.thepaperpilot.org/planar" }, - { text: "Advent Incremental", link: "https://www.thepaperpilot.org/advent" }, - { text: "Game Dev Tree", link: "https://www.thepaperpilot.org/gamedevtree/" }, - { text: "Dice Armor", link: "/projects/dice/" }, - { text: "Capture the Citadel", link: "/projects/citadel/"}, - { text: "More on Itch", link: "https://thepaperpilot.itch.io/" } - ] - }, - { - text: "Non-Games", - items: [ - { text: "Profectus", link: "https://moddingtree.com" }, - { text: "Incremental Social", link: "https://incremental.social" }, - { text: "V-ecs", link: "/projects/vecs/" }, - { text: "OptiSpeech", link: "/projects/optispeech/" }, - { text: "Babble Buds", link: "/projects/babble/" } - ] - } - ], - "garden": [ - { - text: "Garden", - items: [ - { text: "The Small Web", link: "https://www.thepaperpilot.org/garden/the-small-web" } - ] - } - ] - } + sidebar: [ + { text: "My Projects", link: "https://www.thepaperpilot.org/garden/my-projects" }, + { text: "Guide to Incrementals", link: "https://www.thepaperpilot.org/garden/guide-to-incrementals" }, + { text: "The Small Web", link: "https://www.thepaperpilot.org/garden/the-small-web" } + ] } } diff --git a/site/projects/babble/babblemmscreenshot.png b/site/projects/babble/babblemmscreenshot.png deleted file mode 100644 index 04f0f12e..00000000 Binary files a/site/projects/babble/babblemmscreenshot.png and /dev/null differ diff --git a/site/projects/babble/index.md b/site/projects/babble/index.md deleted file mode 100644 index f71ee87b..00000000 --- a/site/projects/babble/index.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -title: Babble Buds ---- -# Babble Buds - -[Babble Buds Homepage](http://babblebuds.xyz/) - -Source Code: -- [Babble Buds](https://github.com/thepaperpilot/Babble-Buds) -- [Babble Movie Maker](https://github.com/thepaperpilot/BabbleMovieMaker) -- [babble.js](https://github.com/thepaperpilot/babble.js) -- [babble.cs](https://github.com/thepaperpilot/babble.cs) - -Babble buds is a free, open-source virtual puppet show software. It is heavily based on the non-public software called "Puppet Pals", used in URealms Live. The software is written in javascript using React, a rendering library called PIXI.js, and electron. - -Users can create puppets with different faces for different emotions, and then use the puppet on a stage where you and other users can each make your respective puppets move, change emotions, and "babble" at each other. The stage has a green screen feature and can be popped out, which gives the users tons of possibilities in terms of using the program for a role-playing live stream, faux video chatting with friends, game development, or whatever else you want! - -Users can connect to the public server and create private rooms so that they and their friends can see each other's puppets and use the software however they please. For the security conscious, you can also use the server's source code to self-host your private server. - -![Babble Buds Screenshot](./screenshot.png) - -## Engine - -The engine originally made to make the Babble Buds program was separated into a separate engine called `babble.js`, so that projects created in Babble Buds can be used in other projects. For example, a game can create puppets in Babble Buds and then use them for cutscenes or player agency inside of the game. Additionally, it has been ported to C# (called `babble.cs`) for use with Unity, for the same kinds of purposes. You can check out [Tower Offense](https://www.thepaperpilot.itch.io/tower-offense) for a pixi.js game using Babble Buds puppets for the cutscenes, or [Dice Armor](../dice/) for a unity game using Babble Buds puppets for the cutscenes. - -## Babble Movie Maker - -Babble Movie Maker is a cutscene editor for Babble Buds puppets. You open a babble buds project in it, and you can add actors to a stage and have them move and change expressions, etc., on a timeline. You can then use the cutscene in a game using `babble.js` or `babble.cs`, or export the cutscene into a video file. There is even support for defining custom commands with custom fields, so that if you've expanded upon the default actions provided in `babble.js` or `babble.cs`, you can still use Movie Maker to create your cutscenes. - -![Babble MM Screenshot](./babblemmscreenshot.png) diff --git a/site/projects/babble/screenshot.png b/site/projects/babble/screenshot.png deleted file mode 100644 index 5f7d3cf7..00000000 Binary files a/site/projects/babble/screenshot.png and /dev/null differ diff --git a/site/projects/citadel/index.md b/site/projects/citadel/index.md deleted file mode 100644 index 3fc7cf72..00000000 --- a/site/projects/citadel/index.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: Capture the Citadel ---- -# Capture the Citadel - -A 3D VR re-envisioning of a Slay the Spire-style game by Anthony Lawn and Grant Barbee for their VR class in college's final project. - -For more details, visit [Grant's page on the game](https://grantcbarbee.github.io/conquer-the-citadel.html). - -![Screenshot](./screenshot.png) diff --git a/site/projects/citadel/screenshot.png b/site/projects/citadel/screenshot.png deleted file mode 100644 index bee7103a..00000000 Binary files a/site/projects/citadel/screenshot.png and /dev/null differ diff --git a/site/projects/dice/da1.png b/site/projects/dice/da1.png deleted file mode 100644 index 3426171c..00000000 Binary files a/site/projects/dice/da1.png and /dev/null differ diff --git a/site/projects/dice/da2.png b/site/projects/dice/da2.png deleted file mode 100644 index d7854c51..00000000 Binary files a/site/projects/dice/da2.png and /dev/null differ diff --git a/site/projects/dice/da3.png b/site/projects/dice/da3.png deleted file mode 100644 index 52a12d99..00000000 Binary files a/site/projects/dice/da3.png and /dev/null differ diff --git a/site/projects/dice/da6.png b/site/projects/dice/da6.png deleted file mode 100644 index db434d32..00000000 Binary files a/site/projects/dice/da6.png and /dev/null differ diff --git a/site/projects/dice/da7.png b/site/projects/dice/da7.png deleted file mode 100644 index 9877fbe0..00000000 Binary files a/site/projects/dice/da7.png and /dev/null differ diff --git a/site/projects/dice/da8.png b/site/projects/dice/da8.png deleted file mode 100644 index b76a9ad9..00000000 Binary files a/site/projects/dice/da8.png and /dev/null differ diff --git a/site/projects/dice/da9.png b/site/projects/dice/da9.png deleted file mode 100644 index c10f599f..00000000 Binary files a/site/projects/dice/da9.png and /dev/null differ diff --git a/site/projects/dice/editors.png b/site/projects/dice/editors.png deleted file mode 100644 index e569b29c..00000000 Binary files a/site/projects/dice/editors.png and /dev/null differ diff --git a/site/projects/dice/index.md b/site/projects/dice/index.md deleted file mode 100644 index c2cb2cd0..00000000 --- a/site/projects/dice/index.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: Dice Armor ---- -# Dice Armor - -[Download Here](https://drive.google.com/open?id=18rwqEIdMChdGtB-9LdI4wiqeM5C5ViOL) - -Dice Armor is a game that started development as a semester-long project by a team of nine: a producer, a creative director, a narrative writer, an artist, two programmers, and 3 game designers. The information here is about my contributions as the lead programmer over the semester because I can show off stuff like the editor scripts I wrote. I was doing everything from interface coding, editor scripts, integrating Babble Buds, and of course, everything related to the gameplay itself. To date I'm still the lead programmer for the game; for more up-to-date information on the current state of the game please visit the official site. - -The build available here was created for showing off at the end of the semester, and as such has some buttons present to make the game easier to skip parts of the game to see all the content: You start with all the dice in the game already in the shop, there's a button to give yourself free money to buy these dice with, and in the duel, there are buttons to force a win or a loss, which can be used to skip the tutorial (not recommended for first-time players). - -![Tutorial](./da2.png) - -Dice Armor is a dice dueling game. Players can use abilities, flip dice, and attack each other to win in a dice game that puts chance into the hands of the players. This is what the dueling scene looks like, with a tutorial cutscene happening on top to guide the player through the basics. Also, all the dice are constructed dynamically, using quaternion math to figure out the placement of each component relative to the face it is going on. The die in the middle has one of the player' and opponents' portraits on each of its sides. - -![Editors](./editors.png) - -For many of the objects I've created, I've made scriptable objects so that game designers can add and modify them easily. Additionally, I would create custom inspectors for the objects to help make them as easy to understand and edit as possible. The opponent's artificial intelligence is made up of many strategies, in a prioritized list. When it is the opponents' turn they go through each strategy and check if they can be run, and if so then the opponent performs the strategy and starts back over at the top of the list of strategies. The + sign under the list of strategies opens an organized dropdown of all the various strategies. - -![Simulator](./simulator.jpg) - -In addition to custom inspector code, I've created new tools for the editor for our game designers to use. This is a duel simulator that will take two opponents and simulate an arbitrary number of duels between them, and output the results and summarize them for you, much much quicker than manually going through the duels, even with an absurdly high timeScale. This will become incredibly useful in making balance changes and testing new dice against existing sets. This is a screenshot of it in edit mode, but in play mode it removes the "Dueling Managers" field and will use whatever the current duel balance settings are, allowing for the GDs to test freely in play mode without worrying about undoing all their changes afterward. - -![Cutscene](./da1.png) - -I created the Babble Buds puppet editor and ported the rendering library I wrote for it to C# so it could be used in Unity. Dice Armor has a full campaign using cutscenes made using the Babble Buds cutscene editor, taking advantage of its support for custom commands and fields to control things like talking, giving the player dice and money, starting duels, and controlling player progression through the story. - -![Action Wheel](./da6.png) - -When a cutscene ends, its final command is to either start a duel or set the next cutscene in the story. In the latter case, there is an additional field for what to call the next cutscene, and what location it takes place. The cutscene is then added to the player's save file, and when they visit the city locations are greyed out until they have at least one action to do there. Each location has a dynamically populated action wheel with a custom range of acceptable angles. - -![Shop](./da7.png) - -The dice shop is dynamically populated by a list of dice available to the player, which can be changed during cutscenes, and is checked against the dice owned by the player to generate sold-out indicators. On the left, the player can choose to filter the options down to a single dice effect, which also updates the "Buy All" button to buy only all the dice in the current filter. - -![Inventory](./da8.png) - -The inventory works most the same as the shop, but for equipping dice. It also allows you to drag individual dice or entire sets to the equipped dice glyph. While dragging it will highlight all the slots the new dice will be equipped into. - -![Dice Rolling](./da3.png) - -The dice rolling uses the physics engine and detects once the dice have stopped moving, then determines which side is face up based on which of the normals is closest to straight up. It flags the die as cocked if that smallest angle is above a threshold. The dice sink into the table when not rolling to not interfere with any dice that are rolling. - -![Missile Storm](./da9.png) - -During certain events like winning the game or having the face of a die broken, the players' portraits will flash an emotion for a second. After winning, a random living die from the winning player is chosen to play their "finisher move", a flashy and dramatic effect to end the game. Shown is the arcane mechana's finisher, "Missile Storm". diff --git a/site/projects/dice/simulator.jpg b/site/projects/dice/simulator.jpg deleted file mode 100644 index 1b2d192f..00000000 Binary files a/site/projects/dice/simulator.jpg and /dev/null differ diff --git a/site/projects/index.md b/site/projects/index.md deleted file mode 100644 index 07e709e8..00000000 --- a/site/projects/index.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: Projects -lastUpdated: false ---- -# Games and Tools - -Check out the various games and tools I've made or worked on in the sidebar! diff --git a/site/projects/optispeech/documentation.png b/site/projects/optispeech/documentation.png deleted file mode 100644 index 03a08965..00000000 Binary files a/site/projects/optispeech/documentation.png and /dev/null differ diff --git a/site/projects/optispeech/index.md b/site/projects/optispeech/index.md deleted file mode 100644 index ecb880ae..00000000 --- a/site/projects/optispeech/index.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -title: OptiSpeech ---- -# OptiSpeech - -The Optispeech project involves designing and testing a real-time tongue model that can be viewed in a transparent head while a subject talks — for the purposes of treating speech errors and teaching foreign language sounds. This work has been conducted in partnership with Vulintus and with support from the National Institutes of Health (NIH). The UT Dallas Speech Production Lab is currently updating the program to use updated versions of Unity and adding support for more features and hardware. - -![System Architecture](./system-architecture-600.jpg) - - - -This video shows a talker with WAVE sensors placed on the tongue hitting a virtual target sphere located at the alveolar ridge. When an alveolar consonant is hit (e.g., /s/, /n/, /d/) the sphere changes color from red to green. - - - -This video shows an American talker learning a novel sound not found in English. When the post-alveolar consonant is hit, the target sphere changes color from red to green. Here, the NDI WAVE system serves as input. - -The program is being updated by a team in the UT Dallas Speech Production Lab led by Anthony Lawn, so the program uses a more modern version of Unity, has an easier-to-use interface, can more easily support new features, and can connect to additional EMA systems, namely the Carstens AG501. - -![New Interface](./new-interface.png) - -In addition, the program now includes documentation and unit tests to improve program stability and maintainability going forward. - -![Documentation](./documentation.png) - -![Unit Tests](./unittests.png) diff --git a/site/projects/optispeech/new-interface.png b/site/projects/optispeech/new-interface.png deleted file mode 100644 index 62d38a85..00000000 Binary files a/site/projects/optispeech/new-interface.png and /dev/null differ diff --git a/site/projects/optispeech/system-architecture-600.jpg b/site/projects/optispeech/system-architecture-600.jpg deleted file mode 100644 index e482d25d..00000000 Binary files a/site/projects/optispeech/system-architecture-600.jpg and /dev/null differ diff --git a/site/projects/optispeech/unittests.png b/site/projects/optispeech/unittests.png deleted file mode 100644 index 51717e77..00000000 Binary files a/site/projects/optispeech/unittests.png and /dev/null differ diff --git a/site/projects/vecs/debug.png b/site/projects/vecs/debug.png deleted file mode 100644 index 6f5a4fe8..00000000 Binary files a/site/projects/vecs/debug.png and /dev/null differ diff --git a/site/projects/vecs/index.md b/site/projects/vecs/index.md deleted file mode 100644 index 16abb24d..00000000 --- a/site/projects/vecs/index.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: V-ecs ---- -# V-ecs - -![V-ecs Screenshot](./screenshot.png) - -V-ecs (pronounced "Vex") is a Vulkan-based engine I made for making highly moddable games and tools in Lua centered around the ECS design pattern and a work-stealing job system. - -The engine works with "worlds", which are collections of systems and renderers. The engine comes with several worlds using systems and renderers I made, including a voxel world, an incremental game, and some test scenes. All of these include systems to render the fps as well as show a debug console by typing the grave key (\`). The default world is a title screen that detects any worlds in the "worlds" folder and displays a button for each of them. - -![Debug Menu](./debug.png) - -The original plans were to eventually put it on the steam workshop so people could more easily share their creations amongst each other, but I never became happy enough with the performance of the engine - the parallelization of the lua code involved a lot of overhead that severely limited performance. - -Instead, I made a couple of worlds by myself - an infinite procedurally generated voxel world, a simple incremental game, and a more complex incremental game I call "Sands of Time". - -![Sands of Time](./sandsoftime.png) diff --git a/site/projects/vecs/sandsoftime.png b/site/projects/vecs/sandsoftime.png deleted file mode 100644 index 96932113..00000000 Binary files a/site/projects/vecs/sandsoftime.png and /dev/null differ diff --git a/site/projects/vecs/screenshot.png b/site/projects/vecs/screenshot.png deleted file mode 100644 index b198c465..00000000 Binary files a/site/projects/vecs/screenshot.png and /dev/null differ