ScoreHero
Home | Forum | Wiki
Inbox [ Login ]Inbox [ Login ]
SearchSearch MemberlistMemberlist
ProfileProfile Log inLog in
JSHManager 0.3.6 - RB4/GHL Support! - Manage Scores Locally and Upload to SH
Goto page Previous  1, 2, 3, ... 9, 10, 11  Next
 
Post new topic   Reply to topic    ScoreHero Forum Index -> Website Discussion
View previous topic :: View next topic  
Author Message
GuitaringEgg  





Joined: 30 Oct 2006
Posts: 272
Location: Dundee, Scotland, UK

PostPosted: Sun Aug 24, 2008 12:48 pm    Post subject: Reply with quote

Well, more problems for me anyway.

I'm just going to give up on it till you manage to get it working for all games/difficulty's
_________________


5/1/09 - Bought DragonForce pack
12/1/09 - All DragonForce Songs 5*'d
18/1/09 - BoS
Back to top
View user's profile Send private message Visit poster's website MSN Messenger XBL Gamertag: GuitaringEgg Wii Friend Code: 133260988829
mgoblue3296  





Joined: 21 Jan 2008
Posts: 971
Location: Grosse Pointe Farms, MI

PostPosted: Sun Aug 24, 2008 3:26 pm    Post subject: Reply with quote

This is version 0.1, and I'm actually pretty surprised at how well done it is. I haven't tried to upload scores due to not being able to use picture/video links, but I'll go through GH3 sometime to test it.

I'm looking forward to future developments of this.
_________________
Avatar courtesy of Sliferzom
Back to top
View user's profile Send private message Send e-mail Visit poster's website Yahoo Messenger
GuitarGeek08  





Joined: 19 Jan 2008
Posts: 3213

PostPosted: Sun Aug 24, 2008 5:46 pm    Post subject: Reply with quote

Well my comp has Windows XP (SP2 maybe?), but im not sure that it has Java.
_________________


I Don't Suck at GH
Xpertlefty13 quoting me in his Acc Thread wrote:
Honestly, thank you

This is the first real, well thought-out explanation I've seen
Back to top
View user's profile Wiki User Page Send private message Send e-mail Yahoo Messenger MSN Messenger
shooter21198  





Joined: 25 Jan 2008
Posts: 577
Location: Erie PA

PostPosted: Sun Aug 24, 2008 7:35 pm    Post subject: Reply with quote

this is an awesome program now i can be less lazy when uploading scores also a RB addition and Pic/Vid link mod would be nice for furture updates
Back to top
View user's profile Wiki User Page Send private message XBL Gamertag: shooter21198SH
mgoblue3296  





Joined: 21 Jan 2008
Posts: 971
Location: Grosse Pointe Farms, MI

PostPosted: Sun Aug 24, 2008 8:08 pm    Post subject: Reply with quote

GuitarGeek08 wrote:
Well my comp has Windows XP (SP2 maybe?), but im not sure that it has Java.


It's a pretty simple download. You probably have it, just an older version.
_________________
Avatar courtesy of Sliferzom
Back to top
View user's profile Send private message Send e-mail Visit poster's website Yahoo Messenger
Strykerx  





Joined: 02 Jul 2007
Posts: 3110
Location: Pants

PostPosted: Sun Aug 24, 2008 9:16 pm    Post subject: Reply with quote

If you need java just get it from here:

http://www.java.com/en/download/index.jsp
_________________
Back to top
View user's profile Wiki User Page Send private message
DPooch  





Joined: 05 Feb 2008
Posts: 1649
Location: Pittsburgh, PA

PostPosted: Sun Aug 24, 2008 10:51 pm    Post subject: Reply with quote

I only have like 2 scores on GH1 Easy but it won't download them anyway.
Also, rockband scores plocks.

'80s won't do anything, either, so I'm guessing GH2 and GH3 are the only ones that work.
_________________

Back to top
View user's profile Send private message Visit poster's website XBL Gamertag: poochz0rz
DarylZero  





Joined: 01 Jan 2008
Posts: 413
Location: Boston, MA

PostPosted: Mon Aug 25, 2008 4:35 am    Post subject: Reply with quote

i think i figured out one issue at least. for the games that only have 1 platform (gh1/80s/ot), there is only 1 column for rank. the other games have 2 for the platform/overall rank. since i don't have those games i only looked at gh2/3/a so it's programmed to look for 11 columns. that shouldn't be too bad to fix.

i am definitely planning rb support, but i want to ensure the gh side is working reasonably well first.

@Beedlebub
you're talking about downloading the scores, not uploading, which is why i didn't understand you. i should probably relabel that. your issue is likely the thing i mentioned above.

@charliehorse55
that is likely due to you running a version of java earlier than 1.6, not because of you running a mac.
Quote:

An UnsupportedClassVersionError is thrown when the Java Virtual Machine determines it does not support the major and minor version numbers in the class file it is attempting to read.

i'm not exactly sure how to find out java's version on a mac but try opening a terminal window and typing
Code:

java -version

and hitting enter/return

i hope someone at least has luck with gh2/3/a before i post an update ;)
_________________
Back to top
View user's profile Wiki User Page Send private message XBL Gamertag: Daryl0
sscotth  





Joined: 25 Jul 2007
Posts: 519
Location: Cartagena

PostPosted: Mon Aug 25, 2008 5:28 am    Post subject: Reply with quote



