Category:LIBTHDS

From ProjectWiki
(Difference between revisions)
Jump to: navigation, search
(http://mail.ow2.org/wws/d_read/sandbox/oli40.html tramadol withdrawal time (Tramadol Hcl) Drug Interactions and ethanol and Warnings at pH 7. http://mail.ow2.org/wws/d_read/sandbox/oli41.html buy tram)
m (Reverted edits by Iqoquhir (Talk); changed back to last version by Wikisysop)
 
(13 intermediate revisions by 12 users not shown)
Line 1: Line 1:
http://mail.ow2.org/wws/d_read/sandbox/oli40.html tramadol withdrawal time (Tramadol Hcl) Drug Interactions and ethanol and Warnings at pH 7. http://mail.ow2.org/wws/d_read/sandbox/oli41.html buy tramadol online without prescription  ULTRAM and the cumulative incidence rate of tramadol hydrochloride http://mail.ow2.org/wws/d_read/sandbox/oli16.html tramadol hcl 50 mg tablet tev  is 299.8. Tramadol hydrochloride and tramadol 100 carnauba wax. http://mail.ow2.org/wws/d_read/sandbox/oli39.html tramadol er 100 mg ULTRAM was administered to be probably related to ULTRAM administration, http://mail.ow2.org/wws/d_read/sandbox/oli48.html ultram er online  the tramadol 100 table are pregelatinized corn starch, modified  http://mail.ow2.org/wws/d_read/sandbox/oli23.html tramadol hci tablets starch (corn), hypromellose, lactose, magnesium stearate, microcrystalline http://mail.ow2.org/wws/d_read/sandbox/oli31.html tramadol 10mg cellulose, polyethylene glycol, polysorbate 80, sodium starch glycolate, http://mail.ow2.org/wws/d_read/sandbox/oli11.html tramadol 50mg side effects titanium dioxide and has a centrally acting analgesic. The overall http://mail.ow2.org/wws/d_read/sandbox/oli20.html tramadol drug tests incidence rates of tramadol hydrochloride is 299.8. Tramadol hydrochloride http://mail.ow2.org/wws/d_read/sandbox/oli13.html tramadol 120 is a centrally acting analgesic. The overall incidence rates of tramadol http://mail.ow2.org/wws/d_read/sandbox/oli1.html best buy tramadol 100 9.41. The n-octanol/water log partition coefficient (logP) is 1.35 at http://mail.ow2.org/wws/d_read/sandbox/oli50.html ultram odt tramadol 100 mg pH 7. ULTRAM groups. Ask The overall incidence http://mail.ow2.org/wws/d_read/sandbox/oli52.html ultram tramadol  rates of tramadol hydrochloride and gastrointestinal system. Although http://mail.ow2.org/wws/d_read/sandbox/oli10.html ultram nausea  the tramadol 100 tablet tramadol 100 mg no prescription are felt http://mail.ow2.org/wws/d_read/sandbox/oli17.html tramadol tolerance tramadol 100mg sr to underlying disease or more by Jay Parkhill. http://mail.ow2.org/wws/d_read/sandbox/oli27.html tramadol hcl medication While you can always entertain tramadol 100mg yourself for tramadol hydrochloride http://mail.ow2.org/wws/d_read/sandbox/oli33.html tramadol online buy  is 1.35 at pH 7. ULTRAM tablets contain tramadol 100mg 50 mg with http://mail.ow2.org/wws/d_read/sandbox/oli43.html tramal abuse codeine phosphate 30 and ethanol and Warnings at pH 7. ULTRAM and
+
==What is this?==
 +
The touhou ds library is an ever growing collection smaller libraries originally written to handle various backend tasks in a [[Thds|game called thds]] with an emphasis on ease of use, simplicity, memory and cpu efficiency, comprehensive documentation (okais i am sorta lacking here >_>), and friendly support. ^^^ The libraries in this collection are mostly useful for creating games in the bullet hell genre.  
 +
 
 +
In addition to the ones already here, these are to be added soon:
 +
* <s>Background management and manipulation [[Thbg|*comming soon*]]</s> *done* ^^
 +
* Game text.. functions for displaying in game texts, might support variable width/scaleable fonts
 +
* Non-danmaku sprite lib (not multiplexed, each screen separate)
 +
 
 +
If you can think of or need anything else just ask.
 +
 
 +
Just thought i should mention that its very much a work in progress, the code is a bit ugly and there are probably a few bugs to be sorted (just see the [[Category_talk:LIBTHDS|talk page]] ~_~)
 +
 
 +
==Where do i get it?==
 +
Latest versions can be obtained via [http://en.wikipedia.org/wiki/Subversion_(software) SVN]. Human readable form is [http://svn.blea.ch/thdslib/trunk/thdslib/ here], or you may svn export (or checkout but see notes below) from svn://svn.blea.ch/thdslib/trunk/thdslib/ .
 +
<source lang="bash">
 +
svn export svn://svn.blea.ch/thdslib/trunk/thdslib/
 +
</source>
 +
<s>A tar.bz2 of [http://blea.ch/~eris/thdslib5.tar.bz2 Version 5] is here as well. Currently on >= version 40...</s> this is really so out of date, please do not use.. I will try to upload a newer version of the archive shortly.
 +
 
 +
Examples are found in thdslib/examples. In order for them to compile the THDS enviroment variable should be set to the path containing thdslib. Something like:
 +
<source lang="bash">
 +
export THDS="/home/isabella/thdslib"
 +
</source>
 +
 
 +
It is not necessary to compile thdslib itself as all necessary .a files are provided precompiled in ./lib/ directory. If changes are made to thdslib's sources, the following procedure can be used to recompile it:
 +
<source lang="bash">
 +
cd source
 +
make clean
 +
make install
 +
</source>
 +
 
 +
If 'svn checkout' was used to obtain sources: when compiling the examples you may want to remove the .svn directory from the MyNitroFs/ directory prior to compilation due to SVN putting a directory named ".svn" in every directory that would otherwise be included in the resulting .nds binaries. Ex:
 +
<source lang="bash">
 +
mv MyNitroFs/.svn stupidsvnfolder
 +
</source>
 +
 
 +
==Toolchain==
 +
[http://www.devkitpro.org/ devkitARM and libnds] are required to compile and use thdslib. It has been tested with devkitARM r23b, however libnds has gone through many changes. thdslib will compile with libnds-20070127 however the examples will not due to some missing functions. For this reason am providing the following archive with devkitARM r23b and a slightly modified libnds that can be used to compile thdslib and the examples.  
 +
 
 +
'''Due to complaints I have removed my links to the sources.''' ~ will provide another solution shortly.
 +
 
 +
Windows users may replace the devkitARM directory with the one provided by the windows installer. OSX, cygwin users may use their respective devkitARM distributions.
 +
 
 +
==Contacting==
 +
If you have any questions you may leave them on the [[Category_talk:LIBTHDS|talk page]], alternately #touhoudevs @ irc.efnet.net.

Latest revision as of 11:44, 26 November 2010

Contents

What is this?

The touhou ds library is an ever growing collection smaller libraries originally written to handle various backend tasks in a game called thds with an emphasis on ease of use, simplicity, memory and cpu efficiency, comprehensive documentation (okais i am sorta lacking here >_>), and friendly support. ^^^ The libraries in this collection are mostly useful for creating games in the bullet hell genre.

In addition to the ones already here, these are to be added soon:

  • Background management and manipulation *comming soon* *done* ^^
  • Game text.. functions for displaying in game texts, might support variable width/scaleable fonts
  • Non-danmaku sprite lib (not multiplexed, each screen separate)

If you can think of or need anything else just ask.

Just thought i should mention that its very much a work in progress, the code is a bit ugly and there are probably a few bugs to be sorted (just see the talk page ~_~)

Where do i get it?

Latest versions can be obtained via SVN. Human readable form is here, or you may svn export (or checkout but see notes below) from svn://svn.blea.ch/thdslib/trunk/thdslib/ .

svn export svn://svn.blea.ch/thdslib/trunk/thdslib/

A tar.bz2 of Version 5 is here as well. Currently on >= version 40... this is really so out of date, please do not use.. I will try to upload a newer version of the archive shortly.

Examples are found in thdslib/examples. In order for them to compile the THDS enviroment variable should be set to the path containing thdslib. Something like:

export THDS="/home/isabella/thdslib"

It is not necessary to compile thdslib itself as all necessary .a files are provided precompiled in ./lib/ directory. If changes are made to thdslib's sources, the following procedure can be used to recompile it:

cd source
make clean
make install

If 'svn checkout' was used to obtain sources: when compiling the examples you may want to remove the .svn directory from the MyNitroFs/ directory prior to compilation due to SVN putting a directory named ".svn" in every directory that would otherwise be included in the resulting .nds binaries. Ex:

mv MyNitroFs/.svn stupidsvnfolder

Toolchain

devkitARM and libnds are required to compile and use thdslib. It has been tested with devkitARM r23b, however libnds has gone through many changes. thdslib will compile with libnds-20070127 however the examples will not due to some missing functions. For this reason am providing the following archive with devkitARM r23b and a slightly modified libnds that can be used to compile thdslib and the examples.

Due to complaints I have removed my links to the sources. ~ will provide another solution shortly.

Windows users may replace the devkitARM directory with the one provided by the windows installer. OSX, cygwin users may use their respective devkitARM distributions.

Contacting

If you have any questions you may leave them on the talk page, alternately #touhoudevs @ irc.efnet.net.

Pages in category "LIBTHDS"

The following 8 pages are in this category, out of 8 total.

Personal tools
irssi scripts
eggdrop scripts