Homebrew Coverflow DS (New project)

Mantis41

Well-Known Member
Member
Joined
Jun 3, 2009
Messages
1,851
Trophies
0
Location
earth
XP
444
Country
United States
Xenon++ said:
Could you explain about "encrypted"? I haven't heard of it.
I think this explains it - R4crypt
It basicaly means you can repalce the r4 boot menu with any .nds file. I would not have thought this would effect the reading or compatibility of the saves.
 

Xenon++

Taiju Yamada
Member
Joined
Dec 17, 2009
Messages
1,394
Trophies
0
Website
Visit site
XP
107
Country
Sorry but I'm asking about loading bare "ysmenu as application" from DSCovered on SCDSOnei.
As kzat3's ret_menu*_Gen() has a issue with SCDSOnei, I'm wondering Chishm's bootlib works or not.
 

Mantis41

Well-Known Member
Member
Joined
Jun 3, 2009
Messages
1,851
Trophies
0
Location
earth
XP
444
Country
United States
Xenon++ said:
Sorry but I'm asking about loading bare "ysmenu as application" from DSCovered on SCDSOnei.
As kzat3's ret_menu*_Gen() has a issue with SCDSOnei, I'm wondering Chishm's bootlib works or not.
Sorry I quoted the wrong post, I have edited now
Cheers
grog.gif
 

J8son

Well-Known Member
Newcomer
Joined
Feb 14, 2010
Messages
61
Trophies
0
XP
46
Country
United States
Is there an ETA of when the following options will be implemented into a future release:

1) Settings (and what type of settings would this entail?)

2) Information (would this be some kind of ROM info?)

3) Will the YsMenu cheat menu ever be tied into the app without having to load the menu directly?

FYI, I've also noticed that loading a game through the YsMenu with cheats enabled and then loading the same game through the coverflow app can overwrite your save file
blink.gif
Anyone know why?
 

spinal_cord

Knows his stuff
OP
Member
Joined
Jul 21, 2007
Messages
3,196
Trophies
1
Age
42
Location
somewhere
Website
spinalcode.co.uk
XP
2,939
Country
J8son said:
Is there an ETA of when the following options will be implemented into a future release:

1) Settings (and what type of settings would this entail?)

2) Information (would this be some kind of ROM info?)

3) Will the YsMenu cheat menu ever be tied into the app without having to load the menu directly?

FYI, I've also noticed that loading a game through the YsMenu with cheats enabled and then loading the same game through the coverflow app can overwrite your save file
blink.gif
Anyone know why?

1. Don't know, not sure what settings to add.

2. Again, no idea.

3. Never going to happen, unless you get yasu to update ysmenu. Ysmenu itself does not apply the cheats when autobooting a rom. This can not be fixed at all through DScovered.
 

zulu12

Well-Known Member
Newcomer
Joined
Jul 23, 2009
Messages
53
Trophies
0
XP
10
Country
United States
spinal_cord said:
J8son said:
Is there an ETA of when the following options will be implemented into a future release:

1) Settings (and what type of settings would this entail?)

2) Information (would this be some kind of ROM info?)

3) Will the YsMenu cheat menu ever be tied into the app without having to load the menu directly?

FYI, I've also noticed that loading a game through the YsMenu with cheats enabled and then loading the same game through the coverflow app can overwrite your save file
blink.gif
Anyone know why?

1. Don't know, not sure what settings to add.

2. Again, no idea.

3. Never going to happen, unless you get yasu to update ysmenu. Ysmenu itself does not apply the cheats when autobooting a rom. This can not be fixed at all through DScovered.


Spinal,

I have an idea about it.

1. Settings - Allow user to change skins, themes, etc. OR could be a future feature like different view mode.

2. Information - Display ROM information like Rate, Producer, etc
 

Xenon++

Taiju Yamada
Member
Joined
Dec 17, 2009
Messages
1,394
Trophies
0
Website
Visit site
XP
107
Country
spinal_cord said:
3. Never going to happen, unless you get yasu to update ysmenu. Ysmenu itself does not apply the cheats when autobooting a rom. This can not be fixed at all through DScovered.
Instead we can fix ttpatch.dat to force to apply cheat (reading usrcheat.dat). Actually Rudolph has done for akloader.
But I'm not good at reading assembly...
 

J8son

Well-Known Member
Newcomer
Joined
Feb 14, 2010
Messages
61
Trophies
0
XP
46
Country
United States
Well, in the mean time, here is how I get around the cheat issue with coverflow.

I actually created a "Game Genie" box art for the YsMenu and only load it when I want to access cheats. However, this can be problematic.

For instance. I had a save file for Super Mario 64 DS. I was a few levels into the game when I used the YsMenu with the "Unlock all doors and stars" cheats. Then, when I went back to load my original save file without the cheat on, my original save file was totally reset (IE: It read as an empty slot where my save was).

Anyone know what causes this?
 

spinal_cord

Knows his stuff
OP
Member
Joined
Jul 21, 2007
Messages
3,196
Trophies
1
Age
42
Location
somewhere
Website
spinalcode.co.uk
XP
2,939
Country
Xenon++ said:
BTW I'd like to know how DSCovered calls /system/loader.nds

It just dumps the filename (long and short) to /loadfile.dat, then loads loader.nds using chishms loader.

