#44638 - lambi1982 - Fri Jun 03, 2005 8:14 pm
http://gally.cambien.net/index.php?page=DownLoad&menu[1]=24
I found this today and think it has potential to be like Darkstar, I like darkstar alot more, just like the menu on this one a tad more ;)
Darkstar Rules :)
_________________
Who, Me?
#44644 - natrium42 - Fri Jun 03, 2005 9:15 pm
Wow, looks really nice! I will have to try it when I get home :)
_________________
www.natrium42.com
#44646 - miqualke - Fri Jun 03, 2005 9:39 pm
there is some part of mollusk in this, the one who made the PA_lib (ndslib HAM like)
#44653 - Chetic - Fri Jun 03, 2005 10:33 pm
Yes and Mollusk rules.
_________________
Packin':
Grey DS with FlashMe v7
1Gbit XG2T 2005 (Neoflash compatible)
GBAMP, Supercard CF, 512Mb Magic Key 3 and EZFA 256Mbit
#44693 - dovoto - Sat Jun 04, 2005 8:58 am
Looks greate...cant wait to see it progress (especialy to the point that the touch screen is callibrated).
_________________
www.drunkencoders.com
#44696 - Mollusk - Sat Jun 04, 2005 11:06 am
Just to put the things right, I'm not the main author of this project... Gally is, maybe he'll come around. I'm just helping him out a little. And this allows me to add new stuff to the lib (keyboard support for example, and this week-end the new mini-font will be integrated too... maybe some button/slider support too....)
The latest version isn't released yet, and has the small text for the notepad (there'll probably be an option to chose between normal or thin text), save support, auto-login... And much more to come ! I'll be working on integrating a Jpeg support using a lib... For that, if you know of a command line program that could re-dimension a Jpeg to fit the DS screen, I would love it. Another idea I had, kinda same thing : manga viewer :p displaying on both screens to have a full page, if the resolution is good enough (I'll have to test that, not sure...)
I'm also hoping Darkain will release some info to integrate his multiloader, it is a must-have function ! I'll have to see with him for that...
In the meantime, feel free to give suggestions/ideas :)
#44700 - Mr Snowflake - Sat Jun 04, 2005 1:19 pm
This looks real great.
A multi-loader would be great for such a project, but another thing that would be great is a sdk or something like that, so we can easily make programs to run inside this one, with the same look and feel.
#44712 - Mollusk - Sat Jun 04, 2005 3:36 pm
For the sdk, I could try something, but as I don't know anything about sdks... do you have any suggestions as to where to start ? And how the programs be added ? By recompiling only or using a filesystem ? (if using the filesystem, not sure how to get a program to use the sdk...).
As of now, it is actually very easy to add a program in it : there's a define containing the number of programs and an array with a function pointer towards these programs. The dockbar automatically adjusts to the number of programs, and you just need to add the icon to the other icons (it's just a bmp) to have it added... Each program is structure juste like a normal program, with the beginning, the main loop, and an end (the main loop being with while(!MoveMenu()) to test the dock, and a ndos_WaitForVBL...
#44714 - Mr Snowflake - Sat Jun 04, 2005 3:48 pm
Take a look at the Wins site, they have some kind of sdk or something like that.
What you are saying is pretty easy and I think it is good enough as long as we can add standard controls to our proggies (textboxes, ...) and have access to the virtual keyboard.
#44716 - Mollusk - Sat Jun 04, 2005 3:56 pm
The virtual keyboard is a PA_lib function, ndos just has a function to scroll it in/out... I guess I'll put that function in PA too (the doc isn't up-to-date yet).
Dovoto, I missed part of your post... what's the
Quote: |
(especialy to the point that the touch screen is callibrated) |
??
#44718 - Chetic - Sat Jun 04, 2005 4:27 pm
Uhm.. the touchscreen works perfectly for me in nDoS.
Don't know what he's talking about.
_________________
Packin':
Grey DS with FlashMe v7
1Gbit XG2T 2005 (Neoflash compatible)
GBAMP, Supercard CF, 512Mb Magic Key 3 and EZFA 256Mbit
#44729 - lambi1982 - Sat Jun 04, 2005 6:07 pm
I had a problem with the soft keyboard, it didnt show all of the keys but you could still press in the area and it would type, also when typing alot of text in notepad and the calc it starts to overlap the text again.
one other thing. Whats up with the calc when typing more than 7 digits?
example: if I type 9999999 after the next 9 it swithes to somthing like 214567231 <------ not exactly this but close to it....
Great work anyways :)
_________________
Who, Me?
#44730 - assassda - Sat Jun 04, 2005 6:12 pm
214567231 could be the max number but numbers usually dont have a max limit if anything a length limit
#44802 - Mollusk - Sun Jun 05, 2005 3:09 pm
I haven't looked at the calc code yet, could be just about anything... I'll check that out (there also is a problem when using floats...)
Edit : forgot part of it :p For the text, it's still basic and I think the downloadable version is a few versions behind the one I have... The keyboard bug might be fixed (not sure, but I don't have it anymore), and the overlapping text changed too... The next version will also have the tiny font, which will be much better for the text...
#44891 - josath - Mon Jun 06, 2005 4:29 pm
command line image manipulation tools:
http://imagemagick.com
example:
Code: |
convert bob.png -resize 256x192 bob.jpg |
it magically handles converting between formats and stuff
#44906 - Mr Snowflake - Mon Jun 06, 2005 6:26 pm
assassda wrote: |
214567231 could be the max number but numbers usually dont have a max limit if anything a length limit |
I think it should be: 2147483647, that's 2^32 - 1, the max for a 32bit signed int. But for some reason its 20000 less..
#44915 - Mollusk - Mon Jun 06, 2005 6:54 pm
Thanks Josath ! I thought it was a linux only tool for some reason... (for those wanting to try it, its .org, not .com)