IOCCC Flight Simulator

(blog.aerojockey.com)

251 points | by xparadigm 2441 days ago

14 comments

  • userbinator 2441 days ago
    I am reminded of this 4 kilobyte demo: https://www.youtube.com/watch?v=jB0vBmiTr6o

    (Source code and discussion at https://news.ycombinator.com/item?id=11848097 ; explanation at http://www.iquilezles.org/www/material/function2009/function... )

    although the flight sim is a little more interesting from a technical perspective, since it's interactive and also not using the GPU to do most of the computation.

    Also, despite the source code being obfuscated, observe that that "external symbols" which are still visible, e.g. XDrawLine, XSetForeground, etc. already give a pretty good overview of how it does what it does --- and in general, when reverse-engineering or analysing software, inspecting where the "black box" interacts with the rest of the world is an important part of understanding it.

  • cdevs 2441 days ago
    And yet it looks like my coworkers everyday php code. Seriously though way to go above and beyond in the competition with something so interesting on its own as a x windows flight sim with easy to modify scenery.
  • Grustaf 2441 days ago
    Wow thats really impressive. I just wrote a flight sim the other day that i thought was frugal because it's less than 10 kloc. This on is about 100 times shorter!
    • noamhacker 2441 days ago
      The shape of the code is just as impressive as the size!
  • iso-8859-1 2440 days ago
    I have modified the Linux SABRE flight sim to compile and run on modern Linux systems. Only requires DirectFB (replaced SVGALIB) or SDL2. Build with scons.

    https://github.com/ysangkok/sabre

    Images and review at:

    http://www.tldp.org/LDP/LG/issue30/ayers3.html

  • senatorobama 2440 days ago
    I have been low-level systems coder for about 10 years, and have no clue how demos are made besides the fact they use the technique of procedural generation and/or shader(s).

    Is there a guide on how to start making one?

    • thristian 2440 days ago
      The historical path to demo making has been:

      - learn how to program a computing device with some kind of visual (and audible too, ideally) output

      - make the coolest looking (and sounding) thing you can get working

      - show it off to other people, look at what they made, get inspired to do better

      - return to step 2.

      There are more details, of course - a lot of the "classic" demo effects depend on writing to a linear framebuffer, which isn't exactly how modern video APIs work - and there's all kinds of tricks that are only relevant to the particular hardware they were invented on - it's not impressive to break the C64's sprite limit on hardware that can draw a billion triangles a second.

      My recommendation: find a way to draw pixels to a linear framebuffer (an HTML Canvas element, an SDL1.x Surface, even an OpenGL or Direct3D texture that you can render to a rectangle, if you can handle the complexity of those APIs), then go watch YouTube videos of classic 2D demos like Future Crew's "Unreal" and "Second Reality", and try to replicate those effects in your own framebuffer.

      You may succeed, you may invent your own effects that you think look just as good. Once you've got some things that look good, you might want to try optimizing for code-size or speed or mixing two effects together in a surprising way.

      And like any creative endeavour, the most important rule is: have fun.

  • 549362-30499 2441 days ago
    Pretty cool! I don't know why I expected otherwise, but the makefile works just fine despite being from 1998. It took 30 seconds to download the files, compile, and start playing the game!
    • lucb1e 2441 days ago
      I know why: we're used to software having dependencies, and those dependencies having dependencies, and using a dependency downloader (think Maven) which needs to be configured, or misses the right version of some dependency... in short, layers upon layers upon layers. The beauty of this kind of code is that it's really pure. That, in itself, is an achievement; let alone the size, obfuscation or shape.
      • reificator 2441 days ago
        Maybe devil you know here, but I'd take Maven over NPM.

        Installed one package on NPM, installer finished, 690 new packages installed.

        • pjmlp 2440 days ago
          Majority of which composed by a single function.
  • throwaway7645 2441 days ago
    I love using small amounts of code to write beautiful code...preferably games. I wish there was a book with 20 programs like this, just not obfuscated. I bet I would learn a lot.
  • shakna 2441 days ago
    Downloaded, ran "make banks"... And played. [0] Works like a charm!

    And despite the seriously obfuscated nature, I only got three warnings on compilation.

    Banks compiled down to 19kb (though dynamically linked), which is still fairly tiny (though much larger than the source code).

    Now excuse me, I'm going to have some old school fun.

    [0] https://imgur.com/RvEM5q2

  • Sir_Cmpwn 2441 days ago
    I've been wondering when IOCCC 2017 is going to happen. Does anyone have the word?
    • szc 2439 days ago
      This year has been complicated. We had wanted to do something special as it will be the 25th. I will prod the other judges as an update is due.
  • ipunchghosts 2441 days ago
    A writeup or video explaining how the code works would be fascinating.
  • mschuster91 2441 days ago
    Is there any explanation on how this thing actually works?
  • _benj 2441 days ago
    This might go beyond obfuscated to the art realm!
  • foota 2441 days ago
    Thank God for orthogonal matrices
  • org3432 2441 days ago
    The IOCCC is fun, but isn't it time for C/C++ to get standard formatting for consistent readability? Like Go and Python.
    • boterock 2440 days ago
      There is clang-format, which comes even with clang for windows, I use it with a Visual Studio extension and it formats the code whenever I save. I even prefer that sometimes I have the whitespace messed, but just having the braces right will format it properly, where in python you would have to fix whitespaces manually.
    • hedora 2441 days ago
      Honestly, most modern C/C++ software has converged to readable formatting. Before that ~C99 it was a crapshoot, but that was 18 years ago!

      I'm sure python fans will disagree, but the fact that whitespace errors don't effect the correctness of C/C++ code is a feature in my book.

    • pjmlp 2440 days ago
      It has, it is called whatever the company design style says and validated by tools like indent.
    • reificator 2441 days ago
      Sure, but good luck avoiding 927. [1]

      Go gets away with it because it ships with the official compiler tooling and most projects use it. C++ has 30 years of existing code that follows whatever convention was in vogue + whatever the individual preferred.

      [1]: https://xkcd.com/927/

      • org3432 2441 days ago
        C++ projects I work on just require you to use a current compiler, or an older one if the project is older. So seems like 927 might not be as big an issue.