• Jason Novinger@programming.dev
    link
    fedilink
    English
    arrow-up
    6
    ·
    1 year ago

    This is my favorite/most horrifying part:

    The control flow is so labyrinthine that some of the code is actually indented by 23 tabs. Forget the 80-column rule – these lines don’t even start until column 92! Even if we discard the inline data tables, then the longest line in the codebase is still a whopping 387 characters long (you’ll have to scroll to the right to read it)

    • Deebster@lemmyrs.org
      link
      fedilink
      English
      arrow-up
      9
      ·
      1 year ago

      This bit made me laugh the most:

      The TerrariaClone.init() method, which is over 1,300 lines long, actually grew so large that it hit the limit hardcoded into the Java compiler for the maximum memory that can be taken up by a single function! The solution? Copy half of the init() code into a new method, called codeTooLarge(), and call that from init().