-
Notifications
You must be signed in to change notification settings - Fork 0
/
platzi.js
109 lines (90 loc) · 2.91 KB
/
platzi.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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
98
99
100
101
102
103
104
105
106
107
108
109
var vp = document.getElementById("villaplatzi");
var papel = vp.getContext("2d");
var mapa = "tile.png";
var fondo = {
url: "tile.png",
cargaOK: false
}
var vaca = {
url: "vaca.png",
cargaOK: false
}
var cerdo = {
url: "cerdo.png",
cargaOK: false
}
var pollo = {
url: "pollo.png",
cargaOK: false
}
var cantidadVacas = aleatorio(0,8);
var cantidadCerdos = aleatorio(0,5);
var cantidadPollos = aleatorio(0,12);
fondo.imagen = new Image();
fondo.imagen.src = fondo.url;
fondo.imagen.addEventListener("load", cargarFondo);
vaca.imagen = new Image();
vaca.imagen.src = vaca.url;
vaca.imagen.addEventListener("load", cargarVacas);
cerdo.imagen = new Image();
cerdo.imagen.src = cerdo.url;
cerdo.imagen.addEventListener("load", cargarCerdos);
pollo.imagen = new Image();
pollo.imagen.src = pollo.url;
pollo.imagen.addEventListener("load", cargarPollos);
function cargarFondo() {
fondo.cargaOK = true;
dibujar();
}
function cargarVacas() {
vaca.cargaOK = true;
dibujar();
}
function cargarCerdos() {
cerdo.cargaOK = true;
dibujar();
}
function cargarPollos() {
pollo.cargaOK = true;
dibujar();
}
function dibujar() {
if (fondo.cargaOK == true) {
papel.drawImage(fondo.imagen, 0, 0);
}
if (vaca.cargaOK == true) {
for (v=0; v<cantidadVacas; v++) {
// var x = aleatorio(0, 420); // 420 pq fondo es 500x500px y vaca es 80x80px, para que no salga cortada, pero asi pueden salir una encima de la otra
var x = aleatorio(0, 6); // 6 pq se divide 500 el px de fondo entre80 los px de la vaca
var y = aleatorio(0, 6);
x = x*80;
y = y*80;
papel.drawImage(vaca.imagen, x, y);
}
}
if (cerdo.cargaOK == true) {
for (c=0; c<cantidadCerdos; c++) {
// var x = aleatorio(0, 420); // 420 pq fondo es 500x500px y vaca es 80x80px, para que no salga cortada, pero asi pueden salir una encima de la otra
var x = aleatorio(0, 6); // 6 pq se divide 500 el px de fondo entre80 los px de la vaca
var y = aleatorio(0, 6);
x = x*80;
y = y*80;
papel.drawImage(cerdo.imagen, x, y);
}
}
if (pollo.cargaOK == true) {
for (p=0; p<cantidadPollos; p++) {
// var x = aleatorio(0, 420); // 420 pq fondo es 500x500px y vaca es 80x80px, para que no salga cortada, pero asi pueden salir una encima de la otra
var x = aleatorio(0, 6); // 6 pq se divide 500 el px de fondo entre80 los px de la vaca
var y = aleatorio(0, 6);
x = x*80;
y = y*80;
papel.drawImage(pollo.imagen, x, y);
}
}
}
function aleatorio (min, max) {
var resultado;
resultado = Math.floor(Math.random() * (max - min + 1)) + min;
return resultado;
}