Something.java 9.7 KB
Newer Older
Pedro Rolon committed
1 2 3 4 5 6 7 8 9 10 11 12
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.canvas.Canvas;
import javafx.scene.canvas.GraphicsContext;
import javafx.scene.layout.Pane;
import javafx.scene.paint.Color;
import javafx.scene.shape.ArcType;
import javafx.stage.Stage;
import java.io.FileInputStream;
import java.io.FileNotFoundException; 
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;  
13 14 15 16 17
import javafx.scene.control.Button;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.input.KeyEvent;
import javafx.scene.input.KeyCode;
18
import javafx.scene.paint.Color;
19
//import Bicicleta;
Pedro Rolon committed
20 21 22 23 24 25 26 27 28 29 30

public class Something extends Application
{
    public static void main(String[] args)
    {
        Application.launch(args);
    }

    @Override
    public void start(Stage stage)
    {
31
        double distancia = 10;
32
        Canvas canvas = new Canvas(1300, 800);
Pedro Rolon committed
33
        GraphicsContext gc = canvas.getGraphicsContext2D();
34 35
        gc.setLineWidth(5.0);
        //gc.setStroke(Color.BLUE);
36 37
        Pane root = new Pane();
        ImageView imagen;
Pedro Rolon committed
38 39 40 41 42

        Bicicleta bicicleta = new Bicicleta();

        try{
            //FileInputStream inputstream = new FileInputStream("file:javacleta.png");
43
            FileInputStream inputstream = new FileInputStream("bici.png");
Pedro Rolon committed
44
            //se setea el tamaño de la imagen!
45
            Image img = new Image(inputstream, 60, 60, false, false);
Pedro Rolon committed
46 47
            //gc.drawImage(img, 0, 0);
            //es 350 menos porque se toma en cuenta el tamaño de la imagen!
48 49 50 51 52
            //gc.drawImage(img, bicicleta.x, 350-bicicleta.y);

            imagen = new ImageView(img);

            imagen.setX(5+bicicleta.x);
53
            imagen.setY(bicicleta.y-40);
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
            root.getChildren().add(imagen);

        

        
            /*
            mover(gc, bicicleta, 50);
            mover(gc, bicicleta, 50, 1.5708);
            mover(gc, bicicleta, 50, 0);
            mover(gc, bicicleta, 50, 1.5708);
            mover(gc, bicicleta, 50, 0);
            mover(gc, bicicleta, 50, 1.5708); 
            mover(gc, bicicleta, 50, 3.14159);
            mover(gc, bicicleta, 25, 4.71239);
            mover(gc, bicicleta, 100, 0.523599);
            mover(gc, bicicleta, 100, 5.23599);
            */



            //gc.strokeLine(200, 50, 300, 50);
            //gc.strokeLine(0, 0, 300, 50);
            
            
            
            
            //Crea los botones
            Button boton1 = new Button();
            Button boton2 = new Button();
            Button boton3 = new Button();
            Button boton4 = new Button();
            Button boton5 = new Button();
            Button boton6 = new Button();
            Button boton7 = new Button();
            Button boton8 = new Button();
            
            
            boton1.setText("NO");        
            boton1.setPrefSize(40, 40);
            boton1.setLayoutX(0);
            boton1.setLayoutY(0);
            boton1.setOnAction(new EventHandler<ActionEvent>() {
                @Override
                public void handle(ActionEvent event) {
98
                    mover(gc, bicicleta, distancia, 2.3561944901865, imagen);
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
                }
            });

            boton2.setText("N");
            boton2.setPrefSize(40, 40);
            boton2.setLayoutX(50);
            boton2.setLayoutY(0);
            boton2.setOnAction(new EventHandler<ActionEvent>() {
                @Override
                public void handle(ActionEvent event) {
                    mover(gc, bicicleta, distancia, 1.570796326791001, imagen);
                }
            });

            boton3.setText("NE");
            boton3.setPrefSize(40, 40);
            boton3.setLayoutX(100);
            boton3.setLayoutY(0);
            boton3.setOnAction(new EventHandler<ActionEvent>() {
                @Override
                public void handle(ActionEvent event) {
120
                    mover(gc, bicicleta, distancia, 0.7853981633955001, imagen);
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
                }
            });

            boton4.setText("O");
            boton4.setPrefSize(40, 40);
            boton4.setLayoutX(0);
            boton4.setLayoutY(50);
            boton4.setOnAction(new EventHandler<ActionEvent>() {
                @Override
                public void handle(ActionEvent event) {
                    mover(gc, bicicleta, distancia, 3.141592653582001, imagen);
                }
            });

            boton5.setText("E");
            boton5.setPrefSize(40, 40);
            boton5.setLayoutX(100);
            boton5.setLayoutY(50);
            boton5.setOnAction(new EventHandler<ActionEvent>() {
                @Override
                public void handle(ActionEvent event) {
                    mover(gc, bicicleta, distancia, 0, imagen);
                }
            });

            boton6.setText("SO");
            boton6.setPrefSize(40, 40);
            boton6.setLayoutX(0);
            boton6.setLayoutY(100);
            boton6.setOnAction(new EventHandler<ActionEvent>() {
                @Override
                public void handle(ActionEvent event) {
153
                    mover(gc, bicicleta, distancia, 3.9269908169775, imagen);
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
                }
            });

            boton7.setText("S");
            boton7.setPrefSize(40, 40);
            boton7.setLayoutX(50);
            boton7.setLayoutY(100);
            boton7.setOnAction(new EventHandler<ActionEvent>() {
                @Override
                public void handle(ActionEvent event) {
                    mover(gc, bicicleta, distancia, 4.712388980373, imagen);
                }
            });

            boton8.setText("SE");
            boton8.setPrefSize(40, 40);
            boton8.setLayoutX(100);
            boton8.setLayoutY(100);
            boton8.setOnAction(new EventHandler<ActionEvent>() {
                @Override
                public void handle(ActionEvent event) {
175
                    mover(gc, bicicleta, distancia, 5.4977871437685, imagen);
176 177 178 179 180
                }
            });


            
181
            root.setStyle("-fx-background-image: url(\"mapamundi.jpg\");");
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197

            root.getChildren().add(canvas);
            root.getChildren().add(boton1);
            root.getChildren().add(boton2);
            root.getChildren().add(boton3);
            root.getChildren().add(boton4);
            root.getChildren().add(boton5);
            root.getChildren().add(boton6);
            root.getChildren().add(boton7);
            root.getChildren().add(boton8);
            

            Scene scene = new Scene(root);

            scene.setOnKeyPressed(e -> {
                if (e.getCode() == KeyCode.NUMPAD1) {
198
                    mover(gc, bicicleta, distancia, 3.9269908169775, imagen);
199 200 201 202 203
                }
                else if (e.getCode() == KeyCode.NUMPAD2) {
                    mover(gc, bicicleta, distancia, 4.712388980373, imagen);
                }
                else if (e.getCode() == KeyCode.NUMPAD3) {
204
                    mover(gc, bicicleta, distancia, 5.4977871437685, imagen);
205 206 207 208 209 210 211 212
                }
                else if (e.getCode() == KeyCode.NUMPAD4) {
                    mover(gc, bicicleta, distancia, 3.141592653582001, imagen);
                }
                else if (e.getCode() == KeyCode.NUMPAD6) {
                    mover(gc, bicicleta, distancia, 0, imagen);
                }
                else if (e.getCode() == KeyCode.NUMPAD7) {
213
                    mover(gc, bicicleta, distancia, 2.3561944901865, imagen);
214 215 216 217 218
                }
                else if (e.getCode() == KeyCode.NUMPAD8) {
                    mover(gc, bicicleta, distancia, 1.570796326791001, imagen);
                }
                else if (e.getCode() == KeyCode.NUMPAD9) {
219
                    mover(gc, bicicleta, distancia, 0.7853981633955001, imagen);
220 221 222 223 224 225 226 227 228 229 230 231 232
                }
                else if (e.getCode() == KeyCode.PLUS) {
                    //distancia++;
                }
                else if (e.getCode() == KeyCode.MINUS) {
                    //distancia--;
                }
                
            });

            stage.setScene(scene);
            stage.setTitle("Óyeme Carlos llévame en tu Bicicleta");
            stage.show();
Pedro Rolon committed
233 234 235 236 237 238 239
        }catch(FileNotFoundException e){
            System.out.println("Ocurió un error en la carga de imagen!");
            System.out.println(e.getMessage());
        }catch(Exception e){
            System.out.println("error: no se pudo cargar la imagen");
            System.out.println(e.getMessage());
        }
240 241

        
Pedro Rolon committed
242 243 244 245
    } 

