Skip to content

Commit af9b544

Browse files
author
ddyer0
committed
version 8.38 - stable and perfect (it sez here)
1 parent 4af457b commit af9b544

File tree

8 files changed

+5
-33
lines changed

8 files changed

+5
-33
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
2-
package lib;
3-
public interface Timestamp { String build = "22-July-2024 09:07"; }
4-
1+
package lib; public interface Timestamp { String build = "Tue 07/23/2024" ;}

client/boardspace-codename1/boardspace core/online/game/commonCanvas.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -7715,7 +7715,7 @@ public void goalAndProgressMessage(Graphics gc,HitPoint highlight,Color color,St
77157715
if(ToolTip!=null) { HitPoint.setHelpText(highlight,goalRect,s.get(ToolTip,message)); }
77167716
if(rules!=null)
77177717
{
7718-
int cx = G.Right(goalRect)-h/2;
7718+
int cx = G.Right(goalRect)-h/4;
77197719
int cy = G.centerY(goalRect);
77207720
if(StockArt.Rules.drawChip(gc,this,h,cx,cy,highlight,GameId.HitRulesButton,null,1,1))
77217721
{

client/boardspace-codename1/boardspace games/dayandnight/DayAndNightCell.java

-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ public void copyFrom(DayAndNightCell other)
5757
lastPicked = other.lastPicked;
5858
}
5959
public int getLastPlacement(boolean empty) {
60-
// TODO Auto-generated method stub
6160
return empty ? lastPicked : lastDropped;
6261
}
6362

client/boardspace-codename1/boardspace games/frogs/FrogViewer.java

+1-11
Original file line numberDiff line numberDiff line change
@@ -250,17 +250,7 @@ public void setLocalBounds(int x,int y,int width,int height)
250250
positionTheChat(chatRect,Color.white,Color.white);
251251

252252
}
253-
254-
255-
public Rectangle createPlayerGroup(commonPlayer pl0,int x,int y,Rectangle discRect,Rectangle frogRect)
256-
{
257-
Rectangle box = pl0.createRectangularPictureGroup(x+CELLSIZE*6,y,CELLSIZE+CELLSIZE/2);
258-
G.SetRect(discRect, x+CELLSIZE, y, CELLSIZE*2,CELLSIZE*2);
259-
G.SetRect(frogRect, x, G.Bottom(discRect)+CELLSIZE/2, CELLSIZE*6,CELLSIZE*3);
260-
G.union(box, discRect,frogRect);
261-
return(box);
262-
}
263-
253+
264254
private void DrawBag(Graphics gc,HitPoint hitPoint)
265255
{ drawBag(gc,hitPoint,bagRect,0);
266256
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
2-
package lib;
3-
public interface Timestamp { String build = "22-July-2024 09:07"; }
4-
1+
package lib; public interface Timestamp { String build = "Tue 07/23/2024" ;}

client/boardspace-java/boardspace-core/online/game/commonCanvas.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -7725,7 +7725,7 @@ public void goalAndProgressMessage(Graphics gc,HitPoint highlight,Color color,St
77257725
if(ToolTip!=null) { HitPoint.setHelpText(highlight,goalRect,s.get(ToolTip,message)); }
77267726
if(rules!=null)
77277727
{
7728-
int cx = G.Right(goalRect)-h/2;
7728+
int cx = G.Right(goalRect)-h/4;
77297729
int cy = G.centerY(goalRect);
77307730
if(StockArt.Rules.drawChip(gc,this,h,cx,cy,highlight,GameId.HitRulesButton,null,1,1))
77317731
{

client/boardspace-java/boardspace-games/dipole/DipoleCell.java

-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ public void copyFrom(DipoleCell other)
3939
lastPicked = other.lastPicked;
4040
}
4141
public int getLastPlacement(boolean empty) {
42-
// TODO Auto-generated method stub
4342
return empty ? lastPicked : lastDropped;
4443
}
4544

client/boardspace-java/boardspace-games/frogs/FrogViewer.java

-10
Original file line numberDiff line numberDiff line change
@@ -247,16 +247,6 @@ public void setLocalBounds(int x,int y,int width,int height)
247247

248248
}
249249

250-
251-
public Rectangle createPlayerGroup(commonPlayer pl0,int x,int y,Rectangle discRect,Rectangle frogRect)
252-
{
253-
Rectangle box = pl0.createRectangularPictureGroup(x+CELLSIZE*6,y,CELLSIZE+CELLSIZE/2);
254-
G.SetRect(discRect, x+CELLSIZE, y, CELLSIZE*2,CELLSIZE*2);
255-
G.SetRect(frogRect, x, G.Bottom(discRect)+CELLSIZE/2, CELLSIZE*6,CELLSIZE*3);
256-
G.union(box, discRect,frogRect);
257-
return(box);
258-
}
259-
260250
private void DrawBag(Graphics gc,HitPoint hitPoint)
261251
{ drawBag(gc,hitPoint,bagRect,0);
262252
}

0 commit comments

Comments
 (0)