Settings

Theme

Boxedwine is an emulator that can run Windows applications in the browser

github.com

300 points by danslo 5 years ago · 72 comments

Reader

brian_herman 5 years ago

The prophesy has come true... https://www.destroyallsoftware.com/talks/the-birth-and-death...

  • mywacaday 5 years ago

    If we are living in a simulation it's slightly more troubling that it might be running in a browser.

    • ineedasername 5 years ago

      It would explain why time seems to go by so slow when a person is bored: Not many people want to watch that simulation, so lack of CPU cycles slows everything down.

    • stjohnswarts 5 years ago

      I always hoped we were running in a VM written in Rust rather than python or javascript. But it's hard to explain the platypus with a rust based one...

  • josephg 5 years ago

    Does it run Firefox? I’d love to see a browser in a browser, just to experience mediocrity in all its awful glory.

    Networking would be tricky, but you could encapsulate TCP over a custom websocket tunnel.

  • ant6n 5 years ago

    I think I actually saw this talk live. What are the chances. Definitely worth checking out, it’s pretty fun.

  • re 5 years ago

    Is there a relevant timestamp for those of us not wanting to invest 30 minutes in the full talk?

    • ToFab123 5 years ago

      No. Not really. It a fascinating talk to watch so you are not going to totally waste those 30 minutes.

    • phoe-krk 5 years ago

      Yes, 0:00-29:23. The point of the talk is not laid out during a single moment; it's more like a story that unfolds over time, allowing the reader to understand its implications bit by bit.

  • EvilEy3 5 years ago

    What prophesy? It is written in C++.

    • pjmlp 5 years ago

      WebAssembly like all bytecode formats, doesn't care about the source language.

      • EvilEy3 5 years ago

        WebAssembly doesn't make it JavaScript application either. It is merely runtime.

avidiax 5 years ago

http://www.boxedwine.org/demo/

Very light games are playable. I'm sure that legacy line-of-business software would have zero trouble.

  • kev_emu 5 years ago

    I worked on the emscripten/wasm build of boxedwine. I can answer some questions. The project has been around in some form for 9 years. It was originally in java, then straight c, now c++. Main author previously worked on jdosbox. I previously ported jdosbox to become jsdosbox (via GWT) a decade ago.

  • arilotter 5 years ago

    Wow, I managed to run 3D Pinball Space Cadet at a fluid 60fps with audio disabled. This is a pretty mind-boggling thing to have exist.

    • ravenstine 5 years ago

      Runs horribly on macOS Firefox but, does indeed run at 60fps in Chrome with audio turned off. I wonder why the audio is such a problem? I'd think that audio wouldn't be that expensive even in an emulated environment.

      • grawprog 5 years ago

        I have no idea of the details as to why, but in all the years I've used emulators, turning off the audio has always increased the speed of emulation in emulators that are struggling.

        I realize Wine is not an emulator...but...same shit.

        • hutzlibu 5 years ago

          Processing audio is expensive, when done by the CPU.

          • kev_emu 5 years ago

            The WASM build uses the 'normal' CPU core. In this core the CPU emulator is a collection of indirect calls that performs poorly in WASM due the runtime checks to verify the number of parameters and their types. For other builds there is a dynamic code generator. A similar approach would work wonders. Assistance gratefully accepted! - see source folders under emulation/cpu for armv7, armv8 & x32 for the 30 odd method implementations. To get native like performance a binary translator like that used for the x64 core is required

        • ugjka 5 years ago

          Probably something to do with html5 audio api

    • singularity2001 5 years ago

      Even runs on iPad FF ! wow indeed

      • speedgoose 5 years ago

        An iPad is pretty fast. The iPad Pro M1 is faster than quite a lot of brand new laptops.

  • fouc 5 years ago

    I tried AoE in safari but that didn't work.. works in firefox though

etaioinshrdlu 5 years ago

Am I looking at the source properly? The author made their own multiplatform CPU emulator just for this?

