<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>So after Castlevania, I tackle Zelda...</title>
<description> And thats about It. See, I have too much free time, and instead of saving the planet or working out to get rid of my glorious belly, I&amp;#039;d rather do a second project.

So waht I be looking for is somebody to code it. HOWEVER since I know it would be a big task, I am only asking for a basic movement and map loading system. nothing else.

See, I&amp;#039;d love to do some graphical stuff first to get things rolling. And I love Daid and not so secretly hope he could do this with me once the Prophecy is done. And I&amp;#039;d like to have some stuff done already if this happens.

So basically, I&amp;#039;d need my character move and the maps to load and thats it already.
You would be doing this on PC its basically just for me to test the visuals to make my workflow better.

I&amp;#039;d be very grateful if one could do that for me :)</description><link>http://forum.wiibrew.org/read.php?26,63043,63043#msg-63043</link><lastBuildDate>Tue, 11 Aug 2026 06:52:09 +0200</lastBuildDate>
<generator>Phorum 5.2.23</generator>
<item>
<guid>http://forum.wiibrew.org/read.php?26,63043,63211#msg-63211</guid>
<title>Re: So after Castlevania, I tackle Zelda...</title><link>http://forum.wiibrew.org/read.php?26,63043,63211#msg-63211</link><description><![CDATA[ Yeah, I&#039;m doing multi-instruments. I like laying down a base piano line to get an idea recorded and then I use it for concept. My keyboard has over 238 GM voices, so there&#039;s no lack in good instruments.<br /><br />I&#039;ll PM you my info as requested...]]></description>
<dc:creator>slyfox299</dc:creator>
<category>Ideas, requests</category><pubDate>Sun, 19 Dec 2010 22:44:36 +0100</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,63043,63206#msg-63206</guid>
<title>Re: So after Castlevania, I tackle Zelda...</title><link>http://forum.wiibrew.org/read.php?26,63043,63206#msg-63206</link><description><![CDATA[ okay, so i love concepts 2 and 3. very nice. i suppose you are adding more insturments and stuff as we go along. as for the coding, i can tell you the graphics are doing fine. if you ahve msn or ICQ send me your contact data as PM we can talk there^^]]></description>
<dc:creator>Yoghurt</dc:creator>
<category>Ideas, requests</category><pubDate>Sun, 19 Dec 2010 18:53:34 +0100</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,63043,63184#msg-63184</guid>
<title>Re: So after Castlevania, I tackle Zelda...</title><link>http://forum.wiibrew.org/read.php?26,63043,63184#msg-63184</link><description><![CDATA[ Ok, I did three small concept pieces, here&#039;s the links... Hope the coding is coming along well!<br /><br /><a href="http://zachdoesntwork.com/music/Concept1.mp3" rel="nofollow">http://zachdoesntwork.com/music/Concept1.mp3</a> - Idea of Intro-style music<br /><br /><a href="http://zachdoesntwork.com/music/Concept2.mp3" rel="nofollow">http://zachdoesntwork.com/music/Concept2.mp3</a> - Idea of Cut-scene style music<br /><br /><a href="http://zachdoesntwork.com/music/Concept3.mp3" rel="nofollow">http://zachdoesntwork.com/music/Concept3.mp3</a> - Idea of Dungeon/Battle style music]]></description>
<dc:creator>slyfox299</dc:creator>
<category>Ideas, requests</category><pubDate>Sun, 19 Dec 2010 03:30:49 +0100</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,63043,63145#msg-63145</guid>
<title>Re: So after Castlevania, I tackle Zelda...</title><link>http://forum.wiibrew.org/read.php?26,63043,63145#msg-63145</link><description><![CDATA[ Sounds good, I&#039;ll DL the source later on and take a look. It&#039;s good to know that it was fixed so I&#039;ll have a look at that as well..<br /><br />I&#039;ll whip up something and send a link later on...]]></description>
<dc:creator>slyfox299</dc:creator>
<category>Ideas, requests</category><pubDate>Thu, 16 Dec 2010 22:34:30 +0100</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,63043,63142#msg-63142</guid>
<title>Re: So after Castlevania, I tackle Zelda...</title><link>http://forum.wiibrew.org/read.php?26,63043,63142#msg-63142</link><description><![CDATA[ Well hey if you&#039;re accepting additional coders I think you two sound like a fun couple to work with!<br /><br />I took the plunge and went back to school this year, nixing my former abundance of free time, but I do have a 3-week Christmas break starting right about... now!]]></description>
<dc:creator>calvinss4</dc:creator>
<category>Ideas, requests</category><pubDate>Thu, 16 Dec 2010 13:24:03 +0100</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,63043,63141#msg-63141</guid>
<title>Re: So after Castlevania, I tackle Zelda...</title><link>http://forum.wiibrew.org/read.php?26,63043,63141#msg-63141</link><description><![CDATA[ The black screen&return to HBC is a failure to load any data (font data in this case) this is because the data file needs to be found in the right folder on the SD card. I&#039;ve updated the zipfile with the right paths. This was fixed a few hours after the initial post.<br /><br />The demo has also been added to the homebrew browser, so you could pick it up from there (we have 9 downloads! whoho!)<br /><br />If you want to help with the code then you are welcome, even if you are a bit rusty. The code is mostly C++, without templates or anything fancy. The basic engine should be easy to follow, all the wii/PC related stuff is abstracted to simple generic functions and classes that act the same on both platforms. Most magic is handled by the base classes which are solid now.<br /><br />For a small example, I added a very simple static burning flame effect yesterday. This is all the code I needed to add:<br /><pre class="bbcode">class TBurningFlame : public TObject
{
public:
    int frameNr;
    
    TBurningFlame(int x, int y);
    virtual ~TBurningFlame();

    virtual void draw();
    virtual void tick();

    OBJECT_SAVE("%i,%i,burningflame,\n", int(x), int(y));
};</pre>
<pre class="bbcode">TImage* burningFlameImage = new TImage("Game/sprites/flame_burning.png");

