| Restricted Games and Applications For all closed source Games and Applications |
06-04-2008, 10:43 AM
|
#41 (permalink)
|
|
Experienced Member
Join Date: May 2008
Location: Colorado
Posts: 800
|
Quote:
Originally Posted by badreligionpunk69
Erm, you've clearly never seen some punk rock... Punk rock bands literally have 25 second songs sometimes... that was moreso in the 80's though.
Edit: Just discovered my own issues with the no-clicks bug... hope this gets fixed.
|
Oh, the 80's that makes sense.
I'm more into 70's and modern rock.
__________________
Invisible Text. =P
|
|
|
06-04-2008, 11:25 AM
|
#42 (permalink)
|
|
Zuner
Join Date: May 2008
Posts: 60
|
Looks Good!
__________________
|
|
|
06-04-2008, 12:04 PM
|
#43 (permalink)
|
|
Zewbie
Join Date: May 2007
Posts: 2
|
nice job
like this alot keep up the great work
|
|
|
06-04-2008, 12:48 PM
|
#44 (permalink)
|
|
Squirt
Join Date: Nov 2007
Location: California
Posts: 17
|
center button
Problem with my 80, whenever i try to click the center button to choose my selection, it wont click! I have to click on it about 5 times for it to register.
|
|
|
06-04-2008, 01:12 PM
|
#45 (permalink)
|
|
Experienced Member
Join Date: May 2008
Location: Colorado
Posts: 800
|
Quote:
Originally Posted by xbh1h2
Problem with my 80, whenever i try to click the center button to choose my selection, it wont click! I have to click on it about 5 times for it to register.
|
A lot of us are having this problem.
The coder is working on a fix for this now.
__________________
Invisible Text. =P
|
|
|
06-04-2008, 01:15 PM
|
#46 (permalink)
|
|
Zewbie
Join Date: May 2008
Posts: 8
|
hmm, i found a glitch
i let the timer run out for one of the questions and it showed up correct answer: (song) and everytime i hit the button it gave me the answer for the next song. even going to the menu and back again didn't fix it, but exiting the game does at least
|
|
|
06-04-2008, 01:33 PM
|
#47 (permalink)
|
|
Squirt
Join Date: Jan 2008
Posts: 11
|
Quote:
Originally Posted by aemerson511
hmm, i found a glitch
i let the timer run out for one of the questions and it showed up correct answer: (song) and everytime i hit the button it gave me the answer for the next song. even going to the menu and back again didn't fix it, but exiting the game does at least
|
Same thing here. For me if i click the center button a couple of times it seems to jump back into it.
Also i like the game. But id really like it to have "guess who the artist is" and "guess which album this is on"
I also think that i read other post saying about ignoreing comic songs. I have some dane cook and i dont want that to play if possible.
Another thing. Like the other thread about music quiz. Im not sure if this is ignoring unknown artists or unknown titles but it should if it isnt.
besides that its looking good so far
|
|
|
06-04-2008, 02:29 PM
|
#48 (permalink)
|
|
Jr. Member
Join Date: Jun 2007
Location: Mass
Posts: 332
|
Unfortunately, I dont have time today or tomarrow, finals, to update the game, all I had time for today was to create the input debugger.
http://www.zuneboards.com/forums/dow...-dev-tool.html
I hope to have updates, as I really appreciate all of teh suggestions, just finals absorbs (amobea style) all of my free time.
I hope to have an update friday or saturday, taking into accout all of your great suggestions
And I also updated my first post, with information I forgot

|
|
|
06-04-2008, 03:39 PM
|
#49 (permalink)
|
|
Zewbie
Join Date: Dec 2007
Posts: 5
|
This game sounds really great! I can't wait to see the updates. Keep up the good work!!
|
|
|
06-04-2008, 04:18 PM
|
#50 (permalink)
|
|
Zune Guardian
Join Date: Dec 2006
Location: Wisco
Posts: 672
|
Quote:
Originally Posted by LedZepp
If shoutout wants to in a later version, this can be solved by instead of checking the Index of what choice the user chooses, check the string against the song's name, that way both choices will be correct
|
or compare strings while making the options so they don't get reused.
__________________

Sig by MajerPayne
Use Mp3Tag to get your music to show up as playcount on Zune.net
This post may or may not contain accurate information. This post is that
of my own opinion, knowledge, and reasoning, and does not nessessarily
reflect that of CrowdGather or Zuneboards and their affiliates, period.


|
|
|
06-04-2008, 04:48 PM
|
#51 (permalink)
|
|
Zune Guardian
Join Date: Dec 2006
Location: Wisco
Posts: 672
|
Check Post #55, like 4 post down for this fix.
this should fix the chance of the same song showing up twice in the list of choices. just put this in where his setSongOption block is.
__________________

Sig by MajerPayne
Use Mp3Tag to get your music to show up as playcount on Zune.net
This post may or may not contain accurate information. This post is that
of my own opinion, knowledge, and reasoning, and does not nessessarily
reflect that of CrowdGather or Zuneboards and their affiliates, period.
Last edited by Mitch; 06-04-2008 at 06:24 PM.


