project_files/Android-build/SDL-android-project/src/org/hedgewars/hedgeroid/netplay/Room.java
changeset 7476 2fb781bbdd51
parent 7473 45b9f25ff611
child 7479 c8c552ee3acb
equal deleted inserted replaced
7473:45b9f25ff611 7476:2fb781bbdd51
     1 package org.hedgewars.hedgeroid.netplay;
       
     2 
       
     3 import org.hedgewars.hedgeroid.R;
       
     4 
       
     5 import android.content.res.Resources;
       
     6 
       
     7 public class Room {
       
     8 	public static final String MAP_REGULAR = "+rnd+";
       
     9 	public static final String MAP_MAZE = "+maze+";
       
    10 	public static final String MAP_DRAWN = "+drawn+";
       
    11 	
       
    12 	public final String name, map, scheme, weapons, owner;
       
    13 	public final int playerCount, teamCount;
       
    14 	public final boolean inProgress;
       
    15 	
       
    16 	public Room(String name, String map, String scheme, String weapons,
       
    17 			String owner, int playerCount, int teamCount, boolean inProgress) {
       
    18 		this.name = name;
       
    19 		this.map = map;
       
    20 		this.scheme = scheme;
       
    21 		this.weapons = weapons;
       
    22 		this.owner = owner;
       
    23 		this.playerCount = playerCount;
       
    24 		this.teamCount = teamCount;
       
    25 		this.inProgress = inProgress;
       
    26 	}
       
    27 
       
    28 	public static String formatMapName(Resources res, String map) {
       
    29 		if(map.charAt(0)=='+') {
       
    30 			if(map.equals(MAP_REGULAR)) {
       
    31 				return res.getString(R.string.map_regular);
       
    32 			} else if(map.equals(MAP_MAZE)) {
       
    33 				return res.getString(R.string.map_maze);
       
    34 			} else if(map.equals(MAP_DRAWN)) {
       
    35 				return res.getString(R.string.map_drawn);
       
    36 			}
       
    37 		}
       
    38 		return map;
       
    39 	}
       
    40 }