-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshowcase.cmd
More file actions
98 lines (98 loc) · 3.35 KB
/
Copy pathshowcase.cmd
File metadata and controls
98 lines (98 loc) · 3.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
@echo off
title DeviniaC - Mission Metamorphosis
cd /d D:\DeviniaC
cls
echo.
echo ==================================================================
echo DeviniaC - Mission Metamorphosis
echo The whole ascent, live. One day. One file. Eight milestones.
echo Dedicated to Terry A. Davis.
echo ==================================================================
echo.
echo Press any key to begin the climb...
pause >nul
cls
echo [1/9] MILESTONE 1 - "It runs"
echo A hosted HolyC core: 1,000 entities spawned, queried, mutated,
echo and the generational handle contract proven.
echo ------------------------------------------------------------------
echo.
deviniac.exe demo\metamorphosis.dc
echo.
echo Press any key for milestone 2...
pause >nul
cls
echo [2/9] MILESTONE 2 - "The world takes shape"
echo Systems declare what they read and write; the parallel schedule
echo is DERIVED from those declarations. 10,000 entities.
echo ------------------------------------------------------------------
echo.
deviniac.exe demo\metamorphosis2.dc
echo.
echo Press any key for milestone 3...
pause >nul
cls
echo [3/9] MILESTONE 3 - "Many hands"
echo The schedule stops being a printout: four independent systems
echo run on real threads, timed against sequential execution.
echo ------------------------------------------------------------------
echo.
deviniac.exe demo\metamorphosis3.dc
echo.
echo Press any key for milestone 4...
pause >nul
cls
echo [4/9] MILESTONE 4 - "New life"
echo Systems spawn and reap mid-wave, safely, across threads.
echo One seed cell grows an ecosystem; an array charts the curve.
echo ------------------------------------------------------------------
echo.
deviniac.exe demo\metamorphosis4.dc
echo.
echo Press any key for milestone 5 and 6...
pause >nul
cls
echo [5-6/9] MILESTONES 5+6 - "The forge" and "Iron"
echo Compilation as a runtime service: the same source through three
echo engines - tree-walker, typed bytecode, native x86-64.
echo ------------------------------------------------------------------
echo.
deviniac.exe demo\metamorphosis6.dc
echo.
echo Press any key for milestone 7...
pause >nul
cls
echo [7/9] MILESTONE 7 - "Raw and alive"
echo MAlloc returns: a heat field in raw memory, scattered and cooled
echo by native pointer loops, drawn from the bytes themselves.
echo ------------------------------------------------------------------
echo.
deviniac.exe demo\metamorphosis7.dc
echo.
echo Press any key for milestone 8...
pause >nul
cls
echo [8/9] MILESTONE 8 - "The flat world"
echo Components in SoA columns; whole queries run as single native
echo loops. 200,000 entities, 20 million updates, timed.
echo ------------------------------------------------------------------
echo.
deviniac.exe demo\metamorphosis8.dc
echo.
echo Press any key for the finale...
pause >nul
cls
echo [9/9] THE FOUNTAIN - a living world
echo 160 entities, three systems forged to metal, animated over a
echo raw-memory heat field. Everything above, at once.
echo.
echo Press any key to let it flow...
pause >nul
deviniac.exe demo\alive.dc
echo.
echo ==================================================================
echo That was DeviniaC - built today, from an empty folder.
echo God's grace on the road ahead.
echo ==================================================================
echo.
pause