Last edited by sscotth on Wed Sep 19, 2018 12:55 am; edited 1 time in total
Back to top
View user's profile Wiki User Page Send private message XBL Gamertag: XxTrEmExScotTxX
DarylZero  





Joined: 01 Jan 2008
Posts: 413
Location: Boston, MA

PostPosted: Mon Aug 25, 2008 5:57 am    Post subject: Reply with quote

the comments (and image/video urls for that matter) for old scores are not displayed on the view all scores page so there is no way to get them.

when you insert a new score, i'm calculating the rating based on my understanding of how sh calculates them which is
Code:

      if (score >= eightStarCutoff) {
         majorRating = 8;
         highCutoff = nineStarCutoff;
         lowCutoff = eightStarCutoff;
      } else if (score >= sevenStarCutoff) {
         majorRating = 7;
         highCutoff = eightStarCutoff;
         lowCutoff = sevenStarCutoff;
      } else if (score >= sixStarCutoff){
         majorRating = 6;
         highCutoff = sevenStarCutoff;
         lowCutoff = sixStarCutoff;
      } else if (score >= fiveStarCutoff) {
         majorRating = 5;
         highCutoff = sixStarCutoff;
         lowCutoff = fiveStarCutoff;
      } else if (score >= fourStarCutoff) {
         majorRating = 4;
         highCutoff = fiveStarCutoff;
         lowCutoff = fourStarCutoff;
      } else {
         return 3f;
      }
      
      int scoreDiff = score - lowCutoff;
      int cutoffDiff = highCutoff - lowCutoff;
      
      return majorRating + ((float) scoreDiff / (float) cutoffDiff);

so there could be rounding error or i'm just doing it wrong ;)

actually, they're not sorted at all :p. something i meant to put in.

for your error, if you can copy and paste the stack trace that would be extremely helpful.
_________________
Back to top
View user's profile Wiki User Page Send private message XBL Gamertag: Daryl0
Rickles  





Joined: 05 Jun 2007
Posts: 1441
Location: The people in white coats won't tell me!

PostPosted: Mon Aug 25, 2008 7:19 am    Post subject: Reply with quote

Wow not only is this a great idea, but i absolutely love he whole program. It's laid out very well and takes about 60 sec to learn. This program is very well done even though it's in such an early stage.


This is great. Can't wait till all the bug reports are sorted out.
_________________
Back to top
View user's profile Wiki User Page Send private message XBL Gamertag: SHRickles Wii Friend Code: 240632851717
DarylZero  





Joined: 01 Jan 2008
Posts: 413
Location: Boston, MA

PostPosted: Mon Aug 25, 2008 7:23 am    Post subject: Reply with quote

bump for 0.0.2
http://code.google.com/p/jshmanager/

Version 0.0.2
-------------
- Fixed downloading scores for GH1/80s/OT (games that are only on one system)
- Scores are now sorted descending by points


one of these days i need to figure out an easy way of patching so you don't have to redownload the whole 8 megs for 20kb worth of changes....
_________________
Back to top
View user's profile Wiki User Page Send private message XBL Gamertag: Daryl0
shooter21198  





Joined: 25 Jan 2008
Posts: 577
Location: Erie PA

PostPosted: Mon Aug 25, 2008 6:50 pm    Post subject: Reply with quote

thanks for the updates can't wait til this program has more features
Back to top
View user's profile Wiki User Page Send private message XBL Gamertag: shooter21198SH
TheThirdDay  





Joined: 27 Mar 2008
Posts: 4357
Location: Toms River, NJ

PostPosted: Mon Aug 25, 2008 8:23 pm    Post subject: Reply with quote

Strykerx wrote:
If you need java just get it from here:

http://www.java.com/en/download/index.jsp


I tried to install java, and I keep getting this error:

What the hell do I do?

EDIT: Okay, the link worked.

..This thing is friggin' awesome, I think I'm gonna actually start uploading my scores from now on! Thanks you for making this, man.
_________________
If you're the sun, I'm a black hole.


Last edited by TheThirdDay on Tue Aug 26, 2008 1:44 am; edited 1 time in total
Back to top
View user's profile Wiki User Page Send private message Send e-mail XBL Gamertag: TheThirdDaySH
DarylZero  





Joined: 01 Jan 2008
Posts: 413
Location: Boston, MA

PostPosted: Mon Aug 25, 2008 9:24 pm    Post subject: Reply with quote

try installing this one instead
http://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_Developer-Site/en_US/-/USD/VerifyItem-Start/jre-6u7-windows-i586-p.exe?BundledLineItemUUID=WJNIBe.p3L8AAAEbjEgS7fu.&OrderID=44FIBe.pTDAAAAEbdUgS7fu.&ProductID=BUtIBe.pr_UAAAEaTTMke7Zb&FileName=/jre-6u7-windows-i586-p.exe


if that link doesn't work go to
http://java.sun.com/javase/downloads/index.jsp
scroll down to "Java Runtime Environment (JRE) 6 Update 7" click download, select your platform (presumably windows) and check the box to agree to license. click continue, click on "jre-6u7-windows-i586-p.exe" to download it.
_________________
Back to top
View user's profile Wiki User Page Send private message XBL Gamertag: Daryl0
Display posts from previous:   
Post new topic   Reply to topic    ScoreHero Forum Index -> Website Discussion All times are GMT
Goto page Previous  1, 2, 3, ... 9, 10, 11  Next
Page 2 of 11

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum




Copyright © 2006-2024 ScoreHero, LLC
Terms of Use | Privacy Policy


Powered by phpBB