开发者

Draw a position from a 2d Array on respected canvas location

Background:

I have two 2d arrays. Each index within each 2d array represents a tile which is drawn on a square canvas suitable for 8 x 8 tiles.

The first 2d array represents the ground tiles and is looped and drawn on the canvas using the following code:

                 //Draw the map from the land 2d array
    map = new Canvas(mainFrame, 20, 260, 281, 281);
        for(int i=0; i < world.length; i++){
            for(int j=0; j < world[i].length; j++){
                for(int x=0; x < 280; x=x+35){ 
                    for(int y=0; y < 280; y=y+35){
                        Point p = new Point(x,y);
                        map.add(new RectangleObject(p,35,35,Colour.green));
                    }
                }
            }
        }

This creates a grid of green tiles 8 x 8 across as intended.

The second 2d array represents the position on the ground. This 2d array has everyone of its indexes as null apart from one 开发者_StackOverflowwhich is comprised of a Person class.

Problem

I am unsure of how I can draw the position on the grid. I was thinking of a similar loop, so it draws over the previous 2d array another set of 64 tiles. Only this time they are all transparent but the one tile which isn't null. In other words, the tile where Person is located.

I wanted to use a search throughout the loop using a comparative if statement along the lines of

if(!(world[] == null)){
map.add(new RectangleObject(p,35,35,Colour.red));}

However my knowledge is limited and I am confused on how to implement it.


Do not use a second Array at all. Simply create a RectangleObject named, for example, currentPosition or activeTile or personPosition. You, however, do not really need to store the Point in the RectangleObject. Either use a 2D RectangleObject array for that (so that you can use the indexes to access them) and exclude the Point information in the RectangleObject,

or

create a List of RectangleObjects and add the Point information - but do not increment by 35, but rather by 1. When you're drawing the tiles, you can still (by knowing the index) figure out where to put the tile (e.g. indexX*tileWidth, indexY*tileHeight).

(It's not quite clear from what you've written what world and map are used for. Please explain so I can give a better answer)

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