• @Kethal
      link
      3
      edit-2
      3 months ago

      That’s nifty. If I understand this, the advantage of a joystick using game port instead of MIDI is much simpler hardware. The game port seems like a sort of ADC which means the joystick needs only very simple analog components. A midi joystick would need those same analog components, plus its own ADCs and some digital logic for midi comms. Without the need in most games for dozens of axes and buttons, the extra cost and complexity wouldn’t be worth it.

      I did find this though, if someone has midi stuff and wanted to go wild. https://github.com/c0redumb/midi2vjoy

      • @dejected_warp_core
        link
        2
        edit-2
        3 months ago

        A midi joystick would need those same analog components, plus its own ADCs and some digital logic for midi comms.

        That’s the gist of it, yes. Consider that the most silicon peripherals of the time had were things like shift registers in NES controllers. The rest was all switches and pots (joystick), the latter of which had to be calibrated every time you fired up a game.

        In another timeline, embracing MIDI in the 80’s and 90’s for game controllers would have been amazing. I feel like Japan would have really run wild with something like that.

        • @Kethal
          link
          23 months ago

          Do you know how that compares to USB today? I assume those need ADCs and some sort of digital logic, which overall is similar to midi. I assume that whatever USB is doing is much simpler though, still making midi more expensive. Maybe not though, and we’re missing out on some crazy joysticks?

          • @dejected_warp_core
            link
            2
            edit-2
            3 months ago

            Do you know how that compares to USB today?

            I know enough to be dangerous.

            I assume that whatever USB is doing is much simpler though, still making midi more expensive.

            Basically we live in a silicon rich world compared to back then. Your vision of putting the ADC circuits in the peripheral is exactly what’s done now with every game controller on the market. And no, USB is technically much more complicated since MIDI is just a serial data protocol whereas USB is a full-on bidirectional packet network. Yet silicon-wise, it’s kind of same-y since the guts of these devices are one or two purpose-built chips for either USB or MIDI. Heck, they even use the same number of wires!

            If you’re wondering why MIDI devices today seem expensive despite rocking a 40+ year old communication standard, its because the cost is in everything else. As far as I understand, musical instruments (and anything else in that ecosystem) need rich, repeatable, and reliable tactile input with a decent duty cycle. They often need to be roadworthy, or put up with being run hard in a studio. But also there has always been kind of a premium attached to music stuff in general. Maybe lower production numbers of devices compared to game consoles? Maybe they’re mostly professional or “prosumer” goods? I honestly never understood the big picture here.

            Also, there’s a trend of musicians going back to “control voltage” style synths, which is basically analog signal processing from the 70’s and earlier (e.g. Moog). And feature-for-feature, that stuff is even more expensive. Go figure.

            Maybe not though, and we’re missing out on some crazy joysticks?

            I mean, people have demolished Dark Souls using a Guitar Hero guitar, and also using MIDI drumkits. So there’s that. Anything’s possible with the right silicon glue in play.