Go Back   Zune Boards > Zune Discussions > Zune Games and Applications > Download XNA Applications

Download XNA Applications XNA Applications

Reply
 
Thread Tools
Old 02-27-2010, 12:00 AM   #21
itsnotabigtruck
R E D R U M
Development Front
Retired Staff
Expert Zuner
 
itsnotabigtruck's Avatar
 
Join Date: May 2008
Posts: 2,975
itsnotabigtruck has a brilliant futureitsnotabigtruck has a brilliant futureitsnotabigtruck has a brilliant futureitsnotabigtruck has a brilliant futureitsnotabigtruck has a brilliant futureitsnotabigtruck has a brilliant futureitsnotabigtruck has a brilliant futureitsnotabigtruck has a brilliant future
Default

FYI, you can add a <DefaultCharacter>?</DefaultCharacter> element to your .spritefont file in order to automatically replace characters without corresponding glyphs in the spritefont with question marks. This should eliminate any possibility of crashing due to missing characters and obviate the need for a script to remove such characters (which are in no way "invalid") in advance.





itsnotabigtruck is offline   Reply With Quote

Advertisement [Remove Advertisement]
Old 02-28-2010, 12:36 PM   #22
jfperusse
Squirt
 
Join Date: Feb 2010
Location: Canada
Posts: 17
jfperusse is on a distinguished road
Default

That is great, I'll add this as a failsafe in the next version. Thank you!




jfperusse is offline   Reply With Quote
Old 02-28-2010, 12:43 PM   #23
Red Sky
lost in paradise with rae
Development Front
Retired Staff
Super Zuner²
 
Red Sky's Avatar
 
Join Date: Nov 2007
Location: Pennsylvania
Posts: 3,660
Red Sky is a name known to allRed Sky is a name known to allRed Sky is a name known to allRed Sky is a name known to allRed Sky is a name known to all
Send a message via MSN to Red Sky Send a message via Skype™ to Red Sky
Default

I was looking at the "Future Versions" section on the website that this is hosted on. Changing the volume does indeed change the device volume directly. They fixed this in the XNA 3.0 final release or 3.1, I can't remember.





Red Sky is offline   Reply With Quote
Old 02-28-2010, 05:12 PM   #24
Bellic
Big mouth prick.
Expert Zuner
 
Bellic's Avatar
 
Join Date: Sep 2008
Posts: 2,869
Bellic has a spectacular aura aboutBellic has a spectacular aura about
Default

Quote:
Originally Posted by Red Sky View Post
I was looking at the "Future Versions" section on the website that this is hosted on. Changing the volume does indeed change the device volume directly. They fixed this in the XNA 3.0 final release or 3.1, I can't remember.
Ah, they fixed it in 3.0 final. I remember reading about it




Bellic is offline   Reply With Quote
Old 03-01-2010, 06:55 AM   #25
jfperusse
Squirt
 
Join Date: Feb 2010
Location: Canada
Posts: 17
jfperusse is on a distinguished road
Default

Really? I was sure I had the latest XNA version (3.1). I also have the Zune HD extensions. I'm using MediaPlayer.Volume and it's just "relative" to the current device volume. Is there another setting I can change to affect the device volume directly? Thanks!

Edit : Oh, wow! Just found the Guide.Show() function for the Zune which allows you to change the device volume, choose a playlist, etc. I'm going to add this right now to XNA Lyrics!

Edit2 : Alright, v.1.7 is out. I fixed a problem where the app would start playing random songs when pressing left/right while paused (even if a playlist was currently playing). I added the DefaultCharacter failsafe, and also added the Guide.Show() function (Up on the dpad for the Zune SD, and touch the bottom of the screen for the Zune HD).

However, I could not find on the Internet if the Zune HD supports/requires the Guide. If anyone can give it a try and let me know if it works (by touching the bottom of the screen while XNA lyrics is running), that'd be great! Thank you!

Last edited by jfperusse; 03-01-2010 at 07:47 AM.




jfperusse is offline   Reply With Quote
Old 03-01-2010, 12:42 PM   #26
itsnotabigtruck
R E D R U M
Development Front
Retired Staff
Expert Zuner
 
itsnotabigtruck's Avatar
 
Join Date: May 2008
Posts: 2,975
itsnotabigtruck has a brilliant futureitsnotabigtruck has a brilliant futureitsnotabigtruck has a brilliant futureitsnotabigtruck has a brilliant futureitsnotabigtruck has a brilliant futureitsnotabigtruck has a brilliant futureitsnotabigtruck has a brilliant futureitsnotabigtruck has a brilliant future
Default

Quote:
Originally Posted by jfperusse View Post
Really? I was sure I had the latest XNA version (3.1). I also have the Zune HD extensions. I'm using MediaPlayer.Volume and it's just "relative" to the current device volume. Is there another setting I can change to affect the device volume directly? Thanks!

Edit : Oh, wow! Just found the Guide.Show() function for the Zune which allows you to change the device volume, choose a playlist, etc. I'm going to add this right now to XNA Lyrics!

