Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×
Amiga The Internet Games

Internet Archive Posted 10,000 Browser-Playable Amiga Titles (techcrunch.com) 83

The folks behind the Internet Archive have added a huge trove of Amiga games and programs to the site, bringing the total to more than 10,000. All these games can be played on your web browser. The non-profit library first began adding Amiga software to its catalog in 2013. TechCrunch adds: We can't vouch for the quality of all of the Amiga titles that were recently posted up on Archive.org, but there sure as heck are a lot of them -- 10,000+, by the site's count, including favorites as Where in the World is Carmen San Diego, King's Quest and Double Dragon, along with what looks to be a fair amount of redundancy. I'm not really sure what the difference is between Deluxe Pac Man v1.1 and Deluxe Pac Man v1.7a, but I suspect it's fairly minor, even for completists.
This discussion has been archived. No new comments can be posted.

Internet Archive Posted 10,000 Browser-Playable Amiga Titles

Comments Filter:
  • by s122604 ( 1018036 ) on Tuesday August 09, 2016 @06:19PM (#52674547)
    How playing these games in browsers work:

    Level set: I work as a developer, mostly on the backend with Java and Java-like languages (groovy, scala, etc..), occasionally .NET, but I actually do some front end work using Angular and EXT-JS... so I'm not a complete buffoon went it comes to front end development..

    Still I wouldn't even know how to start emulating games in the browser.
    • by red_dragon ( 1761 ) on Tuesday August 09, 2016 @06:36PM (#52674635) Homepage

      It can't be that much different from emulating the games in some other language or platform. You'd have to emulate the CPU and chipset, collect input from the user (keyboard and mouse at least, and holy shit joysticks too! [html5gamepad.com]), and output the graphics (HTML5 Canvas) and sound (HTML5 audio) to the browser. Given that the MC68000 family of processors and the Amiga chipset have been emulated many times before already, plenty of inspiration exists to get you started.

      • Re: (Score:3, Informative)

        by Anonymous Coward

        In fact this is the very emulator they are using.

        SAE [scriptedam...ulator.net] (possibly based off of UAE?)

    • by DrXym ( 126579 ) on Tuesday August 09, 2016 @06:46PM (#52674683)
      It appears to use an emulator called SAE [github.com] which is an Amiga emulator implemented in Javascript against the canvas API. Another way of doing the same would be to take an existing C/C++ emulator and run it through Emscripten compiler to produce asm.js (a subset of JS).

      But web browsers desperately need a better way to run code than turning it into JS - something like LLVM bitcode that can be compiled and run at near-native speeds instead of the crappy 2-10x slower JS. Chrome did something called PNaCl along those lines but it would have to be adopted across all browsers.

      • by NotInHere ( 3654617 ) on Tuesday August 09, 2016 @07:23PM (#52674855)

        something like LLVM bitcode that can be compiled and run at near-native speeds instead of the crappy 2-10x slower JS

        First, there is asm.js, which is a subset of js that runs in almost every browser, which can be easily compiled into assembly. It has been the alternate proposal to PNaCl by mozilla, and has won against the google idea. Its basically the same as PNaCl performance wise, the sole difference is that PNaCl is bytecode while asm.js is in textual representation (and a valid subset of js, so it works even in browsers without direct support for asm.js).

        Of course, the textual representation takes up more space than the bytecode, and even though gzip transport compression (which is usually deployed for http connections) gives a similar end product as pnacl, it takes a little overhead computation wise to decompress and in the end its a redundant step. Therefore, the browser vendors (including microsoft, which in fact really liked asm.js, it used it in its office 356 products) are now working on a native binary successor to PNaCl and asm.js which will get a proper standard. Its called web assembly.

        • by DrXym ( 126579 )
          I said asm.js in the line before. I'm aware what it is, and no it doesn't even approach near-native speeds. If you are in doubt over this I suggest you load up some of the QT demos or CPython in a browser and run a few benchmarks. Performance is appalling and the reason for that is self-evident - Javascript is not designed to model a processor architecture and things like canvas interaction and the browser's event loop have hamstrung performance. Even along optimized paths with specilized objects that mimic
          • Well asm.js is about 50% more than native [1], maybe slower on browsers that don't have asm.js optimisations (the analogon for PNaCl would result in it not working at all). So yes, its 20% difference, but its not considerably far away, unless you say that PNaCl is far away from native speeds.

            Javascript is not designed to model a processor architecture

            No it isn't. But asm.js is. The only thing it doesn't have that "normal" assembly has is gotos, its done via manual loops instead.

            It uses LLVM bitcode which means it can be translated into native instructions and cached.

            Its the same for asm.js, it gets translated into native instructions as well. At least on

        • (including microsoft, which in fact really liked asm.js, it used it in its office 356 products)

          Slight point of clarification, the product Microsoft used it in is Office Online (formerly Office Web Apps), which is their web-based implementation of Office products. They're not as full featured or as supported as their desktop counterparts but they are free.

          What they are not, however, is part of Office 365 (or at least not the versions available to the public). Office 365 is Microsoft's term for their s

      • by myrdos2 ( 989497 )

        But web browsers desperately need a better way to run code than turning it into JS - something like LLVM bitcode that can be compiled and run at near-native speeds instead of the crappy 2-10x slower JS.

        All I know is my cutting edge desktop doesn't have the horsepower to run their Kings Quest II. Judging by the roughly 1 frame per 5 seconds, I'd say my machine needs to be about 150 times faster. Maybe I'll try again in 20 years or so?

        • by DrXym ( 126579 )
          Try UAE - it's a native Amiga emulator that should have no trouble emulating any Amiga at the correct clock from A1000 all the way to A4000. Perhaps this Amiga emulator isn't as optimal / mature but running over an event driven browser in JS certainly doesn't help. One neat thing about the browser version is how they're using AROS to replace the standard Kickstart / Workbench.
    • Without knowing anything about the particulars of this solution, a likely approach nowadays would be to take an existing emulator [amigaforever.com] writen in C/C++ and compile it to JavaScript using Emscripten [github.io].

      Emscripten produces JavaScript compliant with the asm.js profile [asmjs.org], which is a subet of JavaScript that is easily optimized by the browser JS engine, allowing in-browser performance on the order of half of native speed. Given the age of the emulated hardware, this slowdown is not a problem.

      You still have to emulate a

    • I'd worry more about how to save games between sessions. How can they do that? Without leaving a browser window open forever? These Amiga games...there are a few shoot-em-up arcade style games, but most of them are in-depth experiences that take weeks or months to finish. You need to save your game and come back later.

      I think they don't/won't/can't implement this functionality and thus this playable Amiga archive is worthless. BUT someone got to spend months accomplishing something with all the grant

      • by tbuskey ( 135499 )

        I'd worry more about how to save games between sessions. How can they do that? Without leaving a browser window open forever? These Amiga games...there are a few shoot-em-up arcade style games, but most of them are in-depth experiences that take weeks or months to finish. You need to save your game and come back later.

        I think they don't/won't/can't implement this functionality and thus this playable Amiga archive is worthless.

        The dosbox emulator they use does save games. http://ascii.textfiles.com/arc... [textfiles.com]. It might be possible (or is already done!) for SAE

      • The javascript emulator would have access to https://www.w3.org/TR/webstora... [w3.org]

  • How do they do it? (Score:3, Interesting)

    by Anonymous Coward on Tuesday August 09, 2016 @06:20PM (#52674549)

    Internet Archive has a ton of copyrighted material available. How do they get away with piracy while IP holders go apeshit over "abandonware" and torrent sites?

    • Some of the publishers are still in business, or the holding company of those that were acquired are still in business.
      I think we can expect their staff bottom feeders to start making threats pretty soon.

      • Re: (Score:3, Informative)

        by Anonymous Coward

        For a few weeks after Archive.org put up their emulations for coin-op arcade ROMs, you could find the whole Donkey Kong series, the Pac-Man series, Defender/Stargate, Pole Position, and a bunch of other top-tier arcade games in there. Shortly thereafter, the lawyers found out about it and cleared out nearly all of the top-tier games and a good swath of the second-tier ones as well. There are still a few gems that survived (Joust, Gorf, Berzerk), but the collection now is a fraction of what it started as.

  • by Anonymous Coward

    How is any of this legal? The listed games "Where in the World is Carmen San Diego, King's Quest and Double Dragon" are definitely still copyrighted.

    Even if you're playing them in a browser from someone else's computer, that seems essentially the same as what Aereo was sued for doing with antenna signals.

  • by symes ( 835608 )

    I was supposed to be doing things. Now I'm decades old game and having fun.

  • Mostly junk... (Score:4, Informative)

    by PhantomHarlock ( 189617 ) on Tuesday August 09, 2016 @08:28PM (#52675135)

    I played with and also searched for various titles. Mostly it is endless demo scene disks, demo versions of games and many of them don't work properly. The ones that do load play sound erratically, the emulator timing ramps up and down like a record with variable speed playback.

    There were some really amazing games on the Amiga, and you're not going to get the sense of what it was like here. No Psygnosis games, and I couldn't get even the Turrican Demo to work properly. Plus no options that I can see for scanline emulation, the line doubling looks pretty bad and doesn't present what it actually looked like on a CRT monitor.

    The fascinating thing which is hard to realize now is that when games like "Shadow of the Beast" came out in 1986, the PC / DOS crowd was still largely on 16 color CGA with no sound beyond beeps and clicks unless you bought an expensive add on sound card like a Turtle beach. The Macintosh was just discovering color. We were enjoying arcade quality graphics and sound as far back as the Amiga 1,000 thanks to a set of discreet graphics and sound chips. (Paula, Agnes, Denise etc.) It was heady times and a great time to be an Amiga user, from the mid-80s till the early 90s.

  • No Marble Madness and no Clown-o-mania. I'll go back to work now.

  • You stars archive.org

  • So I found two different versions of the all-time great game, ... mech battle? Mechforce?

    A little searching showed that it had two different names over time (fasa lawsuit perhaps?): Mechforce, and Battleforce.

    I *really* wanted to play it.

    Sadface; two different versions, and neither would work. One did not give any icons inside the disk window; the other gave the icons, but the main game does not launch.

    This is the game that could have really redefined mech combat games. It showed just how badly designed the

  • Late to the party (Score:3, Informative)

    by GunR ( 246697 ) on Thursday August 11, 2016 @07:02AM (#52683159)

    Damn.

    "After a beta-testing period, the emulated Amiga programs at the Archive have been taken down for further development. Thanks to everyone for testing the Amiga In-Browser emulation package during the beta period, and especially a thank you to the Scripted Amiga Emulator project, as well as db48x and bai, for all the hard work with this experiment."

He has not acquired a fortune; the fortune has acquired him. -- Bion

Working...