|
|
|
06-04-2008, 04:55 PM
|
#52 (permalink)
|
|
Support Team Expert Zuner
Join Date: Nov 2007
Posts: 3,027
|
Quote:
Originally Posted by Mitch
Code:
void setSongOptions()
{
MediaPlayer.Pause();
//Chose correct song and play it
int random = RandomHelper.GetRandomInt(4);
int randomSongIndex = RandomHelper.GetRandomInt(songCount);
correctSong = mediaLibrary.Songs[randomSongIndex];
//Fill list
for (int count = 0; count < 4; count++)
{
randSongTitle = mediaLibrary.Songs[RandomHelper.GetRandomInt(songCount)].Name;
while (randSongTitle == correctSong.Name)
randSongTitle = mediaLibrary.Songs[RandomHelper.GetRandomInt(songCount)].Name;
songTitles[count] = randSongTitle;
}
songTitles[random] = mediaLibrary.Songs[randomSongIndex].Name;
MediaPlayer.Resume();
MediaPlayer.Play(correctSong);
correctAnswer = random;
//roundTime = new TimeSpan();
loadedSongs = true;
}
this should fix the chance of the same song showing up twice in the list of choices. just put this in where his setSongOption block is.
|
Kk, I'll try it out.
Edit: Error: The Name 'randsongtitle' does not exist in the current context
__________________
Last edited by Soccerfreak24; 06-04-2008 at 04:58 PM.


|
|
|
06-04-2008, 05:08 PM
|
#53 (permalink)
|
|
Experienced Member
Join Date: May 2008
Location: Colorado
Posts: 800
|
Well, I ran your debug program,
everything worked perfectly.
No lag, correct buttons. Everything.
But the game still lags...
__________________
Invisible Text. =P
|
|
|
06-04-2008, 05:16 PM
|
#54 (permalink)
|
|
Jr. Member
Join Date: Jun 2007
Location: Mass
Posts: 332
|
Hmm, thats rather odd. Im working on the new version, but I dont think it will be done by tonight
Changes:
Random start position
No duplicate songs on menu, at least not the correct song
Any other suggestions?

|
|
|
06-04-2008, 05:24 PM
|
#55 (permalink)
|
|
Experienced Member
Join Date: May 2008
Location: Colorado
Posts: 800
|
Just an idea.
But what if you gave people like 30 seconds to answer and the faster they get it the more points they would get?
__________________
Invisible Text. =P
|
|
|
06-04-2008, 06:23 PM
|
#56 (permalink)
|
|
Zune Guardian
Join Date: Dec 2006
Location: Wisco
Posts: 672
|
Code:
void setSongOptions()
{
MediaPlayer.Pause();
//Chose correct song and play it
string randSongTitle;
int random = RandomHelper.GetRandomInt(4);
int randomSongIndex = RandomHelper.GetRandomInt(songCount);
correctSong = mediaLibrary.Songs[randomSongIndex];
//Fill list
for (int count = 0; count < 4; count++)
{
randSongTitle = mediaLibrary.Songs[RandomHelper.GetRandomInt(songCount)].Name;
while (randSongTitle == correctSong.Name)
randSongTitle = mediaLibrary.Songs[RandomHelper.GetRandomInt(songCount)].Name;
songTitles[count] = randSongTitle;
}
songTitles[random] = mediaLibrary.Songs[randomSongIndex].Name;
MediaPlayer.Resume();
MediaPlayer.Play(correctSong);
correctAnswer = random;
//roundTime = new TimeSpan();
loadedSongs = true;
}
this should work now until shutout can pushout a good fix
__________________

Sig by MajerPayne
Use Mp3Tag to get your music to show up as playcount on Zune.net
This post may or may not contain accurate information. This post is that
of my own opinion, knowledge, and reasoning, and does not nessessarily
reflect that of CrowdGather or Zuneboards and their affiliates, period.


|
|
|
06-04-2008, 06:26 PM
|
#57 (permalink)
|
|
Support Team Expert Zuner
Join Date: Nov 2007
Posts: 3,027
|
^^ KK, redeploying.. and it's error free now.
__________________


|
|
|
06-05-2008, 11:31 AM
|
#58 (permalink)
|
|
Squirt
Join Date: Jan 2008
Posts: 11
|
Im trying to learn how to do this programming, however, i primarily use vb.net so im not the best at c#.
Could you possibly comment your code...like, alot, so that i can understand everything your doing.
Your couple min. you invest there might help me and other people get started on our own apps.
Thanks
|
|
|
06-05-2008, 03:18 PM
|
#59 (permalink)
|
|
Squirt
Join Date: May 2008
Posts: 16
|
Quote:
Originally Posted by soccerfreak24
I'm having a lot of trouble with this game like... recognizing clicks. Also, when i lose a level, I seem to just stay at the level, and If I click, I lose the next one.
|
<concur>i've experienced the same problems... just lag that seems unnecessary. i mean, c'mon, this shouldn't use up any more ram than it does to play songs normally on the zune</concur>
[edit: okay, so apparently i should've read further into the thread and said errors have been acknowledged and fixed?]
|
|
|
06-05-2008, 04:41 PM
|
#60 (permalink)
|
|
Jr. Member
Join Date: Jun 2007
Location: Mass
Posts: 332
|
Quote:
Originally Posted by game_slave
<concur>i've experienced the same problems... just lag that seems unnecessary. i mean, c'mon, this shouldn't use up any more ram than it does to play songs normally on the zune</concur>
|
haha, its a lot harder to develope game sthan your giving credit to. I have yet to experience any lag or any problems (except the one where u loose the next around after getting 1 round wrong). Ive said many times, I am working on an update due out friday or saturday that should clean up the code, and fix the lag error and the game loose error.
please be patient, games dont write themselves

|
|
|
|