Edit2 : Alright, v.1.7 is out. I fixed a problem where the app would start playing random songs when pressing left/right while paused (even if a playlist was currently playing). I added the DefaultCharacter failsafe, and also added the Guide.Show() function (Up on the dpad for the Zune SD, and touch the bottom of the screen for the Zune HD).

However, I could not find on the Internet if the Zune HD supports/requires the Guide. If anyone can give it a try and let me know if it works (by touching the bottom of the screen while XNA lyrics is running), that'd be great! Thank you!
Guide.Show is pointless on the HD as the side button is hardwired to that very screen, though it is of utility on the SD, which lacks such a feature.





itsnotabigtruck is offline   Reply With Quote
Old 03-01-2010, 02:55 PM   #27
Netrix
Purger of Ignorance
Development Front
Retired Staff
Super Zuner²
 
Netrix's Avatar
 
Join Date: Jun 2008
Location: In my own world
Posts: 4,241
Netrix has much to be proud ofNetrix has much to be proud ofNetrix has much to be proud ofNetrix has much to be proud ofNetrix has much to be proud ofNetrix has much to be proud ofNetrix has much to be proud of
Send a message via MSN to Netrix
Default

Quote:
Originally Posted by itsnotabigtruck View Post
FYI, you can add a <DefaultCharacter>?</DefaultCharacter> element to your .spritefont file in order to automatically replace characters without corresponding glyphs in the spritefont with question marks. This should eliminate any possibility of crashing due to missing characters and obviate the need for a script to remove such characters (which are in no way "invalid") in advance.
It is possible for characters to crash filestream.ReadToEnd() (regardless of DefaultCharacter), as I discovered when working on the Book Reader, but I only discovered that issue in one text file, so it is likely extremely rare. All of the other text files that I tested worked fine with DefaultCharacter.




Netrix is offline   Reply With Quote
Old 03-01-2010, 06:51 PM   #28
jfperusse
Squirt
 
Join Date: Feb 2010
Location: Canada
Posts: 17
jfperusse is on a distinguished road
Default

Thanks, I will remove the Guide.Show() from the Zune HD version.

Edit : v.1.8 is now available. I removed the Guide.Show() on the Zune HD, improved lrc file support (special characters, long filenames, etc.), and added scrolling song title.

Last edited by jfperusse; 03-01-2010 at 07:02 PM.




jfperusse is offline   Reply With Quote
Old 03-03-2010, 02:39 PM   #29
Crm
Jr. Member
 
Crm's Avatar
 
Join Date: Mar 2009
Location: in your bed?
Posts: 455
Crm is on a distinguished road
Send a message via AIM to Crm
Default

great job! but kind of a nuisance when you have 5000+ songs but i still like someone finally made it so +rep!





Crm is offline   Reply With Quote
Old 03-04-2010, 06:21 AM   #30
Namco51
Zewbie
 
Namco51's Avatar
 
Join Date: Mar 2010
Location: SF Bay Area, California
Posts: 1
Namco51 is on a distinguished road
Send a message via AIM to Namco51
Default

Hello Jean-FranƧois,

I signed up on these boards just to follow you development on this great, app? game? ... and also to comment. It is amazing to watch your development process, you certainly move fast.

One thing I wanted to comment on was the disk access on the Zune 30/80/120. My Zune 80 seems to access the disk every few seconds. That can't be good for battery life I think. Is there any way in XNA to cache the audio and lrc file into memory so that this does not happen? It's probably not that much of an issue on the solid state players I would imagine.

Also in the requirements page, you should add the XNA 3.1 Zune Extensions as they are required to build your application. I kept getting the "could not build because this has files that can not be trusted" error untilI installed the Zune extensions.

Anyway, great work so far. The final result is quite impressive once the lrc files are added and you have it running showing your favorite song.







Namco51 is offline   Reply With Quote
Old 03-04-2010, 04:52 PM   #31
jfperusse
Squirt
 
Join Date: Feb 2010
Location: Canada
Posts: 17
jfperusse is on a distinguished road
Default

Hi Namco, thanks for your feedback, I really appreciate it!

I'm surprised about the disk access every few seconds. The lrc file is only read when the song changes, after that it is cached in memory. Also, audio is completely handled by the Zune, so there's nothing I can do on my side.

I will update the requirements page with the Zune Extensions.

Thank you very much!




jfperusse is offline   Reply With Quote
Old 08-16-2010, 11:16 PM   #32
aaricchavez
Zuner
 
aaricchavez's Avatar
 
Join Date: Aug 2010
Location: Tampa, Florida
Posts: 81
aaricchavez is on a distinguished road
Send a message via AIM to aaricchavez
Default

Hmmm, just wondering how exactly am I supposed to name the lrc files? I tried multiple ways, but none of them worked.

I tried:

Artist Title
Title Artist
Title - Artist
Artist - Title
Artist, Title
Title, Artist (Cleans up the commas though when it deploys)

And I also tried to do about 600 at one time(not renaming all, this was the 1st, 2nd, and 3rd time I tried. I did the renaming with only 5) my Zune says 'Deployment Complete' While the XNA Game Studio stops about half way(the loading bar thing) and pops up saying: "Error 2300: Unknown error during method invoke"

