Results 1 to 9 of 9
- 03-16-2009, 05:17 PM #1
Member
- Join Date
- Mar 2009
- Posts
- 5
- Rep Power
- 0
Developing an Hex-board strategy game
Hello,
I am pretty new in programming java games, i tried some easy stuff and i got used to Applets/Applications, drawing methods etc. Now to the point.
I want to develop a java version of the board game Battlemasters, since i've noticed that no one else did it and it would be great for such a beautiful and funny game.
The basic idea, is to have every single Hexagon as an object, which can understand who are his neighbours and have the proper listeners and stuff.
It would be really appreciated some help, especially with the board, because i can't find a good way yet to implement it :confused: :eek:
Thanks in advance
- 03-21-2009, 12:50 PM #2
Member
- Join Date
- Mar 2009
- Posts
- 5
- Rep Power
- 0
I've got it! :)
Here's the code for drawing an hexagonal board, assuming that you have a 61*55 transparent gif image of the hexagon.
public void paint(Graphics g) {
int a = 61; //dimensions
int b = 55; //
for(int i=0; i<13; i++) {
for(int j=0; j<10; j++) {
if (i%2 == 0)
g.drawImage(image, i*a - (a/4 + 1) * i, j*b, this);
else
g.drawImage(image, i*a - (a/4 + 1) * i, j*b - b/2, this);
}
}
}
-
abuse reported
- 03-24-2009, 10:46 AM #4
Member
- Join Date
- Mar 2009
- Posts
- 5
- Rep Power
- 0
wtf are u talking about mister?
-
I'm talking about the post with blatant advertising for porn that was in the post just above my post and has since been removed by the moderators at my request. Any more questions?
- 03-24-2009, 09:53 PM #6
Java Code:import java.awt.*; import java.awt.event.*; import java.awt.font.*; import java.awt.geom.*; import java.util.*; import java.util.List; import javax.swing.*; public class HexTest extends JPanel { final static int SIDES = 6; double MIN_DIST = 0; boolean showCenters = false; boolean tipHigh = false; boolean scaleDown = false; static boolean debug = false; // main method switch -d boolean firstTime = true; HexCell[] cells; double scale = 3/4.0; protected void paintComponent(Graphics g) { super.paintComponent(g); Graphics2D g2 = (Graphics2D)g; g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); double w = getWidth(); double h = getHeight(); double R = Math.min(w,h)/8; MIN_DIST = R/4; if(debug && firstTime) System.out.printf("w = %.1f h = %.1f R = %.1f%n", w, h, R); double delta = (1.0 - scale)/2; if(scaleDown) { // Draw everything smaller to see all the cells. g2.translate(delta*w, delta*h); g2.scale(scale, scale); } Rectangle r = getBounds(); r.grow((int)(R*3/4), (int)(R*3/4)); if(cells == null) { initHexCells(w, h, R, r); } if(scaleDown) { g2.setPaint(Color.green.darker()); g2.draw(r); g2.setPaint(Color.blue); g2.draw(getBounds()); } g2.setPaint(Color.black); for(int i = 0; i < cells.length; i++) { cells[i].draw(g2); } if(scaleDown) { g2.translate(-delta*w, -delta*h); g2.scale(1.0/scale, 1.0/scale); } firstTime = false; } public Dimension getPreferredSize() { return new Dimension(400,400); } private void initHexCells(double w, double h, double R, Rectangle range) { Path2D.Double path = getPath(w/2, h/2, R); Rectangle2D bounds = path.getBounds2D(); if(debug && firstTime) System.out.printf("bounds = [%.1f, %.1f, %.1f, %.1f]%n", bounds.getX(), bounds.getY(), bounds.getWidth(), bounds.getHeight()); double radius = Math.min(bounds.getWidth(), bounds.getHeight()); if(debug && firstTime) System.out.printf("radius = %f%n", radius); List<Point2D.Double> list = getAllPoints(bounds.getCenterX(), bounds.getCenterY(), radius, range); if(debug && firstTime) System.out.printf("list size = %d%n", list.size()); cells = new HexCell[list.size()]; // For HexCell to find the side that starts at zero degrees. double theta = tipHigh ? -Math.PI/6 : 0; for(int i = 0; i < list.size(); i++) { String id = String.valueOf(i); Point2D.Double p = list.get(i); double x = p.x - w/2; double y = p.y - h/2; AffineTransform at = AffineTransform.getTranslateInstance(x, y); Shape s = at.createTransformedShape(path); String[] adjacentIds = getNeighbors(i, radius, list); cells[i] = new HexCell(id, p, s, showCenters, theta, adjacentIds); } } private String[] getNeighbors(int index, double radius, List<Point2D.Double> list) { // Collect neighbors clockwise starting at zero degrees. String[] ids = new String[SIDES]; double thetaInc = tipHigh ? Math.PI/3 : Math.PI/6; Point2D.Double center = list.get(index); // Make ellipse larger to include the points we're // looking for so we can use the intersects method. radius += 1; Ellipse2D.Double e = new Ellipse2D.Double(center.x-radius, center.y-radius, 2*radius, 2*radius); for(int i = 0; i < list.size(); i++) { if(i == index) continue; Point2D.Double p = list.get(i); if(e.contains(p)) { // Get bearing to p. double phi = Math.atan2(p.y-center.y, p.x-center.x); // Avoid case of -0.0 for negative phi. if(phi < 0.0 && phi < -0.0001) phi += 2*Math.PI; // Index into array found with thetaInc. int j = (int)Math.round(phi/thetaInc); if(!tipHigh) j /= 2; if(j < 0) j += 5; if(j < ids.length) { ids[j] = String.valueOf(i); } } } return ids; } private List<Point2D.Double> getAllPoints(double cx, double cy, double radius, Rectangle range) { Point2D.Double center = new Point2D.Double(cx, cy); List<Point2D.Double> list = new ArrayList<Point2D.Double>(); list.add(center); Point2D.Double[] points = { new Point2D.Double(cx, cy) }; List<Point2D.Double> subList = null; do { List<Point2D.Double> nextPoints = new ArrayList<Point2D.Double>(); for(int i = 0; i < points.length; i++) { subList = getPoints(points[i].x, points[i].y, radius, range, center); for(int j = 0; j < subList.size(); j++) { Point2D.Double p = subList.get(j); if(!haveCloseEnoughPoint(p, list)) { list.add(p); nextPoints.add(p); } } } points = nextPoints.toArray(new Point2D.Double[nextPoints.size()]); } while(points.length > 0); return list; } private List<Point2D.Double> getPoints(double cx, double cy, double radius, Rectangle r, Point2D.Double center) { List<Point2D.Double> list = new ArrayList<Point2D.Double>(); double minDist = center.distance(cx, cy); for(int i = 0; i < SIDES; i++) { double theta = i*Math.PI/3; if(!tipHigh) theta += Math.PI/6; double x = cx + radius*Math.cos(theta); double y = cy + radius*Math.sin(theta); double distance = center.distance(x, y); if(r.contains(x, y) && distance > minDist) { list.add(new Point2D.Double(x, y)); } } return list; } private boolean haveCloseEnoughPoint(Point2D.Double p, List<Point2D.Double> list) { for(int i = 0; i < list.size(); i++) { Point2D.Double next = list.get(i); if(next.distance(p) < MIN_DIST) { return true; } } return false; } private Path2D.Double getPath(double cx, double cy, double R) { Path2D.Double path = new Path2D.Double(); double thetaInc = 2*Math.PI/SIDES; double theta = tipHigh ? -Math.PI/2 : thetaInc; double x = cx + R*Math.cos(theta); double y = cy + R*Math.sin(theta); path.moveTo(x, y); for(int i = 0; i < SIDES; i++) { theta += thetaInc; x = cx + R*Math.cos(theta); y = cy + R*Math.sin(theta); path.lineTo(x, y); } return path; } private JPanel getControls() { String[] ids = { "show centers", "tip high", "scale down" }; boolean[] state = { showCenters, tipHigh, scaleDown }; ActionListener al = new ActionListener() { public void actionPerformed(ActionEvent e) { String id = e.getActionCommand(); boolean selected = ((JCheckBox)e.getSource()).isSelected(); if(id.equals("show centers")) { showCenters = selected; for(int i = 0; i < cells.length; i++) { cells[i].setShowCenter(selected); } repaint(); } else { if(id.equals("tip high")) { tipHigh = selected; } if(id.equals("scale down")) { scaleDown = selected; } reset(); } } }; JPanel panel = new JPanel(); for(int i = 0; i < ids.length; i++) { JCheckBox cb = new JCheckBox(ids[i], state[i]); cb.setActionCommand(ids[i]); cb.addActionListener(al); panel.add(cb); } return panel; } public static void main(String[] args) { if(args.length > 0) debug = args[0].equals("-d"); HexTest test = new HexTest(); JFrame f = new JFrame("click me"); f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); f.add(test); f.add(test.getControls(), "Last"); f.pack(); f.setLocation(100,100); f.setVisible(true); test.addMouseListener(test.switcher); test.addComponentListener(test.resizeMonitor); } private void reset() { cells = null; firstTime = true; repaint(); } private MouseListener switcher = new MouseAdapter() { public void mousePressed(MouseEvent e) { Point p = e.getPoint(); if(scaleDown) { double cx = getWidth()/2.0; double cy = getHeight()/2.0; double x = cx + (p.x - cx)/scale; double y = cy + (p.y - cy)/scale; p.setLocation((int)x, (int)y); } for(int i = 0; i < cells.length; i++) { if(cells[i].contains(p)) { cells[i].toggleSelection(); break; } } repaint(); } }; private ComponentListener resizeMonitor = new ComponentAdapter() { public void componentResized(ComponentEvent e) { reset(); } }; } class HexCell { String id; Point2D.Double center; Shape shape; boolean showCenter; double start; String[] neighbors; boolean isSelected = false; public HexCell(String id, Point2D.Double center, Shape shape, boolean showCenter, double start, String[] neighbors) { this.id = id; this.center = center; this.shape = shape; this.showCenter = showCenter; this.start = start; this.neighbors = neighbors; } public void draw(Graphics2D g2) { if(showCenter) { g2.setPaint(Color.red); g2.fill(new Ellipse2D.Double(center.x-1.5, center.y-1.5, 4, 4)); g2.drawString(id, (float)(center.x+3), (float)(center.y+3)); g2.setPaint(Color.black); } g2.draw(shape); if(isSelected) { // Show that we know who our neighbors are and where they live. Font font = g2.getFont(); FontRenderContext frc = g2.getFontRenderContext(); LineMetrics lm = font.getLineMetrics("0", frc); float sh = lm.getAscent() + lm.getDescent(); Rectangle r = shape.getBounds(); int R = Math.max(r.width, r.height)/2; double thetaInc = 2*Math.PI/HexTest.SIDES; double theta = start; double lastX = 0, lastY = 0; for(int i = 0; i <= neighbors.length; i++) { double x = center.x + R*Math.cos(theta); double y = center.y + R*Math.sin(theta); if(i > 0 && neighbors[i-1] != null) { float midx = (float)(x - (x - lastX)/2); float midy = (float)(y - (y - lastY)/2); double phi = Math.atan2(midy-center.y, midx-center.x); String s = neighbors[i-1]; double sw = font.getStringBounds(s, frc).getWidth(); double diag = Math.sqrt(sw*sw + sh*sh)/2; float sx = (float)(midx - diag*Math.cos(phi) - sw/2); float sy = (float)(midy - diag*Math.sin(phi)) + lm.getDescent(); g2.drawString(s, sx, sy); } lastX = x; lastY = y; theta += thetaInc; } } } public void setShowCenter(boolean show) { showCenter = show; } public void toggleSelection() { isSelected = !isSelected; } public boolean contains(Point p) { return shape.contains(p); } public String toString() { return "HexCell[id:" + id + ", neighbors:" + Arrays.toString(neighbors) + "]"; } }
- 03-26-2009, 02:05 AM #7
Member
- Join Date
- Mar 2009
- Posts
- 5
- Rep Power
- 0
Thank you very much! I will definitely make a good use of this code ;)
- 09-18-2009, 01:18 PM #8
Member
- Join Date
- Sep 2009
- Posts
- 6
- Rep Power
- 0
Thanks a lot for the code!
- 05-03-2011, 11:16 AM #9
Similar Threads
-
Developing a new game - looking for Java programmers
By DeadlyAK in forum Jobs OfferedReplies: 2Last Post: 03-27-2012, 11:40 AM -
how can I draw a board in 2d array?
By java_fun2007 in forum New To JavaReplies: 8Last Post: 12-28-2011, 05:58 PM -
how to create board in java...
By zenith in forum New To JavaReplies: 5Last Post: 01-20-2010, 04:42 AM -
Programming a Board Game
By makanti in forum New To JavaReplies: 7Last Post: 03-10-2009, 02:32 AM -
2D strategy game or 2D war game
By led1433 in forum Java 2DReplies: 5Last Post: 02-10-2009, 06:00 AM


LinkBack URL
About LinkBacks

Bookmarks