TBurningFlame::TBurningFlame(int x, int y)
: TObject(x, y, 18, 32, -2)
{
    frameNr = 0;
}

TBurningFlame::~TBurningFlame()
{
}

void TBurningFlame::draw()
{
    burningFlameImage-&gt;draw(int(x) - viewX, int(y) - viewY, 18, 32, 18 * ((frameNr / 4) % 8), 0);
}

void TBurningFlame::tick()
{
    frameNr++;
}</pre>
And 2 more lines in my level loading code along the lines of, if (strcmp(type, "burningflame") == 0) new TBurningFlame(x, y);<br />And 2 more lines in the &#039;developer mode&#039; code (which is not active in the released versions) so Yoghurt could place them.<br /><br />15 minutes later there where pretty flames placed all over stage 2. Our development cycles are short and fast, it&#039;s really great this way.<br /><br />I&#039;m still thinking about some tricks so the lines in the level loading and developer mode are no longer needed, but I don&#039;t want to lose the flexibility I currently have.]]></description>
<dc:creator>Daid</dc:creator>
<category>Ideas, requests</category><pubDate>Thu, 16 Dec 2010 11:45:34 +0100</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,63043,63131#msg-63131</guid>
<title>Re: So after Castlevania, I tackle Zelda...</title><link>http://forum.wiibrew.org/read.php?26,63043,63131#msg-63131</link><description><![CDATA[ hey slyfox, just redownlaod it we uploaded a fixed version ;)<br /><br />as for the music, as a musician, i do all that myself. still, if you want to contribute with music, go ahead, whip up some nice zelda like tunes (no real zelda tunes though) and send them over and ill take a listen. if its any good, its in, saves me work^^]]></description>
<dc:creator>Yoghurt</dc:creator>
<category>Ideas, requests</category><pubDate>Thu, 16 Dec 2010 04:48:14 +0100</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,63043,63111#msg-63111</guid>
<title>Re: So after Castlevania, I tackle Zelda...</title><link>http://forum.wiibrew.org/read.php?26,63043,63111#msg-63111</link><description><![CDATA[ As I forementioned in a previous post, I&#039;m still rusty with coding, but I&#039;d be happy to help contribute by providing any music for the game. Let me know if you&#039;re interested...<br /><br />As a side note: I have a 1st gen wii, one of the first models, and I&#039;ve got the latest HBC available. I tested your Prophecy minutes after it was posted and I got a black screen and was sent back to HBC. I don&#039;t mean to hijack this thread - sorry - just wanted to let you know...]]></description>
<dc:creator>slyfox299</dc:creator>
<category>Ideas, requests</category><pubDate>Wed, 15 Dec 2010 19:18:28 +0100</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,63043,63053#msg-63053</guid>
<title>Re: So after Castlevania, I tackle Zelda...</title><link>http://forum.wiibrew.org/read.php?26,63043,63053#msg-63053</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Yoghurt</strong><br />and thats the reason i love you my dear^^</div></blockquote>You better stay with your wife, she is better looking ;-)<br /><br /><blockquote class="bbcode"><div><small>Quote<br /></small><strong></strong><br />yeah, i do love those games, especially terranigma. so good.<br />well, i already have a few things in place. as ive already said, i have way too much freetime on my hands and need something to do while you are not available XD<br />so, if you find the time, could you adapt the prophecy code for top down? i could test the level maps then. saves me alot of trouble. and alot of time once mirenia is done.</div></blockquote>I&#039;ll put something together quickly. Shouldn&#039;t be to hard, as long as you don&#039;t need to many animations and stuff.<br /><br /><blockquote class="bbcode"><div><small>Quote<br /></small><strong></strong><br />speaking of which, i got some nice stuff coming your way^^</div></blockquote>I surely hope it&#039;s not another god damn water snake :-P<br />Or will it be graphics for Artija? Which might be the last piece needed for finishing the stage 1 intro.<br />I think I will do some work on the Venus plant tonight, as the water snake is driving me mad :-D]]></description>
<dc:creator>Daid</dc:creator>
<category>Ideas, requests</category><pubDate>Mon, 13 Dec 2010 17:10:00 +0100</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,63043,63052#msg-63052</guid>
<title>Re: So after Castlevania, I tackle Zelda...</title><link>http://forum.wiibrew.org/read.php?26,63043,63052#msg-63052</link><description><![CDATA[ and thats the reason i love you my dear^^<br /><br />yeah, i do love those games, especially terranigma. so good.<br />well, i already have a few things in place. as ive already said, i have way too much freetime on my hands and need something to do while you are not available XD<br />so, if you find the time, could you adapt the prophecy code for top down? i could test the level maps then. saves me alot of trouble. and alot of time once mirenia is done. speaking of which, i got some nice stuff coming your way^^]]></description>
<dc:creator>Yoghurt</dc:creator>
<category>Ideas, requests</category><pubDate>Mon, 13 Dec 2010 16:22:43 +0100</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,63043,63048#msg-63048</guid>
<title>Re: So after Castlevania, I tackle Zelda...</title><link>http://forum.wiibrew.org/read.php?26,63043,63048#msg-63048</link><description><![CDATA[ Lets finish The Prophecy first :P<br /><br />And there are quite a few zelda clone projects already, from 100% custom graphics to rips from Zelda 1 for the nes or Zelda from the snes.<br /><br />[<a href="http://www.zeldaroth.fr/us/zroth.php" rel="nofollow">www.zeldaroth.fr</a>]<br />[<a href="http://www.zeldaclassic.com/" rel="nofollow">www.zeldaclassic.com</a>]<br />[<a href="http://sourceforge.net/search/?q=zelda" rel="nofollow">sourceforge.net</a>]<br /><br />I actually have code lying around for a zelda clone with snes graphics. But that doesn&#039;t use &#039;free form&#039; pictures for maps as you used for The Prophecy, but a tilemap. It&#039;s pretty old code, so I have no idea what state it is in.<br /><br />The &#039;engine&#039; I build for the The Prophecy is also so generic that I could easily adept it for top down use.<br /><br />And if you want to build something in the style of zelda, then don&#039;t forget to take a look at the other excellent games which follow the same style: Secret of Mana, Terranigma and Soulblazer.]]></description>
<dc:creator>Daid</dc:creator>
<category>Ideas, requests</category><pubDate>Mon, 13 Dec 2010 10:46:22 +0100</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,63043,63043#msg-63043</guid>
<title>So after Castlevania, I tackle Zelda...</title><link>http://forum.wiibrew.org/read.php?26,63043,63043#msg-63043</link><description><![CDATA[ And thats about It. See, I have too much free time, and instead of saving the planet or working out to get rid of my glorious belly, I&#039;d rather do a second project.<br /><br />So waht I be looking for is somebody to code it. HOWEVER since I know it would be a big task, I am only asking for a basic movement and map loading system. nothing else.<br /><br />See, I&#039;d love to do some graphical stuff first to get things rolling. And I love Daid and not so secretly hope he could do this with me once the Prophecy is done. And I&#039;d like to have some stuff done already if this happens.<br /><br />So basically, I&#039;d need my character move and the maps to load and thats it already.<br />You would be doing this on PC its basically just for me to test the visuals to make my workflow better.<br /><br />I&#039;d be very grateful if one could do that for me :)]]></description>
<dc:creator>Yoghurt</dc:creator>
<category>Ideas, requests</category><pubDate>Mon, 13 Dec 2010 08:11:09 +0100</pubDate></item>
</channel>
</rss>