Newer
Older
IrisServer / src / main / java / com / ntlab / irisserver / resources / GameRest.java
package com.ntlab.irisserver.resources;

import com.ntlab.irisserver.entities.Game;
import com.ntlab.irisserver.entities.Room;
import com.ntlab.irisserver.models.RoomManager;
import org.springframework.stereotype.Component;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import java.util.List;

@Component
@Path("/rooms")
public class GameRest {
    @Path("/{rid}/game/map")
    @GET
    public List<Integer> getMap(@PathParam("rid") String rid){
        RoomManager rm = RoomManager.getInstance();
        Room room = rm.getRoom(rid);
        Game game = room.getGame();

        return null;
    }
}