惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
Stack Overflow Blog
Stack Overflow Blog
G
Google Developers Blog
Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
L
LangChain Blog
T
The Blog of Author Tim Ferriss
J
Java Code Geeks
Y
Y Combinator Blog
月光博客
月光博客
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
F
Fortinet All Blogs
A
About on SuperTechFans
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
P
Proofpoint News Feed
小众软件
小众软件
H
Help Net Security
Last Week in AI
Last Week in AI
B
Blog RSS Feed
宝玉的分享
宝玉的分享
N
Netflix TechBlog - Medium
博客园 - 叶小钗
The GitHub Blog
The GitHub Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Proto-Synth Grid Engine: Building a Math-First 2D World R...
Gary Doman/T · 2026-05-15 · via DEV Community

Proto-Synth Grid Engine: Building a Math-First 2D World Runtime That Feels 3D

I’m building Proto-Synth Grid Engine, also described in the repo as I/O Synth Grid Engine.

The project is an experimental, deterministic, low-weight world runtime where geometry is not just decoration. Geometry becomes structure, storage, routing, and execution space.

The core idea is:

Geometry = storage
Movement = computation
Entities = executors

Enter fullscreen mode Exit fullscreen mode

Instead of building a heavy 3D stack first, the engine starts with deterministic 2D simulation logic and projects it into a visually 3D synth-grid interface.

What this is

Proto-Synth Grid Engine is a math-first simulation surface.

It treats the world like a programmable environment:

  • shell geometry defines the world
  • module blueprints attach systems into that shell
  • entities move through the grid as executors
  • grid mutations become event-shaped state changes
  • deterministic replay becomes possible through event logs and receipts
  • the render layer projects the 2D core into a 3D-feeling visual surface

The result is not just a game prototype or visual toy. It is an engine surface for future local-first systems, AI runtimes, neural interfaces, spatial dashboards, and programmable world simulations.

Why 2D first

The engine is built around a deterministic 2D vector-space core.

That matters because 2D simulation is:

  • easier to replay
  • easier to audit
  • easier to seed
  • easier to run on older hardware
  • easier to reason about
  • lighter than full 3D
  • still capable of looking spatial through projection

The visual layer can then use:

  • perspective scaling
  • cube-grid projection
  • layered sprite depth
  • shell overlays
  • depth shading
  • reticle and HUD surfaces
  • synthwave geometry

That creates a 3D-feeling interface without making the core simulation dependent on a heavyweight 3D engine.

Blueprint-driven worlds

The engine loads blueprints that define the structure and behavior of the world.

The main blueprint layers are:

  1. Shell Blueprint — defines the geometry of the world.
  2. Module Blueprints — attach systems into the shell.
  3. Execution Layer — runs the deterministic simulation loop.

Example runtime concepts include:

  • shell blueprints
  • ship modules
  • scanner modules
  • HUD modules
  • cube-grid projection mapping
  • deterministic seeded worlds
  • modular system attachment
  • spatial execution visualization

This lets the world become a programmable surface instead of a fixed scene.

ARC-Core-shaped event discipline

Proto-Synth Grid Engine is designed around the same doctrine as the ARC ecosystem: authority, events, receipts, deterministic replay, and audit trails.

The repo describes the engine as built on an ARC-Core pattern where grid mutations, module attachment, blueprint loads, and execution steps are modeled as receipt-shaped events.

That means core actions can be thought of as:

blueprint load → signed receipt
grid mutation → append-only event
module attach → authority-gated event
simulation loop → deterministic replay
save/load → event log + snapshot

Enter fullscreen mode Exit fullscreen mode

This direction is important because it gives the engine a path toward:

  • reproducible worlds
  • receipt-verified loads
  • replayable simulations
  • audit trails
  • source-of-truth state
  • module synchronization

Iteration path

The repo has evolved through multiple iterations:

Iteration 8 — Blueprint Shell Prototyping

Early shell generation and blueprint structure.

Example direction:

blueprint_octagon.json
→ octagon shell
→ module attachment surface

Enter fullscreen mode Exit fullscreen mode

Iteration 9 — Game Engine Prototype

Prototype world runtime demonstrating:

  • blueprint shell generation
  • cube-grid projection mapping
  • deterministic seed worlds
  • modular system attachment
  • spatial execution visualization

Iteration 10 — Synth Grid Engine

A stronger blueprint-driven simulation shell where geometry becomes computation.

This iteration frames the runtime as a serious modular world engine direction, not just a one-off demo.

Iteration 11 — Neural-Synth / Wetware Core

The engine expands into a neural-style interface direction with:

  • Neural-Synth view
  • Voxel Directory view
  • synchronized visual structures
  • RGB/seed reproducibility
  • wetware-style runtime presentation
  • spatial interface concepts for future AI systems

Neural-Synth and Voxel Directory

One of the most interesting pieces is the relationship between the Neural-Synth view and the Voxel Directory view.

Both are intended to represent the same underlying source information through different visual surfaces:

  • Neural-Synth: node/web/thinking surface
  • Voxel Directory: icon/grid/filesystem-style surface

The important idea is synchronization.

A change in one representation should correspond to the same source structure in the other representation.

That creates a future path where an AI or user can inspect the same runtime through multiple visual modes without losing the underlying source-of-truth relationship.

Why this matters

A lot of engines treat visuals, state, and logic as separate concerns.

Proto-Synth Grid Engine explores a different idea:

space itself can act like a filesystem
geometry can be executable structure
visual layout can reflect runtime state
entities can act as autonomous executors
blueprints can define both shape and behavior

Enter fullscreen mode Exit fullscreen mode

This makes the project relevant beyond normal game development.

Possible use cases include:

  • deterministic game/sim prototypes
  • AI runtime visualizers
  • spatial dashboards
  • local-first programmable environments
  • neural interface experiments
  • visual source-of-truth editors
  • low-weight world simulations
  • seeded universe or grid simulations
  • blueprint-based runtime shells

Controls

The engine includes simple interaction controls such as:

W A S D → move master control
Mouse   → aim vector
C       → toggle reticle
R       → reset

Enter fullscreen mode Exit fullscreen mode

The goal is direct interaction with the simulated surface while still keeping the core lightweight.

Repo

https://github.com/GareBear99/Proto-Synth_Grid_Engine

What I’m looking for

I’m looking for feedback from:

  • game developers
  • simulation developers
  • JavaScript developers
  • AI interface builders
  • low-level engine designers
  • UI/UX experimenters
  • local-first software builders
  • people interested in deterministic systems
  • people interested in visual AI runtimes

Useful feedback includes:

  • simulation architecture feedback
  • blueprint format ideas
  • deterministic replay suggestions
  • low-weight rendering ideas
  • Neural-Synth interface feedback
  • Voxel Directory interaction ideas
  • event/receipt architecture feedback
  • performance suggestions
  • docs and onboarding improvements

Long-term direction

The long-term goal is to make Proto-Synth Grid Engine a lightweight programmable world surface.

Not just a visual demo.

Not just a grid.

A deterministic simulation layer where geometry, execution, memory, and interface all live in the same blueprint-driven environment.