View Javadoc

1   /*
2    * Copyright (C) 2010 Unreal Visualizer Authors
3    *
4    * This program is free software: you can redistribute it and/or modify
5    * it under the terms of the GNU General Public License as published by
6    * the Free Software Foundation, either version 3 of the License, or
7    * (at your option) any later version.
8    *
9    * This program is distributed in the hope that it will be useful,
10   * but WITHOUT ANY WARRANTY; without even the implied warranty of
11   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12   * GNU General Public License for more details.
13   *
14   * You should have received a copy of the GNU General Public License
15   * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16   */
17  package nl.tudelft.goal.ut2004.visualizer.gui.action;
18  
19  import java.awt.event.ActionEvent;
20  import java.awt.event.ActionListener;
21  
22  import nl.tudelft.goal.ut2004.visualizer.controller.ServerController;
23  import nl.tudelft.goal.ut2004.visualizer.gui.widgets.WaypointBox;
24  
25  import cz.cuni.amis.pogamut.base3d.worldview.object.Location;
26  import cz.cuni.amis.pogamut.ut2004.communication.messages.gbcommands.Respawn;
27  import cz.cuni.amis.pogamut.ut2004.communication.messages.gbinfomessages.Player;
28  import cz.cuni.amis.pogamut.ut2004.communication.worldview.map.Waypoint;
29  import cz.cuni.amis.pogamut.ut2004.server.IUT2004Server;
30  
31  /**
32   * Interface wrapper for the respawn action. Can be used anywhere an action
33   * listener is expected.
34   * 
35   * Assumes a connection exists.
36   * 
37   * @author M.P. Korstanje
38   * 
39   */
40  public class RespawnAction implements ActionListener {
41  
42  	private final Player player;
43  	// TODO: Use listeners to set this
44  	private final WaypointBox navpoints;
45  
46  	public RespawnAction(Player player, WaypointBox navpoints) {
47  		this.player = player;
48  		this.navpoints = navpoints;
49  	}
50  
51  	@Override
52  	public void actionPerformed(ActionEvent e) {
53  		ServerController controller = ServerController.getInstance();
54  		IUT2004Server server = controller.getServer();
55  		assert server != null;
56  
57  		Waypoint waypoint = navpoints.getSelected();
58  		Location location = null;
59  		if (waypoint != null) {
60  			location = waypoint.getLocation();
61  		}
62  
63  		Respawn respawn = new Respawn(player.getId(), location, null);
64  		server.getAct().act(respawn);
65  	}
66  
67  }