This is not just Qemu running in a browser, folks. Someone put a huge amount of work into this.

  • heavyset_go 5 years ago

    And they're emulating a Linux kernel in order to provide a platform to run Wine on. It's very impressive.

  • jdmoreira 5 years ago

    isn't wine? as in https://www.winehq.org

    • ObscureScience 5 years ago

      It's Wine running on Linux (which I gather from a quick look is not the actual kernel, but an minimal self written stub enough to run Wine. Is this correct?) which itself is running in an emulator, compiled into binaries for Window, MacOS, Linux and web.

      • danoon 5 years ago

        Yes, the goal of Boxedwine is to run old Windows programs in a platform independent way without a VM or disk images. So basically it is Dosbox but for Windows. At first I started out writing my own Win32 API implementation, and it worked for the first couple of games. But eventually I saw it was more than 1 person could do. That is when I realized Wine was the only solution and since that only worked on Linux, I had to create minimal Linux emulator to run Wine. Implementing the kernal syscalls did take some time. But It is capable to running emulated threads and processes in a single threaded app, which is why it works with Emscripten.

        • 0x77617472 5 years ago

          I tested it with 2 games (non-browser version, just by downloading it off the website) and was not able to get any of them working.

          https://en.wikipedia.org/wiki/Donald_Duck:_Goin%27_Quackers Says error about not being able to find the CD-rom drive.

          https://humongous.fandom.com/wiki/Putt-Putt:_Pep%27s_Birthda... I just get a error saying "Error É" whilst trying to run the executable.

          Both do install fine into %APPDATA% though. I've tried both the x86/x64 versions executables of Boxedwine.

          Mounting CD-rom directly, extracting it to ISO then to a folder doesn't seem to work either.

          Do you happen to have any idea what I might be doing wrong or if those games are not yet supported at all?

          Thanks

          • danoon 5 years ago

            Just like Wine, Boxedwine won't work with games that have CD checks. If it is just trying to find the CD in order to play a video off of it or grab a large file it didn't install, that might work, but only if the code isn't making sure its a real CD device. Seems like my UI should be able to handle the user dragging an installer into it from a CD where the CD will be used again. For that to work it would need to copy the CD and mount it internally so that the program can find it again while running. Right now I don't do that, but I think that would be a useful enhancement that isn't too hard to do.

            As for the Putt-Putt, that has the look of flash or Adobe Air. I know that things like Java, and .Net don't work yet in Boxedwine, so if it is doing any kind of JIT then it won't work. I added that to the list of games I should look at.

            You got pretty unlucky if you only tried 2 older games like that and neither worked.

            • 0x77617472 5 years ago

              Yea that would be great!

              I did get them working and playable some time ago on Linux using Wine though (my little brother likes to play them still, except he can't get used to Linux), even though they ask for CD-rom.

              The Putt-Putt game is using some custom click 'n play Python2 based "SCUMM" engine, it doesn't require Java or .NET iirc. And I think they predate JIT a bit.

          • anthk 5 years ago

            Try the 1st Deus Ex demo and the addon map.

        • heavyset_go 5 years ago

          Wine also runs on BSD and macOS, if anyone is curious about taking this approach with a different kernel interface.

          This project is really clever and one the best things I've seen on here in a while.

infinityplus1 5 years ago

If it turns out that Win32 APIs+Wine+Javascript is the ultimate cross platform way to run apps, I would laugh my heart out.

  • DoctorOW 5 years ago

    If someone releases an old Windows app for Mac and Linux using this and Electron I hope a story about it reaches HN. It'd be the ultimate combination of tech we love to hate. :)

  • emayljames 5 years ago

    Sounds like virus central. I would have thought having a small Linux in the browser would have been better.

    • pjc50 5 years ago

      This is a Linux in the browser. It's there to run WINE.

      Absolutely incredible project!

      (Also, it's in the browser sandbox so you don't have to worry about viruses)

      • Cloudef 5 years ago

        Its not really linux but elf loader + shim that implements enough of linux kernel to run wine

aidanhs 5 years ago

I first came across this a while ago and after digging I found the way it worked (and possibly still works) behind the scenes is pretty cool: https://groups.google.com/g/emscripten-discuss/c/4Qw8OOgTvu0...

> A while ago I was pondering getting emscripten working under Wine, but realised that it's not quite as simple as a typical program (because Wine relies on being able to just provide a compatibility layer for syscalls, so the compatibility layer for x86 would have to be provided by the port to emscripten).

> Seeing this post, I wondered if you'd found some cunning way around this so downloaded the project. No, you've just gone straight ahead and implemented an x86 emulator! Ok, but how is wine able to run on bare metal? Oh right, you've actually implemented parts of linux, including most of the syscall interface, your own executable loader, parts of procfs and assorted special devices! Alright, but (as Alon asks) how does this actually render things? Ah I see, you've implemented your own display driver in Wine which, when methods are invoked, dispatches interrupts to the emulated CPU which then forwards and translates the interrupt to an equivalent sdl call (with opengl working a similar way, but with a dll)!

> Wow!

  • kev_emu 5 years ago

    BoxedWine does OpenGL passthrough on platforms where available. This does not extend to the WASM/WebGL, but I really tried! I was able to get it working for some simple OpenGL applications with help from gl4es, but was unable to make it work with textures beyond one example [1]. I would appreciate some assistance if anyone has the required skills.

    [1] - https://kevodwyer.github.io/boxedwine-examples/v1/boxedwine....

etaioinshrdlu 5 years ago

Am I understanding this project correctly that there is no Linux kernel, only a simulation of it?

That alone is quite interesting if true, and probably useful outside of just running Wine.

  • laumars 5 years ago

    As per the linked readme, there is a Linux kernel and it is emulated.

    Basically this project is a Linux emulator but rather than exposing libc APIs it exposes Win32 et al via WINE.

    Pretty neat idea but comes with all the usual caveats of running Windows software on WINE plus all the new caveats of running C++ in WebAssembly.

    • Cloudef 5 years ago

      Its not actually emulating a real linux kernel. It implements its own "kernel" and elf loader: https://github.com/danoon2/Boxedwine/tree/master/source/kern... so this basically is light WSL w/ CPU emulation to run wine.

      The project running on browser is not the main point. It can run standalone, and is mostly used to run old games that no longer work well on modern hardware / windows. Heck you can even use it on Linux.

      I think the coolest part of the project is that it makes wine very portable though. Boxedwine seems like it could run on android as well for example.

      • xnyan 5 years ago

        It gets around the App Store too, thinking mostly about old games.

  • Cloudef 5 years ago

    Seems so, basically compatibility layer to run another compatibility layer heh

userbinator 5 years ago

You can also run Windows itself in the browser: https://news.ycombinator.com/item?id=15763418

danoon 5 years ago

Boxedwine was used to bring an old game, The Voodoo Kid, that has some compatibility issues with modern Windows to Gog.com

https://www.gog.com/game/voodoo_kid

marwis 5 years ago

There's a company doing a high performance version of this for a while: https://leaningtech.com/cheerpx/

DownwardFall 5 years ago

this is neat! thanks for this! I've been using Shells.com to run windows apps in my browser this gives me some cool ideas for projects..

Thanks!

remix2000 5 years ago

Why WINE on Linux instead of ReactOS? Do browsers have some Linux simulation facilities built-in?

  • danoon 5 years ago

    ReactOS is a full OS, so it needs to run in a VM which requires disk images. Boxedwine emulates everything it needs and can use the users file system directly. So you can just drag a setup or game that doesn't require installation right into the UI and it will work.

    • remix2000 5 years ago

      Doesn’t BoxedWine emulate Linux kernel then?

      • danoon 5 years ago

        Yeah, I implement a good amount of the kernel syscalls that Wine needs. It was easier for me to implement the 200-300 Kernel calls, like open file, etc, than implement the entire Windows API, which is why I used Wine for this project.

fighterpilot 5 years ago

For a Linux user, can someone explain in what situations this is preferable to regular Wine?

kinghtown 5 years ago

This finally explains why gutter punks love boxed wine.

nickthemagicman 5 years ago

Just for the record this is the best name ever.

imagineerschool 5 years ago

Incredible! Nicely done!

excalibur 5 years ago

Name is perfect

zaphirplane 5 years ago

This is impressive and inspiring. I’ll take a look at the code after browsing Reddit

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection