Nintendo DS News
poffPad v0.2 (NDS Application)

poffPad is a extremly simple drawing application for Nintendo DS.

Thanks to http://www.nintendomax.com for the news.

http://home.houston.rr.com/poffyprog/

By with 0 comments
DS Twitter v1.3 (NDS Application)

DS Twitter is a Twitter client for Nintendo DS.

Thanks to http://www.nintendomax.com for the news.

http://acdrtux.es/tag/dstwitter/

By with 0 comments
The RosaryDS (NDS misc)

Say, learn, and practice saying the Rosary on a Nintendo DS! Do you need an easy way to brush-up on your Hail Marys, Our Fathers, Apostles’ Creed, and Glory Be to the Father prayers? Try out The RosaryDS.

The Rosary is made up of twenty “mysteries” (significant events or moments in the life of Jesus and Mary), which, following the Apostolic Letter Rosarium Virginis Mariae, are grouped into four series. The Rosary is made of beads which represent which prayer is to be recited. Normally, the person saying the rosary holds on to the current bead in which they are reciting.

The first of the four mysteries contains joyful mysteries (recited on Mondays and Saturdays); the second, the mysteries of light (Thursdays); the third, the sorrowful mysteries (Tuesdays and Fridays); and the fourth, the glorious mysteries (Wednesdays and Sundays).

“This indication is not intended to limit a rightful freedom in personal and community prayer, where account needs to be taken of spiritual and pastoral needs and of the occurrence of particular liturgical celebrations which might call for suitable adaptations.” (Rosarium Virginis Mariae, 38).

Discussion: http://forum.palib.info/index.php?topic=5631.0

http://code.google.com/p/therosaryds/

By with 0 comments
DronS v1.1 (NDS Game)

DronS is a 3D Tron style game.

Changes:

* Keyboard glitch, letter was added even if you didnt pressed on the keyboard
* Removed compo screen >.< * Removed some left unused float left-overs + "Failed to connect" message if joining failed

Thanks to http://www.dcemu.co.uk and http://www.tehskeen.com for the news.

http://forum.palib.info/index.php?topic=5268.0

By with 0 comments
Project Sheratan (25-08-2008) (NDS Game)

Aerthel updated his Nintendo DS homebrew game “Project Sheratan”.

This Project aims to create a Card Battle engine for RPG games on Nintendo DS, mimicking the Baten Kaitos series’s card system.

Release notes:

Just a little update, the engine now supports card swapping. Controls for the tech demo:

* Keep Up or X pressed to have your stylus switch to Swap mode. A pair of cards selected with it will swap
* Keep Down or B pressed to have your stylus switch to Discard mode. Any card selected will be discarded

Any suggestions or comments are greatly appreciated 😉

http://forum.palib.info/index.php?topic=5590.0

By with 0 comments
Colors (25-08-2008) (NDS Game)

NightFox has released an update of his puzzle game Colors. It plays similar to Columns, where you need to bring three identical colored gems, into a vertical or horizontal row, to let them disappear.

Release notes:

Finaly, and thanks to last PALIB, NighFox’s Colors will run on G6 / M3 Real. It’s same version of last time. I only recompiled it to make it works on “REAL” linkers.
Download: http://www.mediafire.com/?uuj85cw7nin

Regards
Fox

http://forum.palib.info/index.php?topic=5621.0

By with 0 comments
DSwiki v0.1 (Alpha 1) (NDS Application)

DSwiki is an offline viewer for Wiki markup, for example for the Wikipedia, Wikibooks, Wiktionaries, …

DSwiki is NOT a web browser!

http://forum.palib.info/index.php?topic=5616.0

By with 0 comments
Nintro Engine v0.1 (NDS misc)

Antoniond is working on a new 3D engine for Nintendo DS.

More information is available in spanish language at it’s release thread, linked below.

http://www.elotrolado.net/hilo_motor-3d-nitro-engine-v-0-1_1078371

By with 0 comments
PALib (23-08-2008) (NDS misc)

A new release of PALib is here, it’s a programming library useful for mostly game coders.

Changes:

New stuff:
[Input] Added functions for using the Guitar Hero grip controller. See the example code in /examples/input/GHController for how to use them. These functions were contributed by BassAceGold.

[Input] Added functions for using the Taito Paddle controller. See the example code in /examples/input/TaitoPaddle for how to use these functions. Thanks to Yasu for figuring out how it works.

[FAT Loading] A whole new library for loading graphics and sound assets from FAT (EFS or regular FAT with DLDI) is introduced to PAlib thanks to NightFox! You can now easily load backgrounds, sprites with their palettes, textures, sound effects and other files from FAT. See the examples in /examples/FAT/FATLoading and the PAlib documentation (English only, sorry) for how to use these great new functions.

[8/16bit] A new “fake” 16-bit bitmap drawing mode by fincs. This simulates a 16-bit background using an 8-bit background by changing palettes every HBlank, and thereby frees up the large chunk of VRAM needed for a true 16-bit mode. See the included example in /examples/Bitmap8-16bit/Fake16bit or the PAlib documentation for usage.

[3DSprites] MaaS wrote a new function, PA_3DSetSpritePalCol, for changing 3D sprite palette colors on the fly.

[ARM7] Added a new arm7 core with only aslib and no wireless stuff, so it SHOULD work on M3/G6 Real. For increaed compatibility, this is now the default ARM7 binary, so be sure to select a different one in your Makefile if you need DSWifi or other ARM7 features. (See the readme file in the template folder for information on how to edit the Makefile to select a different ARM7 binary.)

