Watching Notch hacking on the Ludum Dare competition is such a comforting experience - to me he is the Bob Ross of game development. He also seems to end up developing the same thing over and over again with different shades of green on the leaves. Even though you may don't like his style, you have to admire his pragmatism, productivity and humbleness.
is this really live? I mean -- hardly see him pause for thought or anything. Interesting to see he just uses plain 'ol Eclipse (Eclipse FTW!).
Notch programming a Doom-like in Dart
71–80 of 149 posts
Re: Notch programming a Doom-like in Dart
#72Btw, this is 2014 and I feel like we would already be able to play a simple game like Doom in the browser, just like the real thing. But no.. --edit-- ...multiplayer with several people, of course.
Re: Notch programming a Doom-like in Dart
#73Re: Notch programming a Doom-like in Dart
#74For me personally it is interesting to see that Notch seems to prefer Dart Editor (Built on the Eclipse platform) over something like Intellij IDEA or Webstorm ( https://www.dartlang.org/tools/webstorm/ ).
I don't see how that is interesting, his using the official Dart IDE.
Re: Notch programming a Doom-like in Dart
#75Btw, this is 2014 and I feel like we would already be able to play a simple game like Doom in the browser, just like the real thing. But no.. --edit-- ...multiplayer with several people, of course.
We've played this off and on at the office for the last couple years: http://www.quakelive.com
Re: Notch programming a Doom-like in Dart
#76Btw, this is 2014 and I feel like we would already be able to play a simple game like Doom in the browser, just like the real thing. But no.. --edit-- ...multiplayer with several people, of course.
Re: Notch programming a Doom-like in Dart
#77Earlier quoted context omitted.
I'm watching now and it doesn't seem that bad, sure he switches tabs with the mouse but it seems like he is using quite a lot of keyboard shortcuts otherwise. I'd almost wager he has a plugin to emulate vim or emacs keybinds, seeing as he's moving the cursor forward by words and jumping around the code a lot without using the mouse at all.
By the powerful sound of the keystroke when moving words, I'd say he is using Ctrl+ . That is very common in Windows. BTW I'm not able to switch between OSX and Windows (home & work) efficiently - Windows' shortcuts are so much easier on my hands. Is there any way people make the two OSes more similar?
I use KeyRemap4MacBook, which kicks in as soon as I connect my hardware windows keyboard to it (which is basically always when I sit down to code). It has a lot of default windows compatibility settings, but you can customize at will. I added a few myself by hand as well (also to get desktop switching the same as I was used to from Ubuntu :).
Re: Notch programming a Doom-like in Dart
#78Earlier quoted context omitted.
is this really live? I mean -- hardly see him pause for thought or anything. Interesting to see he just uses plain 'ol Eclipse (Eclipse FTW!).
He is using the Dart Editor (an editor using the Eclipse platform written from scratch for Dart support): https://www.dartlang.org/tools/editor/
Eclipse is a very robust, very flexible editor.
UPDATE - Here seems to be the plugin: https://www.dartlang.org/tools/eclipse-plugin/
Re: Notch programming a Doom-like in Dart
#79I'm so impressed watching Notch program in realtime. "Last Minute Christmas Chopping" was an eye opener for me. ( http://www.ludumdare.com/compo/ludum-dare-28/?action=preview... ). I was totally baffled when he started to draw the ascii character map pixel by pixel in an 48h competition, but the result was usable and actually quite simple. My takeaway is this: Doing something quick and dirty for a first draft and imp…
Dart has a good mix of fast live-reload dev workflow, great IDE editing and debugging experience as well as productive optional typing analysis and feedback. Which seems to suit @notch's GTD/experimental coding style.
Re: Notch programming a Doom-like in Dart
#80Hey Notch, why Dart?