Search found 1382 matches

by Artcfox
Sat Jul 15, 2023 6:18 am
Forum: Uzebox Emulator
Topic: All Uzebox Games Online! (Cuzebox and Emscripten)
Replies: 130
Views: 158662

Re: All Uzebox Games Online! (Cuzebox and Emscripten)

With respect to the audio latencies, I think Emscripten got much better with the newer versions, because it plays much smoother on the same PC that I have been using all these years. For the keyboard, when I was prototyping the mouse and touch controls out trying to get the key events to the canvas ...
by Artcfox
Sat Jul 15, 2023 6:05 am
Forum: Programming & Software
Topic: Where is the Edge of Uzebox Sound?
Replies: 5
Views: 366

Re: Where is the Edge of Uzebox Sound?

Very cool and informative! I had messed around with custom waves before, but I didn't get anywhere because I didn't have any knowledge of what the attack, sustain and decay stuff did to the sounds. Only in my recent games have I felt like I can mess with the envelope to get a different sound, but ne...
by Artcfox
Fri Jul 14, 2023 1:57 am
Forum: Uzebox Emulator
Topic: All Uzebox Games Online! (Cuzebox and Emscripten)
Replies: 130
Views: 158662

Re: All Uzebox Games Online! (Cuzebox and Emscripten)

Thanks!

This feels like it pretty much obsoletes the need for a native Android or iOS port, because it actually plays way better than the Android port ever did. I tested it out on a desktop, laptop, Android phone, iPhone, and iPad, and it worked on everything.
by Artcfox
Thu Jul 13, 2023 9:28 pm
Forum: Uzebox Emulator
Topic: All Uzebox Games Online! (Cuzebox and Emscripten)
Replies: 130
Views: 158662

Re: All Uzebox Games Online! (Cuzebox and Emscripten)

I discovered a technique to easily enable mouse/touch controls for an Emscripten compiled version Cuzebox. My changes are here: https://github.com/artcfox/cuzebox/tree/emscripten-touch-enhanced I didn't have to make too many changes to Cuzebox for this, though I did optimize the audio buffers to rem...
by Artcfox
Thu Jul 13, 2023 8:45 pm
Forum: Hardware
Topic: Fake Crystals
Replies: 18
Views: 4203

Re: Fake Crystals

Welcome to the forum. That board looks really nice! I'm sorry you ended up getting fake parts. According to the official BOM, this is the crystal: https://www.digikey.com/en/products/detail/txc-corporation/9B-28-63636MEEJ-B/2207676 It might be expensive to ship from DigiKey if you are in Germany. I ...
by Artcfox
Thu Jul 13, 2023 8:25 pm
Forum: Programming & Software
Topic: Compiling on Windows SDL2 not found
Replies: 3
Views: 1153

Re: Compiling on Windows SDL2 not found

If you want to compile SDL2 applications, you need to have the devel package for SDL: https://github.com/libsdl-org/SDL/releases/latest Since you're using mingw, you probably want the file called: SDL2-devel-2.28.1-mingw.zip Extract that, and follow the instructions in INSTALL.txt I believe it amoun...
by Artcfox
Thu Jul 13, 2023 8:18 pm
Forum: Uzebox Emulator
Topic: cuzebox rv64
Replies: 4
Views: 1884

Re: cuzebox rv64

To build cuzebox with clang, you would run the command: CCNAT=clang make The Make_defines.mk file has a section for setting the default compiler for linux, windows_mingw, and emscripten. The ?= is a conditional variable assignment operator, because it only has an effect if the variable is not yet de...
by Artcfox
Tue Jul 11, 2023 1:16 am
Forum: Games & Demos
Topic: Defender
Replies: 72
Views: 17936

Re: Defender

danboid wrote: Mon Jul 10, 2023 10:34 pm Is there any reason mode52 can't be merged into the main repo as is?
I'm not sure why it didn't get merged. Alec may remember. If it's works well enough to complete a game with it, I think it's fair game to merge in.
by Artcfox
Mon Jul 10, 2023 9:00 pm
Forum: Hardware
Topic: Daemonbite SNES controller to USB adapter
Replies: 13
Views: 998

Re: Daemonbite SNES controller to USB adapter

I don't really like the NES pads so don't think I'll be buying one just to test this. I misquoted the guy who owns the db repo, what he actually said was "Omitting this since it's based on a generic and configurable microcontroller" Its detected as an Arduino of course so thats fair enoug...
by Artcfox
Mon Jul 10, 2023 8:41 pm
Forum: Games & Demos
Topic: Defender
Replies: 72
Views: 17936

Re: Defender

Thanks for explaining that Artcfox, I still haven't got my head around the more advanced features of git. Bad news tho! Seems DA gone messed finks up! No problem. This is a great (and free!) book to learn Git: https://git-scm.com/book/en/v2 I reviewed his original PR, but then it was abandoned and ...