Thanks!




aaricchavez is offline   Reply With Quote
Old 08-17-2010, 12:08 AM   #33
aaricchavez
Zuner
 
aaricchavez's Avatar
 
Join Date: Aug 2010
Location: Tampa, Florida
Posts: 81
aaricchavez is on a distinguished road
Send a message via AIM to aaricchavez
Default

Hmmm, just wondering how exactly am I supposed to name the lrc files? I tried multiple ways, but none of them worked.

I tried:

Artist Title
Title Artist
Title - Artist
Artist - Title
Artist, Title
Title, Artist (Cleans up the commas though when it deploys)

And I also tried to do about 600 at one time(not renaming all, this was the 1st, 2nd, and 3rd time I tried. I did the renaming with only 1) my Zune says 'Deployment Complete' While the XNA Game Studio stops about half way(the loading bar thing) and pops up saying: "Error 2300: Unknown error during method invoke"

Thanks!

Edit: Ah, I see now.
Quote:
The "[ti:" and "[ar:" lines are now used instead of the filename whenever available in lrc files.
But I still would like to know about that error code. Thanks again!

Edit again: Sorry about that double post, I tried to edit the first one, but it posted it separate...I don't know how to delete the other one, so if someone could that would be great, thanks!

Last edited by aaricchavez; 08-17-2010 at 12:11 AM. Reason: More info




aaricchavez is offline   Reply With Quote
Old 08-17-2010, 12:21 PM   #34
Robborboy
Experienced Zuner
 
Robborboy's Avatar
 
Join Date: Sep 2009
Location: Kentucky
Posts: 142
Robborboy is on a distinguished road
Send a message via MSN to Robborboy Send a message via Yahoo to Robborboy
Default

I've always wondered about these kinds of apps. Where does it pull the lyrics from? Does user find them and add them or something?





Robborboy is offline   Reply With Quote
Old 08-24-2010, 12:45 PM   #35
Ciroip
Zewbie
 
Ciroip's Avatar
 
Join Date: Sep 2009
Location: Italy/US
Posts: 7
Ciroip is on a distinguished road
Send a message via MSN to Ciroip
Default

Join late to the party just to say thanks. Let me install the thing to test it.





Ciroip is offline   Reply With Quote
Old 09-30-2010, 10:11 PM   #36
gaines
Zewbie
 
Join Date: Jul 2009
Posts: 2
gaines is on a distinguished road
Default

I love the concept, but I tried adding a single lrc file to test it out and can't seem to figure out how to navigate to that song. All I'm able to do is play songs at random and with hundreds (thousands?) of songs it's a crap shoot. I can't imagine using this app if it really does only support random play of all songs. Hopefully I'm just missing something.



gaines is offline   Reply With Quote
Old 09-30-2010, 10:22 PM   #37
aaricchavez
Zuner
 
aaricchavez's Avatar
 
Join Date: Aug 2010
Location: Tampa, Florida
Posts: 81
aaricchavez is on a distinguished road
Send a message via AIM to aaricchavez
Default

Quote:
Originally Posted by gaines View Post
I love the concept, but I tried adding a single lrc file to test it out and can't seem to figure out how to navigate to that song. All I'm able to do is play songs at random and with hundreds (thousands?) of songs it's a crap shoot. I can't imagine using this app if it really does only support random play of all songs. Hopefully I'm just missing something.
Make a playlist. Or play the song that has the lyrics before you start the app....or you could put in lrc files for all of your songs. Manually it would be kinda hard to do. But if you use a program to help you it makes it alot easier. Use Minilyrics, it automatically downloads a lrc for the song playing(works for a whole bunch of players, including Zune and WMP). It saves them on your hard drive and then you can copy them from there to the deployment folder for the app.




aaricchavez is offline   Reply With Quote
Old 09-30-2010, 10:24 PM   #38
gaines
Zewbie
 
Join Date: Jul 2009
Posts: 2
gaines is on a distinguished road
Default

[QUOTE=aaricchavez;524203]Make a playlist. Or play the song that has the lyrics before you start the app..../QUOTE]
The first time I tried the app that's how I thought it worked so I started the song then went and launched the app, but as soon as the app launched the music cut out.



gaines is offline   Reply With Quote
Old 09-30-2010, 10:27 PM   #39
aaricchavez
Zuner
 
aaricchavez's Avatar
 
Join Date: Aug 2010
Location: Tampa, Florida
Posts: 81
aaricchavez is on a distinguished road
Send a message via AIM to aaricchavez
Default

Hmm, interesting, i've never had any issues with it. I actually just let my music play through all day and night and so i have lrc's for about every one of my songs.




aaricchavez is offline   Reply With Quote
Old 11-16-2010, 12:47 PM   #40
moske120gb
Zewbie
 
Join Date: Nov 2010
Posts: 1
moske120gb is on a distinguished road
Default

i have a zune sd 120 gb and i just put this app on my zuine after deploying everything to get it to work and everytime i select play it shuts my zune down and restarts it...wat do i do?




moske120gb is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
no new posts