TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Automatic 3Dification of Nintendo Games: The GlEnd() of Zelda

214 pointsby phoboslababout 9 years ago

8 comments

ketralnisabout 9 years ago
I think the really clever bit is the way he&#x27;s using save states to automatically figure out the game physics. For instance, he holds the left button and looks for a memory location that&#x27;s decreasing, figures that must be the X location. Then restores the memory state to before he did that. With that info he differentiates obstacles by trying to walk into them. If it fails, it&#x27;s a wall (so draw it like a wall instead of a floor). Restore back to the player&#x27;s timeline and continue<p>He doesn&#x27;t say if that&#x27;s a step he does once per game or every few frames, but given the clock speed differences between the host and guest VM it could well be redone pretty constantly which would allow for games with more than one mode of play
评论 #11416650 未加载
评论 #11415436 未加载
cornstalksabout 9 years ago
Minor nitpick, but can we change the title here from &quot;GlEnd()&quot; to &quot;glEnd()&quot;? That is, after all, the correct form of the actual function (and the original title). Changing the capitalization to a big G suggests an entirely different non-standard (and non-existent) function.
评论 #11415795 未加载
jtolmarabout 9 years ago
Way back in highschool when I was a part of the ROM hacking scene, I thought it might be possible to make an emulator that can automatically reverse engineer enough of the ROM to start building a level editor. I didn&#x27;t think it was possible for it to always work - NES level compression formats are just too weird for that - but I thought you could do it for at least some of the more sane formats.<p>The work here on automatically figuring out what RAM belongs to the character makes me think it&#x27;s possible again. Cool stuff.
Houshalterabout 9 years ago
I thought this was an elaborate April fools joke until halfway through the video when I realized he was serious. Everything this guy does is amazing.
评论 #11415481 未加载
brudgersabout 9 years ago
Homepage at CMU: <a href="http:&#x2F;&#x2F;www.cs.cmu.edu&#x2F;~tom7&#x2F;zelda&#x2F;" rel="nofollow">http:&#x2F;&#x2F;www.cs.cmu.edu&#x2F;~tom7&#x2F;zelda&#x2F;</a>
评论 #11414934 未加载
cypharabout 9 years ago
The source code for the project is here (<a href="https:&#x2F;&#x2F;sourceforge.net&#x2F;p&#x2F;tom7misc&#x2F;svn&#x2F;HEAD&#x2F;tree&#x2F;trunk&#x2F;smeight&#x2F;" rel="nofollow">https:&#x2F;&#x2F;sourceforge.net&#x2F;p&#x2F;tom7misc&#x2F;svn&#x2F;HEAD&#x2F;tree&#x2F;trunk&#x2F;smeig...</a>). There doesn&#x27;t appear to be a license file, maybe we could ask him to release it under a free software license?
ant6nabout 9 years ago
This is really cool. I also like the video a lot. I wonder how the drawing animations are done. Is it just recording drawing stuff with MS Paint? There hast to be a better way!
评论 #11416570 未加载
cypharabout 9 years ago
I love the scientific approach to doing experiments to determine the type of game and it&#x27;s very cool that it can be done automatically.