CODEÂÂÂÂFILE* testRead = fopen ("fat:/loadfile.dat", "rb"); //rb = read
ÂÂÂÂif(testRead){
ÂÂÂÂÂÂÂÂchar filename[512];
ÂÂÂÂÂÂÂÂchar* c;
ÂÂÂÂÂÂc = fgets(filename, 512, testRead); // surely 512 characters is plenty?

ÂÂÂÂÂÂÂÂstrlwr(filename); // to lower case
ÂÂÂÂÂÂÂÂfclose (testRead);
ÂÂÂÂÂÂÂÂremove("fat:/loadfile.dat");
ÂÂÂÂÂÂÂÂini_puts("YSMENU", "AUTO_BOOT", filename, "fat:/ysmenu.ini");
ÂÂÂÂÂÂÂÂint err = runNdsFile("fat:/ysmenu.nds");
ÂÂÂÂÂÂÂÂif(err)PA_OutputSimpleText(0,0,0,"Unable to load ysmenu.nds");
ÂÂÂÂ}else{
ÂÂÂÂÂÂÂÂPA_OutputSimpleText(0,0,2,"Unable to read filename.\nThis file is not meant to be\nloaded outside of DScovered.");
ÂÂÂÂ}
 

Xenon++

Taiju Yamada
Member
Joined
Dec 17, 2009
Messages
1,394
Trophies
0
Website
Visit site
XP
107
Country
I don't know why you have to split DSCovered.nds and loader.nds, but it is now clear that I cannot replace loader.nds to accept SDHC. Thanks. (If you use Chishm bootlib a time, you cannot load commercial ROMs on SDHC).
 

spinal_cord

Knows his stuff
OP
Member
Joined
Jul 21, 2007
Messages
3,196
Trophies
1
Age
42
Location
somewhere
Website
spinalcode.co.uk
XP
2,939
Country
Xenon++ said:
I don't know why you have to split DSCovered.nds and loader.nds, but it is now clear that I cannot replace loader.nds to accept SDHC. Thanks. (If you use Chishm bootlib a time, you cannot load commercial ROMs on SDHC).

At the time, I didn't realise that chishms loader completely screws up the ds until you reset
tongue.gif


[edit] If you have a loader stripped down to the bare minimum, I would gladly try to implement it into DScovered.
 

pmetbbg

Member
Newcomer
Joined
Feb 28, 2010
Messages
6
Trophies
0
XP
24
Country
United States
first of all, spinal.. this rocks. my kid loves it.
second, I followed Mantis41 post from Feb 21 2010, 06:38 PM (a few times ) to install on my R4

every thing is working great. it even used my old Saved games. no issues

a comment about the install for R4
in the all important Step 5 of Pong106's posting, a set of double quotes would have been helpful
as in :Create a folder named "YSMenu and DSTT directory",

as for enhancements:
1) I got a little crazy with adding favorites and it added the "duplicate" entries into FAV.DAT
not a big deal, I just deleted them.

2) how about child protection
something like, they can only play games and need to enter a "number" to open the other options
you wouldn't have to use super-encryption or anything..
again, this isn't a major thing, I can always redo it and I control the installed games.
more of a protection with from hitting the wrong button and me having to fix it.

again, great work
 

Mario92

Well-Known Member
Member
Joined
Feb 20, 2010
Messages
878
Trophies
0
Age
30
Location
Finland
Website
steamcommunity.com
XP
261
Country
Finland
I guess I can't use this becouse I don't have Window$?
dry.gif


Can this be booted from YSmenu?

EDIT: sorry. I was too quick. Got it working under Wine with Winetricks and mounting SD card as Floppy in Wine
rolleyes.gif

Booted it from YSmenu. Program itself couldn't boot any game and made saves only 16b. Also every custom cover shows as black.
 
General chit-chat
Help Users
  • Plastisheep @ Plastisheep:
    And yes it is real Linux
  • Plastisheep @ Plastisheep:
    Its a very cool port... if I could get itto work
  • Plastisheep @ Plastisheep:
    @SylverReZ I thought you mentioned me lol
  • Plastisheep @ Plastisheep:
    my discord name is thisone
  • SylverReZ @ SylverReZ:
    Not interested in that, but, what was you trying to do with DSLinux?
  • Plastisheep @ Plastisheep:
    Interested in what? But anyway I was trying to run it on my DSi with a SD card (I believe it is compatible as long as I run it in DS mode)
  • Plastisheep @ Plastisheep:
    I made a thread for it
  • Skelletonike @ Skelletonike:
    2h until work is finished
  • AncientBoi @ AncientBoi:
    uh no. you have to do overtime :tpi:
  • Skelletonike @ Skelletonike:
    a big nope
  • T @ TimeGBAtmep:
    Hey, so noobie wii modderhere, with an already hacked wii from my brother with homebrew channel ands hitand d2x cIOS installer, so i was trying to run some old wii games i lost off of USB Loader GX, im aware that your supposed to use a usb drive, but currently the only drive i have is used for steam games and personal stuff so i'm gonna try running them off a 32 GB Fat32 SD Card that i use for all the wii mods i have, but when i try and launch skyward sword from usb loader gx, it goes black for a second then sends me back to homebrew channel? i just looked for guides on here and saw one that said to install CiOS v8 Final Base 57 onto slot 49? but it still does the same even after i do that
  • AncientBoi @ AncientBoi:
    [calls your boss to make it so] :rofl2::evil:
  • T @ TimeGBAtmep:
    and should i make this a post? probably
  • Skelletonike @ Skelletonike:
    Yeah, always make posts.
  • T @ TimeGBAtmep:
    got it
  • Skelletonike @ Skelletonike:
    The chat isn't that viewed, you'll usually find the same members and they're like 10 active or so
  • Skelletonike @ Skelletonike:
    posts get more visibility, and if you do get an answer, it won't be lost in the sea of convos
  • T @ TimeGBAtmep:
    okay this is embarrasing how do i make a non blog post
    T @ TimeGBAtmep: nvm