Skip to content

Commit

Permalink
update with appdb
Browse files Browse the repository at this point in the history
  • Loading branch information
evmar committed Jun 2, 2024
1 parent f471516 commit 9612fce
Show file tree
Hide file tree
Showing 30 changed files with 183 additions and 41 deletions.
File renamed without changes.
File renamed without changes.
Binary file added archive/demo/anatyda.exe
Binary file not shown.
Binary file added archive/demo/chillfix.exe
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file added archive/monolife/BASS.DLL
Binary file not shown.
Binary file added archive/monolife/MONOLIFE.IT
Binary file not shown.
Binary file added archive/monolife/monolife.dat
Binary file not shown.
File renamed without changes.
Binary file added archive/monolife/monolife.exe.orig
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
34 changes: 17 additions & 17 deletions bundle.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

190 changes: 166 additions & 24 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,29 +52,171 @@ <h1>retrowin32</h1>

<p>See <a href='https://github.com/evmar/retrowin32/blob/main/README.md'>the README</a> for more.</p>

<h2>demos</h2>
<p id='demos'>None of these fully work, but here are some demos (click 'run'):</p>

<h2>demoscene</h2>
<p>
<dl>

<dt>
<a href='run.html?exe=archive%2fdemo%2fanatyda.exe'>Anatyda</a>
(from

<a href="https://www.pouet.net/prod.php?which=32369">pouet.net</a>)

</dt>
<dd>
Anatyda by Astral (1999)
<br>status: works but slow
</dd>

<dt>
<a href='run.html?exe=archive%2fdemo%2fchillfix.exe'>chillin</a>
(from

<a href="https://www.pouet.net/prod.php?which=567">pouet.net</a>)

</dt>
<dd>
chillin by Haujobb (2000)
<br>status: colors are wrong; stuck in first scene
</dd>

<dt>
<a href='run.html?exe=archive%2fdemo%2feffect.exe'>effect #8</a>
(from

<a href="https://www.pouet.net/prod.php?which=17038">pouet.net</a>)

</dt>
<dd>
effect #8 by Infuse Project &amp; Trinity (1999)

</dd>

<dt>
<a href='run.html?exe=archive%2fdemo%2fpsi_mofo.exe'>mofo</a>
(from

<a href="https://www.pouet.net/prod.php?which=519">pouet.net</a>)

</dt>
<dd>
mofo by Psikorp (1999)

</dd>

<dt>
<a href='run.html?exe=monolife.exe&dir=archive%2fdemo%2fmonolife%2f&file=monolife.dat'>Monolife</a>
(from

<a href="https://www.pouet.net/prod.php?which=7698">pouet.net</a>)

</dt>
<dd>
Monolife by Hatha (1997)
<br>status: stuck on first scene, possibly audio related
</dd>

<dt>
<a href='run.html?exe=archive%2fdemo%2fwin003.exe'>Win4k</a>
(from

<a href="https://www.pouet.net/prod.php?which=6568">pouet.net</a>)

</dt>
<dd>
Win4k by Power Flower Crew (2000)

</dd>

</dl>
</p>

<h2>other</h2>
<p>
<dl>

<dt>
<a href='run.html?exe=winmine.exe&dir=archive%2fwin2k%2f&file=msvcrt.dll'>Minesweeper</a>
(from

Windows 2000)

</dt>
<dd>
the classic Windows game

</dd>

</dl>
</p>

<h2>retrowin32 test</h2>
<p>
<dl>

<dt>
<a href='run.html?exe=local%2fexe%2fcallback%2fcallback.exe'>callback test</a>
(from

<a href="https://github.com/evmar/retrowin32/tree/main/exe/callback">retrowin32</a>)

</dt>
<dd>
tests x86 calling Windows calling x86

</dd>

<dt>
<a href='run.html?exe=archive%2fBasicDD.exe'>DirectDraw spinning car</a>
(from

<a href="https://www.codeproject.com/Articles/2370/Introduction-to-DirectDraw-and-Surface-Blitting">DirectDraw tutorial</a>)

</dt>
<dd>
simplest DirectDraw app

</dd>

<dt>
<a href='run.html?exe=local%2ftarget%2fi586-pc-windows-msvc%2frelease%2fgdi.exe'>gdi test</a>
(from

<a href="https://github.com/evmar/retrowin32/blob/main/exe/rust/src/bin/gdi.rs">retrowin32</a>)

</dt>
<dd>
empty window Rust GDI program

</dd>

<dt>
<a href='run.html?exe=local%2fexe%2fzig_hello%2fhello.exe'>zig hello world</a>
(from

<a href="https://github.com/evmar/retrowin32/tree/main/exe/zig_hello">retrowin32</a>)

</dt>
<dd>
trivial Zig program

</dd>

<dt>
<a href='run.html?exe=local%2ftarget%2fi586-pc-windows-msvc%2frelease%2fzip.exe&cmdline=zip.exe%201%20zip.exe'>zip/unzip round trip</a>
(from

<a href="https://github.com/evmar/retrowin32/tree/main/exe/zip">retrowin32</a>)

</dt>
<dd>
retrowin32&#39;s own performance test

</dd>

</dl>
</p>

</main>
</body>

<script>
async function main() {
const demos = await (await fetch('index.json')).json();
const links = document.createElement('dl');
for (const demo of demos) {
const dt = document.createElement('dt');
const a = document.createElement('a');
const url = `run.html?${demo.params}`;
a.href = url;
a.innerText = demo.desc;
dt.appendChild(a);
links.appendChild(dt);

const dd = document.createElement('dd');
dd.innerHTML = demo.notes ?? '';
links.appendChild(dd);
}
document.getElementById('demos').appendChild(links);
}
main();
</script>
Binary file added local/exe/callback/callback.exe
Binary file not shown.
Binary file added local/exe/zig_hello/hello.exe
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed unpacked.exe
Binary file not shown.
Binary file modified wasm.wasm
Binary file not shown.

0 comments on commit 9612fce

Please sign in to comment.