Updated Oldies
[Installer] Updated the PAlib installer. All items are now optional and the root path is user-selectable.

[AS_Lib/Sound] Noda provided a new AS_Lib version and defines for EFS were removed. Using ASlib with EFSlib v2 now only requires including the efs_lib.c/.h files in your project.

[Sound] PA_InitASLibForSounds, PA_InitASLibForMP3 and PA_InitSound have been removed. You should now use the following methods to initialize AS_Lib in the mode you desire:

/* Init AS_Lib for mp3s */
PA_VBLFunctionInit(AS_SoundVBL); // easy way to make sure that AS_SoundVBL() is called every frame
AS_Init(AS_MODE_MP3 | AS_MODE_SURROUND | AS_MODE_16CH); // initializes AS_Lib
AS_SetDefaultSettings(AS_PCM_8BIT, 11025, AS_SURROUND); // or your preferred default sound settings

or

/* Init AS_Lib for sounds only */
AS_Init(AS_MODE_SURROUND | AS_MODE_16CH); // initializes AS_Lib
AS_SetDefaultSettings(AS_PCM_8BIT, 11025, AS_SURROUND); // or your preferred default sound settings

[Random] OlliPolli has improved PAlib’s Random functions. They are now faster, better and bigger (bigger random numbers, that is) and PA_InitRand is no longer needed.

[Text] ThemePark has made a very useful change to PA_OutputText and PA_OutputSimpleText. They now support newlines (n) in the body of the text.

[Backgrounds] Maple identified a problem with PA_DeleteBg and improved the function so that it now fully resets the background instead of just deleteing the tiles and hiding it. This should solve problems when switching between large map backgrounds and regular backgrounds on the same layer.

[Makefile] Removed –gc-sections from the Makefile. Thanks to Noda.

[Makefile] The Makefile in your project directory now only contains lines that will commonly change from project to project with the bulk of the Makefile being moved to /palib/lib/PA_Makefile. This should solve some updating issues and make editing the Makefile easier. Thanks to crash for this change.

[Examples/3DSprites] All 3DSprites examples have been updated so that PA_3DProcess comes after the vblank. This is the prefered method for rendering the 3D sprites and can solve a problem with flickering or tearing textures if a lot of 3D sprites are on screen.

[Examples/EFS_Lib] The EFS_Lib examples in /examples/FAT/EFS_Lib and /examples/Sound/ASLib_with_EFSlib have been updated to use EFS_Lib v2.0. Huge thanks to Noda for creating this wonderful library!

[Emulators] Updated all emulators (iDeaS, DeSmuME, No$GBA, NeonDS) and provided Linux versions where available (iDeaS, DeSmuME).

Things Fixed
[Mic/Sound] Fixed PA_MicReplay by returning the old PA_PlaySoundEx2 to the PAlib source. This also provides a rudimentary alternative sound engine when ASlib cannot be used.

[8/16bit Drawing] Fixed bug in PA_8bitDraw and PA_16bitDraw that caused unwanted lines to appear when turning drawing on and off while the stylus was held down. Thanks to Maple for the solution.

[BMP Loading] Fixed declaration in PA_GetBmpWidth and PA_GetBmpHeight that caused compiler errors for C++ users. Thanks to Frosty Chaotix and others for this.

[Video] dmig has fixed the long time error in PA_LoadVid, which should now be working.

[3DSprites] Fixed misdefinition in PA_3DUpdateSpriteAnims. This fix may help problems with flickering and tearing of textures. Thanks to SevenString for the catch.

[Sprites] Sylus101 fixed an issue in PA_ResetSpriteSysScreen that stopped sprite animations from working after the function was called.

[Sprites] Fixed PA_GetSpriteNCycles returning wrong type and inconsistent definition for spriteanims.ncycles. Thanks to Salz` for catching this.

[Input] Fixed bug preventing Pad.xxx.Anykey from recognizing the Y button. Thanks to ant512 for uncovering this bug ages ago and now it’s finally been fixed in the source.

[GIF Loading] ThemePark fixed a bug in PA_3DCreateFromGif and many transparency related problems in PA_GifToTex/GifToTiles. These functions are optimized and should be working properly now. See the exmaples for new usage.

[Pathfinding] AntonioND updated the PA_Astar path-finding function. It’s more efficient, returns an error value (-1) if there is no solution and a possible infinite loop bug has been fixed.

[Window] Schyzophrenic fixed an error in PA_EnableWin that prevented full declaration of layer priorities against the windows.

[Palettes] MaaS fixed bug in PA_SetSpritePalCol that caused corruption of sprites.

[General] Fixed PA_CloseLidSound. Thanks to unkwar.

[General] Finally fixed PA_PowerOff.

http://forum.palib.info/index.php?topic=5612.0

By with 0 comments
5 Dice (NDS Game)

Gaz comes up with his version of the dice game “Yahtzee”.

Release notes:

I have finally finsihed my first game for the Nintendo DS. The game is called 5 Dice and is very similar to Yahtzee, there are only a couple of changes from the original game (5 Dice) and (All Dice).

You are allowed three thows of the dice, after your first throw you can choose wheather or not to hold the dice. On your third and final throw you must choose a score on the card-sheet.

http://forum.palib.info/index.php?topic=5611.0

By with 0 comments