    //Mueve la bicicleta y dibuja su recorrido
    //Recibe como parámetro la distancia y dirección de la bicicleta
246
    private void mover(GraphicsContext gc, Bicicleta bicicleta, double distancia, double direccion, ImageView imagen){
Pedro Rolon committed
247 248 249 250 251 252 253 254 255 256 257 258 259
        double xInicial = 10+bicicleta.x;
        //El 400 se le resta para que aparezca hacia abajo, pues las coordenadas están invertidas
        double yInicial = 400-bicicleta.y;
        
        bicicleta.girar(direccion);
        bicicleta.avanzar(distancia);

        double xFinal = 10+bicicleta.x;
        double yFinal = 400-bicicleta.y;

        gc.strokeLine(xInicial, yInicial, xFinal, yFinal);
        System.out.println(bicicleta.x+" "+ bicicleta.y+" elo");

260 261
        imagen.setX(xFinal);
        imagen.setY(yFinal-40);
Pedro Rolon committed
262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
    }

    //Mueve la bicicleta y dibuja su recorrido
    //Recibe como parámetro solo la distancia
    //Avanza en la dirección que ya tenía
    private void mover(GraphicsContext gc, Bicicleta bicicleta, double distancia){
        double xInicial = 10+bicicleta.x;
        double yInicial = 400-bicicleta.y;

        bicicleta.avanzar(distancia);

        double xFinal = 10+bicicleta.x;
        double yFinal = 400-bicicleta.y;

        gc.strokeLine(xInicial, yInicial, xFinal, yFinal);
        System.out.println(bicicleta.x+" "+ bicicleta.y+"alo");

    }
    
}