• JohnDClay@sh.itjust.works
    link
    fedilink
    arrow-up
    134
    ·
    2 days ago

    I wonder how many times this needs to be reposted and downscaled to no longer be true. It looks like this is already not the original resolution of the picture.

  • morrowind@lemmy.ml
    link
    fedilink
    arrow-up
    43
    ·
    2 days ago

    Does it though? This is a very compressable image. It’s around 30kb on my system, and that’s with the extra text on top

      • Skullgrid@lemmy.world
        link
        fedilink
        arrow-up
        1
        ·
        12 hours ago

        because he doesn’t understand how data generation works.

        I can probably write a program with an output that will reach infinite size if allowed to run forever. that program is probably less than 50 lines of code, which shouldn’t be more than a few kb, if that.

  • Cap@kbin.melroy.org
    link
    fedilink
    arrow-up
    27
    ·
    2 days ago

    Can someone ELI5? I mean, I understand what is being said, but how is it a whole game is less storage than a modern image of that game?

    • Captain Aggravated@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      55
      ·
      2 days ago

      A jpeg image is designed to hold any photograph. It can potentially display millions of colors, and needs to contain that data for possibly millions of pixels of on-screen data. Jpeg image compression does save some space compared to a bitmap which is literally 3 bytes of color data for every pixel in the image, but there’s only so optimized it can get before it can’t be used to store any possible photograph.

      The image above is 500x321 pixels with 32-bit ARGB color; so each pixel not only has independent red, green and blue data, but also 8 bits of transparency data.

      Super Mario Bros runs on the Nintendo Entertainment System, which has a working resolution of 256 x240 pixels. It has the capability of displaying 25 colors on screen simultaneously out of a total possible palette of 54 usable colors. It draws the background and foreground layers as “tiles” so you can store whole tiles in memory and then repeat them, and then on top of that it can draw hardware sprites which is how things that move more on screen like Mario, enemies etc. are made.

      Things like the animations of the question mark blocks which seem to shine or blink a bit, that’s done by cycling the colors that the sprite is being drawn with. Big Mario and Fire Mario are the same sprite but color swapped. The bushes and the clouds are the same shape, but different colors. The super mushroom and power mushroom are the same sprite but different colors. The underworld levels are just different colors on the same sprites as the overworld.

      The sound chip on the NES is very simple, it has five voice polyphony and can make two square waves, one triangle wave, one hiss-like noise, and one PCM sample sound (not used to my knowledge in SMB1; it’s how the steel drum sounds in the SMB3 sound track were made) and so what is stored on the cartridge for audio is more like sheet music than recorded sound. An mp3 file of the Ground Theme would also likely be larger than the entire game.

      SMB1 is also just…a VERY primitive game. It cannot scroll vertically (SMB2, the one that’s Doki Doki Panic in Japan, it can scroll vertically OR horizontally but not both at the same time; SMB3 could do both at the same time as showcased by the raccoon tail powerup, but it required a RAM expansion built into the cartridge) It can’t go backwards because it doesn’t record the state of objects that have scrolled off the screen. It has no save system or even a password system.

      Finally, the game was made in 6502 assembly with the specific hardware of the NES in mind; which saves a lot of resources compared to all the abstractions needed for higher level languages and their abstractions.

      • 1rre@discuss.tchncs.de
        link
        fedilink
        arrow-up
        8
        ·
        2 days ago

        it’s also worth mentioning that JPEG was designed for photographs, where there’s a very high likelihood that each pixel of an image will be a different colour to those immediately next to it. Because of this, JPEG not only has higher file sizes for text and 2d graphics/pixel art than PNG and especially a compressed SVG (which would far and away be the best method of representing the mario image - it’s close to the same “tile” thing but transferrable and well supported), but it also results in artifacts and lower quality of the image.

    • Hawke@lemmy.world
      link
      fedilink
      arrow-up
      58
      ·
      2 days ago

      Because the instructions, “draw a brick here, a pipe there, here are the rules for how jumping works, etc.” are smaller than “these pixels are blue, that one is orange, that one is white, etc.”

      • Tyfud@lemmy.world
        cake
        link
        fedilink
        arrow-up
        31
        ·
        edit-2
        2 days ago

        Also, the jpeg is going to store each pixel as a 8bit x3, Rgb (255 *3), color pallette for the color code, whereas the nes was limited to only 56 colors.

        • gramathy@lemmy.ml
          link
          fedilink
          arrow-up
          2
          ·
          2 days ago

          More: that palette was hard coded and the actual in use palettes were even smaller subsets of the system palette to reduce memory demand

    • Refurbished Refurbisher@lemmy.sdf.org
      link
      fedilink
      arrow-up
      38
      ·
      edit-2
      2 days ago

      The NES has a picture processor (PPU) that has special things made for 2D, cell (tile)-based graphics with hardware sprites. Being able to reuse tiles and express each tile with a few bytes really helps keep things small, as storage was very expensive back then. Also, without bank switching (which SMB1 did not have), the 6502 could only address up to 64kb of memory (including ROM and RAM).

      The music was also kept small, as it was generated in real time by the audio processor that was embedded in the CPU.

      I’m sure there’s a disassembly out there along with some YouTube videos if you want to understand a bit more. IMO programming for these old systems is more fun compared to modern systems, which in comparison, have no limitations. It is a boon to creativity.

      https://www.youtube.com/watch?v=Tfh0ytz8S0k Here is one good video explaining the basics of graphics on old systems.

    • Dudewitbow@lemmy.zip
      link
      fedilink
      arrow-up
      19
      ·
      2 days ago

      the biggest reason is that draw commands of the same color can be space efficient. another is that the NES had to deal with 56 colors while modern images use 8 bits per color channel (RGB) meannig it has to store a lot more data it doesnt necessarily need.

    • cadekat@pawb.social
      link
      fedilink
      arrow-up
      12
      ·
      2 days ago

      Because the person creating the image didn’t take the time to optimize the image. It’s probably just a PNG or a JPEG, which is way overkill for representing a NES frame.

      Other commenters have mentioned that the NES has 56 colors and uses tiles to draw the frame. If you took the same approach (maybe embedding a GIF tile in an SVG), you could cut down the size of the modern image significantly.

      • Floey@lemm.ee
        link
        fedilink
        arrow-up
        1
        ·
        1 day ago

        PNG is fine for this. A palletized PNG on max compression would be smaller than the game and totally lossless unlike this. First you gotta take this image and map/quantize it to the original palette though to destroy the JPEG artifacts, which produce colors in between ones that would have existed in the game’s output.