|
||||
| ||||
|
|||||||
| OOTP 23 - General Discussions Everything about the brand new 2022 version of Out of the Park Baseball - officially licensed by MLB and the MLBPA. |
![]() |
|
|
Thread Tools |
|
|
#21 |
|
OOTP Developer
Join Date: Jun 2009
Location: Here and there
Posts: 16,329
|
The graphs might be an issue where the various results charts don't have the same number of data points. It looks like we size each team separately, so we probably just need to coordinate better to make sure they all line up.
|
|
|
|
|
|
#22 | |
|
Hall Of Famer
Join Date: Apr 2002
Location: Iowa
Posts: 7,177
|
Quote:
Sorry for the confusion but I did not expect it to fix itself so, figured it best to report before the patch became final. Now, frankly, I don't know what to think
|
|
|
|
|
|
|
#23 | |
|
OOTP Developer
Join Date: Jun 2009
Location: Here and there
Posts: 16,329
|
Quote:
The correct answer is to pick the same size for each team. We'll fix it up to do it that way, so thanks for reporting
|
|
|
|
|
|
|
#24 |
|
All Star Starter
Join Date: May 2020
Posts: 1,187
|
Thank you for addressing the graphs.
When I shuffle off this mortal coil, who knows what legacy I shall leave behind - but I can take to the bank that I got OOTP to ditch winning percentage in favor of +/- .500. |
|
|
|
|
|
#25 | |
|
All Star Starter
Join Date: May 2022
Posts: 1,386
|
Quote:
for example, 10 games for a team over 45 pixels would result in alternating widths of 4 or 5 pixels for each game, whereas a team with 9 games of course would have exactly 5 pixels for each game. This will result in all team's total lines ending at the same spot (the rightmost side of the panel) by dynamically sizing as you draw each team's line I literally had to deal with this exact (EXACT) same problem in a game I developed where I needed to plot lines for data (except each line was part of some historical timeline comparing an an attribute for different alien races). pseudocode something like this: int panelWidth = 45; // totalGames different for each team int totalGames = 10; for (int i=0;i<totalGames;i++) { int startPoint = (int) (panelWidth * i / totalGames); int endPoint = (int) (panelWidth * (i+i) / totalGames); drawLineSegment(startPoint,endPoint); } Last edited by uruguru; 08-11-2022 at 03:44 PM. |
|
|
|
|
|
|
#26 | |
|
All Star Starter
Join Date: May 2022
Posts: 1,386
|
Quote:
Now if they can only treat the division standings the same way! |
|
|
|
|
|
|
#27 |
|
Developer OOTP
Join Date: Dec 2001
Location: Germany
Posts: 24,803
|
Thanks for all the feedback! We have fixed some reported issues and released a new public beta: https://forums.ootpdevelopments.com/...d.php?t=340198
|
|
|
|
![]() |
| Bookmarks |
|
|