<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>text to screen library</title>
<description> I&amp;#039;m not sure if this is the right section, but here I go. I was thinking about a way to write instructions for an app that can be accessed while in the game. I was wondering if somebody could code a simple library that would read and write a txt file to screen while in a graphics mode. It would be in the form of a text box with a background behind it, and if the text was too long it could have some kind of primative scroll bar, even if it&amp;#039;s only operational by the up and down arrows. I don&amp;#039;t think it would very hard to read and write a test file to screen, but I guess the text box and scrolling would get more complex. I would try and help, but I&amp;#039;m in the middle of another project right now.</description><link>http://forum.wiibrew.org/read.php?26,51239,51239#msg-51239</link><lastBuildDate>Mon, 20 Jul 2026 12:09:10 +0200</lastBuildDate>
<generator>Phorum 5.2.23</generator>
<item>
<guid>http://forum.wiibrew.org/read.php?26,51239,51386#msg-51386</guid>
<title>Re: text to screen library</title><link>http://forum.wiibrew.org/read.php?26,51239,51386#msg-51386</link><description><![CDATA[ an html guide would be fine too]]></description>
<dc:creator>g_man</dc:creator>
<category>Ideas, requests</category><pubDate>Tue, 23 Mar 2010 17:32:20 +0100</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,51239,51371#msg-51371</guid>
<title>Re: text to screen library</title><link>http://forum.wiibrew.org/read.php?26,51239,51371#msg-51371</link><description><![CDATA[ On a side note, VC games use html for the operations guide.]]></description>
<dc:creator>bg4545</dc:creator>
<category>Ideas, requests</category><pubDate>Tue, 23 Mar 2010 03:15:52 +0100</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,51239,51331#msg-51331</guid>
<title>Re: text to screen library</title><link>http://forum.wiibrew.org/read.php?26,51239,51331#msg-51331</link><description><![CDATA[ I wasn&#039;t heading in the direction of something like the VC manual. I was thinking like a page from a link from the main menu of an app. Say you start the app MyApp. It brings you to a menu which says Play, Settings, Multi-player, instructions. When you click on the instructions link, it takes you to a different page, like if you hit play it would take you to a different page, this page would be called by a library function, which would write an instruction page, from a text file, to screen, with settings such as width, size of text, text font, background color/picture, etc all defined by the user, or the programmer. It wouldn&#039;t be this complex at first, but over time it would build on itself.]]></description>
<dc:creator>g_man</dc:creator>
<category>Ideas, requests</category><pubDate>Mon, 22 Mar 2010 19:51:31 +0100</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,51239,51320#msg-51320</guid>
<title>Re: text to screen library</title><link>http://forum.wiibrew.org/read.php?26,51239,51320#msg-51320</link><description><![CDATA[ all wiiware and VC games are made with the official SDK. when you click the button for the manual, it uses libraries that the SDK apps share to draw the manual on the screen.<br /><br />since homebrew doesnt really have a GFX framework library that is shared among them all, you would need to either make this into its own library and link it to you app, or you would need to make it compatible with all the different homebrew framework libraries. either one is not going to be easy.]]></description>
<dc:creator>giantpune</dc:creator>
<category>Ideas, requests</category><pubDate>Mon, 22 Mar 2010 12:12:10 +0100</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,51239,51267#msg-51267</guid>
<title>Re: text to screen library</title><link>http://forum.wiibrew.org/read.php?26,51239,51267#msg-51267</link><description><![CDATA[ Yah, kinda]]></description>
<dc:creator>g_man</dc:creator>
<category>Ideas, requests</category><pubDate>Sun, 21 Mar 2010 02:17:18 +0100</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,51239,51265#msg-51265</guid>
<title>Re: text to screen library</title><link>http://forum.wiibrew.org/read.php?26,51239,51265#msg-51265</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>g_man</strong><br />I was asking because as I was creating my current app I thought it would be nice to have one universal way to write ingame instructions.</div></blockquote><br />So pretty much like the "Operating Manual" in Wiiware and Virtual Console games]]></description>
<dc:creator>cactusjack901</dc:creator>
<category>Ideas, requests</category><pubDate>Sun, 21 Mar 2010 00:31:03 +0100</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,51239,51264#msg-51264</guid>
<title>Re: text to screen library</title><link>http://forum.wiibrew.org/read.php?26,51239,51264#msg-51264</link><description><![CDATA[ I was asking because as I was creating my current app I thought it would be nice to have one universal way to write ingame instructions.]]></description>
<dc:creator>g_man</dc:creator>
<category>Ideas, requests</category><pubDate>Sun, 21 Mar 2010 00:26:18 +0100</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,51239,51257#msg-51257</guid>
<title>Re: text to screen library</title><link>http://forum.wiibrew.org/read.php?26,51239,51257#msg-51257</link><description><![CDATA[ <pre class="bbcode">
fopen()
fread()
fclose()
printf()</pre>
4 function calls; It&#039;s extremely simple, do it yourself.<br /><br />Writing an entire library for this would be very silly considering that it would be nigh impossible to make it compatible with all of the different libraries (libwiisprite, GRRLIB, libwiigui, MLib, SDL, freetype, freetypeGX, ftimage, etc.) out there that users are running. Even if you could, you&#039;d wind up with highly inefficient and redundant code at best, and unpredictable crashes as well at worst.<br /><br />Perhaps this is an issue of you don&#039;t know how to do it so you&#039;re trying to get someone to do it for you? If so, just ask. No reason to cover up like this.]]></description>
<dc:creator>Arikado</dc:creator>
<category>Ideas, requests</category><pubDate>Sat, 20 Mar 2010 21:14:23 +0100</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,51239,51249#msg-51249</guid>
<title>Re: text to screen library</title><link>http://forum.wiibrew.org/read.php?26,51239,51249#msg-51249</link><description><![CDATA[ I&#039;m too lazy to do it. And I think that it would be nice to have 1 common method that user can get used to. I think it would eventually vet more complicated that just printing text to the screen. Maybe we could have some kind of ini file that would properties like the color of the font, size, font, style. In conclusion I just think that having one function call would be nice.]]></description>
<dc:creator>g_man</dc:creator>
<category>Ideas, requests</category><pubDate>Sat, 20 Mar 2010 17:34:48 +0100</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,51239,51246#msg-51246</guid>
<title>Re: text to screen library</title><link>http://forum.wiibrew.org/read.php?26,51239,51246#msg-51246</link><description><![CDATA[ Why do you need a library to do something so trivial?]]></description>
<dc:creator>Arikado</dc:creator>
<category>Ideas, requests</category><pubDate>Sat, 20 Mar 2010 14:48:07 +0100</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,51239,51240#msg-51240</guid>
<title>Re: text to screen library</title><link>http://forum.wiibrew.org/read.php?26,51239,51240#msg-51240</link><description><![CDATA[ That sounds like a good idea....]]></description>
<dc:creator>WaxyPumpkin72</dc:creator>
<category>Ideas, requests</category><pubDate>Sat, 20 Mar 2010 06:11:41 +0100</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,51239,51239#msg-51239</guid>
<title>text to screen library</title><link>http://forum.wiibrew.org/read.php?26,51239,51239#msg-51239</link><description><![CDATA[ I&#039;m not sure if this is the right section, but here I go. I was thinking about a way to write instructions for an app that can be accessed while in the game. I was wondering if somebody could code a simple library that would read and write a txt file to screen while in a graphics mode. It would be in the form of a text box with a background behind it, and if the text was too long it could have some kind of primative scroll bar, even if it&#039;s only operational by the up and down arrows. I don&#039;t think it would very hard to read and write a test file to screen, but I guess the text box and scrolling would get more complex. I would try and help, but I&#039;m in the middle of another project right now.]]></description>
<dc:creator>g_man</dc:creator>
<category>Ideas, requests</category><pubDate>Sat, 20 Mar 2010 06:07:10 +0100</pubDate></item>
</channel>
</rss>