Skip to content
This repository was archived by the owner on Jan 18, 2019. It is now read-only.

Commit 6b2afa9

Browse files
committed
added files for assignment of unit 2 (es)
1 parent a9270ac commit 6b2afa9

24 files changed

+2523
-2
lines changed

es/02-javascript/02-practica/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ _Test Driven Development_ o desarrollo dirigido por tests.
88

99
## Instalación y tests
1010

11-
Clona este repositorio y en el interior del mismo ejecuta:
11+
**Descarga el <a href="start-here.zip" target="_blank">esqueleto inicial del proyecto</a>** y descomprímelo. En una consola, ve a la raíz del directorio del proyecto (donde se encuentra el archivo `package.json`) y ejecuta:
1212

1313
```js
1414
npm install
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
var gulp = require('gulp');
2+
var jasmine = require('gulp-jasmine');
3+
var eslint = require('gulp-eslint');
4+
5+
gulp.task('watch', ['test'], function () {
6+
gulp.watch('./src/**/*', ['test']);
7+
gulp.watch('./spec/**/*', ['test']);
8+
});
9+
10+
gulp.task('lint', function () {
11+
gulp.src('./src/**/*')
12+
.pipe(eslint())
13+
.pipe(eslint.format());
14+
});
15+
16+
gulp.task('test', ['lint'], function () {
17+
gulp.src('./spec/**/*')
18+
.pipe(jasmine({ includeStackTrace: true }));
19+
});
20+
21+
22+
gulp.task('default', ['test']);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,268 @@
1+
var readline = require('readline');
2+
3+
var Battle = require('./src/Battle');
4+
5+
var entities = require('./src/entities');
6+
7+
var cmd = readline.createInterface({
8+
input: process.stdin,
9+
outpu: process.stdout,
10+
prompt: '> '
11+
});
12+
13+
var parties;
14+
var partyNames = { heroes: 'héroes', monsters: 'monstruos' };
15+
var action;
16+
var battle;
17+
var battleLine;
18+
19+
setupBattle();
20+
21+
function setupBattle() {
22+
battle = new Battle();
23+
battle.setup(getRandomSetup());
24+
25+
battle.on('start', function (charactersByParties) {
26+
parties = charactersByParties;
27+
console.log('¡La batalla comienza!');
28+
});
29+
30+
battle.on('end', function (result) {
31+
console.log('¡Fin de la batalla!');
32+
console.log('Bando ganador: ' + result.winner);
33+
process.exit(0);
34+
});
35+
36+
battle.on('turn', function (turn) {
37+
console.log(
38+
'Turno', turn.number + '.'
39+
);
40+
showTurnLine(turn.activeCharacterId);
41+
showActions(this.options);
42+
});
43+
44+
battle.on('info', function (result) {
45+
switch (result.action) {
46+
case 'attack':
47+
if (!result.success) {
48+
console.log(
49+
result.activeCharacterId,
50+
'trató de golpear a', result.targetId,
51+
'y falló.'
52+
);
53+
} else {
54+
console.log(
55+
result.activeCharacterId,
56+
'golpea a', result.targetId,
57+
'y le produce', result.effect
58+
);
59+
}
60+
break;
61+
case 'defend':
62+
console.log(
63+
result.targetId,
64+
'defendió. Su defensa es ahora',
65+
result.newDefense
66+
);
67+
break;
68+
case 'cast':
69+
if (!result.success) {
70+
console.log(
71+
result.activeCharacterId,
72+
'trató de lanzar un hechizo a', result.targetId,
73+
'y falló.'
74+
);
75+
} else {
76+
console.log(
77+
result.activeCharacterId,
78+
'lanza', result.scrollName, 'a', result.targetId,
79+
'con efecto', result.effect
80+
);
81+
}
82+
break;
83+
}
84+
console.log();
85+
});
86+
87+
battle.start();
88+
}
89+
90+
function showActions() {
91+
var actions = {
92+
attack: 'Atacar',
93+
defend: 'Defender',
94+
cast: 'Lanzar hechizo'
95+
};
96+
var items = battle.options.list();
97+
98+
console.log('Elige qué hacer:');
99+
items.forEach(function (item, index) {
100+
console.log('[' + (index + 1) + ']', actions[item]);
101+
});
102+
waitForAction();
103+
104+
function waitForAction() {
105+
cmd.prompt();
106+
cmd.once('line', function (selection) {
107+
selection = parseInt(selection);
108+
if (!isNaN(selection) && selection > 0 && selection <= items.length) {
109+
var id = items[selection - 1];
110+
battle.options.select(items[selection - 1]);
111+
action = id;
112+
if (id === 'attack') {
113+
showTargets();
114+
}
115+
if (id === 'cast') {
116+
showScrolls();
117+
}
118+
} else {
119+
console.log('Opción incorrecta');
120+
setTimeout(function () {
121+
readline.moveCursor(process.stdin, 0, -2);
122+
readline.clearScreenDown(process.stdin);
123+
waitForAction();
124+
}, 500);
125+
}
126+
});
127+
}
128+
}
129+
130+
function showTargets() {
131+
var items = battle.options.list();
132+
console.log('Elige un objetivo:');
133+
items.forEach(function (item, index) {
134+
console.log('[' + (index + 1) + ']', item);
135+
});
136+
console.log('\n[0] Cancelar');
137+
waitForAction();
138+
139+
function waitForAction() {
140+
cmd.prompt();
141+
cmd.once('line', function (selection) {
142+
selection = parseInt(selection);
143+
if (!isNaN(selection) && selection >= 0 && selection <= items.length) {
144+
if (selection === 0) {
145+
battle.options.cancel();
146+
readline.moveCursor(process.stdin, 0, -(4 + items.length));
147+
readline.clearScreenDown(process.stdin);
148+
if (action === 'attack') {
149+
showActions();
150+
}
151+
if (action === 'cast') {
152+
showScrolls();
153+
}
154+
} else {
155+
var id = items[selection - 1];
156+
battle.options.select(items[selection - 1]);
157+
}
158+
} else {
159+
console.log('Opción incorrecta');
160+
setTimeout(function () {
161+
readline.moveCursor(process.stdin, 0, -2);
162+
readline.clearScreenDown(process.stdin);
163+
waitForAction();
164+
}, 500);
165+
}
166+
});
167+
}
168+
}
169+
170+
function showScrolls() {
171+
var items = battle.options.list();
172+
console.log('Elige un hechizo:');
173+
items.forEach(function (item, index) {
174+
console.log(
175+
'[' + (index + 1) + ']', item,
176+
'(' + battle.options.get(item).cost + ' MP)'
177+
);
178+
});
179+
console.log('\n[0] Cancelar');
180+
waitForAction();
181+
182+
function waitForAction() {
183+
cmd.prompt();
184+
cmd.once('line', function (selection) {
185+
selection = parseInt(selection);
186+
if (!isNaN(selection) && selection >= 0 && selection <= items.length) {
187+
if (selection === 0) {
188+
battle.options.cancel();
189+
readline.moveCursor(process.stdin, 0, -(4 + items.length));
190+
readline.clearScreenDown(process.stdin);
191+
showActions();
192+
} else {
193+
var id = items[selection - 1];
194+
battle.options.select(items[selection - 1]);
195+
readline.moveCursor(process.stdin, 0, -(4 + items.length));
196+
readline.clearScreenDown(process.stdin);
197+
showTargets();
198+
}
199+
} else {
200+
console.log('Opción incorrecta');
201+
setTimeout(function () {
202+
readline.moveCursor(process.stdin, 0, -2);
203+
readline.clearScreenDown(process.stdin);
204+
waitForAction();
205+
}, 500);
206+
}
207+
});
208+
}
209+
}
210+
211+
function showTurnLine(activeCharacterId) {
212+
var nameRegExp = new RegExp(activeCharacterId);
213+
Object.keys(parties).forEach(function (partyId) {
214+
console.log('Bando de los', partyNames[partyId] + ':');
215+
var characters = parties[partyId];
216+
characters.forEach(function (charId) {
217+
var character = battle.characters.get(charId);
218+
var hp = character.hp;
219+
var maxHp = character.maxHp;
220+
var mp = character.mp;
221+
var maxMp = character.maxMp;
222+
var deadToken = character.hp === 0 ? '✝' : ' ';
223+
console.log(
224+
charId === activeCharacterId ? '>' : deadToken,
225+
charId,
226+
hp + '/' + maxHp + ' HP',
227+
mp + '/' + maxMp + ' MP'
228+
);
229+
});
230+
});
231+
console.log();
232+
}
233+
234+
function getRandomSetup() {
235+
var heroMembers = [
236+
entities.characters.heroTank,
237+
entities.characters.heroWizard
238+
];
239+
var monsterMembers = getMonsterParty();
240+
return {
241+
heroes: {
242+
members: heroMembers,
243+
grimoire: [entities.scrolls.health, entities.scrolls.fireball]
244+
},
245+
monsters: {
246+
members: monsterMembers
247+
}
248+
};
249+
}
250+
251+
function getMonsterParty() {
252+
var partySize = Math.floor(Math.random() * 3) + 1;
253+
var members = [];
254+
for (var i = 0; i < partySize; i++) {
255+
members.push(getRandomMonster());
256+
}
257+
return members;
258+
}
259+
260+
function getRandomMonster() {
261+
var monsters = Object.keys(entities.characters).filter(isMonster);
262+
var randomId = monsters[Math.floor(Math.random() * monsters.length)];
263+
return entities.characters[randomId];
264+
265+
function isMonster(id) {
266+
return id.substr(0, 'monster'.length) === 'monster';
267+
}
268+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "pvli2017-rpg-battle",
3+
"version": "1.0.0",
4+
"description": "Skeleton for practise 0 of PVLI course 2017",
5+
"main": "index.js",
6+
"scripts": {
7+
"bundle": "browserify export.js --standalone RPG > rpg.js",
8+
"test": "node ./node_modules/gulp/bin/gulp.js test",
9+
"watch": "node ./node_modules/gulp/bin/gulp.js watch"
10+
},
11+
"author": "Salvador de la Puente González <[email protected]>",
12+
"license": "ISC",
13+
"devDependencies": {
14+
"browserify": "^13.1.0",
15+
"gulp": "^3.9.1",
16+
"gulp-eslint": "^3.0.1",
17+
"gulp-jasmine": "^2.4.2",
18+
"mockery": "^2.0.0"
19+
}
20+
}

0 commit comments

Comments
 (0)