Conversation

Notices

  1. ...how easy would it be to imitate that in Java or ActionScript, do you think?

    Wednesday, 30-Jul-14 02:44:51 UTC from web
    1. Imitate SCUMM?

      Wednesday, 30-Jul-14 02:45:45 UTC from bti
      1. @loveydoe Yeah.

        Wednesday, 30-Jul-14 02:46:00 UTC from web
        1. @zeldatra With the HTML5 canvas element and Javascript, you might be able to make a nice clone.

          Wednesday, 30-Jul-14 02:47:40 UTC from bti
          1. @loveydoe HTML5 canvas, huh? Flash CC added that as a programming method. Unfortunately, I despise everything else about Flash CC, so I'm guessing if I did that I wouldn't be able to program it in an object-oriented manner.

            Wednesday, 30-Jul-14 02:49:27 UTC from web
            1. @zeldatra It's possible to code in object-oriented JavaScript if you hate yourself.

              Wednesday, 30-Jul-14 02:51:13 UTC from web
            2. @zeldatra You can operate on the canvas using Javascript, no need for Flash. I believe Javascript supports associative array-based objects.

              Wednesday, 30-Jul-14 02:51:44 UTC from bti
            3. @zeldatra Javascript has a prototype-based OOP system that mimics the features of other object systems. You may be interested in the 'Prototype-based' section of Javascript's Wikipedia page.

              Wednesday, 30-Jul-14 02:58:10 UTC from bti
            4. @zeldatra # # For me, functional and imperative languages are a simpler way to go for many tasks that are usually set up as object ecosystems in an OOP language. In languages like C, one can often recreate the useful parts of an object system by using tables and function pointers. I think Javascript has some functional aspects as well.

              Wednesday, 30-Jul-14 03:04:18 UTC from bti