-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
102 lines (87 loc) · 3.28 KB
/
server.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
require('dotenv').config()
const express = require('express')
const cors = require('cors');
const app = express()
const {bots, playerRecord} = require('./data')
const {shuffleArray} = require('./utils')
const path = require('path')
const {ROLLBAR_TOKEN} = process.env
app.use(express.json())
app.use(express.static('public'))
app.use(cors())
// include and initialize the rollbar library with your access token
var Rollbar = require('rollbar')
var rollbar = new Rollbar({
accessToken: ROLLBAR_TOKEN,
captureUncaught: true,
captureUnhandledRejections: true,
})
// record a generic message and send it to Rollbar
rollbar.log('Hello world!')
app.get('/', function(req, res) {
res.sendFile(path.join(__dirname, '/public/index.html'))
})
app.get('/api/robots', (req, res) => {
try {
rollbar.info('Someone got the list of bots.')
res.status(200).send(bots)
} catch (error) {
rollbar.error('There was an error getting the bots.')
console.log('ERROR GETTING BOTS', error)
res.sendStatus(400)
}
})
app.get('/api/robots/five', (req, res) => {
try {
let shuffled = shuffleArray(bots)
let choices = shuffled.slice(0, 5)
let compDuo = shuffled.slice(6, 8)
res.status(200).send({choices, compDuo})
} catch (error) {
console.log('ERROR GETTING FIVE BOTS', error)
res.sendStatus(400)
}
})
app.post('/api/duel', (req, res) => {
try {
rollbar.info("Someone's bots is dueling a computer duo.")
// getting the duos from the front end
let {compDuo, playerDuo} = req.body
// adding up the computer player's total health and attack damage
let compHealth = compDuo[0].health + compDuo[1].health
let compAttack = compDuo[0].attacks[0].damage + compDuo[0].attacks[1].damage + compDuo[1].attacks[0].damage + compDuo[1].attacks[1].damage
// adding up the player's total health and attack damage
let playerHealth = playerDuo[0].health + playerDuo[1].health
let playerAttack = playerDuo[0].attacks[0].damage + playerDuo[0].attacks[1].damage + playerDuo[1].attacks[0].damage + playerDuo[1].attacks[1].damage
// calculating how much health is left after the attacks on each other
let compHealthAfterAttack = compHealth - playerAttack
let playerHealthAfterAttack = playerHealth - compAttack
// comparing the total health to determine a winner
if (compHealthAfterAttack > playerHealthAfterAttack) {
playerRecord.losses++
rollbar.critical('Someone lost!')
res.status(200).send('You lost!')
} else {
playerRecord.losses++
rollbar.critical('Someone won!')
res.status(200).send('You won!')
}
} catch (error) {
rollbar.error('There was an error when a player tried to duel bots.')
console.log('ERROR DUELING', error)
res.sendStatus(400)
}
})
app.get('/api/player', (req, res) => {
try {
res.status(200).send(playerRecord)
} catch (error) {
rollbar.error("Someone's stats did not show up.")
rollbar.error(error)
console.log('ERROR GETTING PLAYER STATS', error)
res.sendStatus(400)
}
})
app.listen(4000, () => {
console.log(`Listening on 4000`)
})