2022-07-12 15:50:05 +01:00
|
|
|
import { Application } from "express";
|
|
|
|
import { Module } from "../module";
|
|
|
|
import * as wm from "../wmmt/wm.proto";
|
|
|
|
import * as svc from "../wmmt/service.proto";
|
2022-07-15 15:39:59 +01:00
|
|
|
import { prisma } from "..";
|
2022-07-20 17:29:28 +10:00
|
|
|
import { Car, ScratchSheet, ScratchSquare, User } from "@prisma/client";
|
2022-07-17 10:41:26 +01:00
|
|
|
import { Config } from "../config";
|
2022-07-18 13:15:57 +01:00
|
|
|
import Long from "long";
|
2022-07-12 15:50:05 +01:00
|
|
|
|
|
|
|
export default class GameModule extends Module {
|
|
|
|
register(app: Application): void {
|
2022-07-15 19:26:29 +01:00
|
|
|
app.post('/method/save_game_result', async (req, res) => {
|
|
|
|
let body = wm.wm.protobuf.SaveGameResultRequest.decode(req.body);
|
|
|
|
let car = await prisma.car.findFirst({
|
|
|
|
where: {
|
|
|
|
carId: body.carId
|
|
|
|
}
|
|
|
|
});
|
2022-07-20 00:23:50 +07:00
|
|
|
let storyLose: boolean = false;
|
2022-07-15 19:26:29 +01:00
|
|
|
switch (body.gameMode) {
|
|
|
|
case wm.wm.protobuf.GameMode.MODE_STORY:
|
|
|
|
{
|
2022-07-20 00:23:50 +07:00
|
|
|
if (!(body.retired)) {
|
|
|
|
let maxConsecutiveWins = car!.stConsecutiveWinsMax;
|
|
|
|
if (maxConsecutiveWins < body.stResult!.stConsecutiveWins!) {
|
|
|
|
maxConsecutiveWins = body.stResult!.stConsecutiveWins!;
|
2022-07-18 13:15:57 +01:00
|
|
|
}
|
2022-07-20 00:23:50 +07:00
|
|
|
let divcount = body.stResult?.stClearDivCount;
|
|
|
|
let saveEx: any = {};
|
|
|
|
if (body.stResult?.stLoseBits !== null && body.stResult?.stLoseBits !== undefined) {
|
|
|
|
let actualLoseBits = BigInt(0);
|
|
|
|
if (body.stResult?.stLoseBits! instanceof Long) {
|
|
|
|
actualLoseBits = actualLoseBits | BigInt(body.stResult?.stLoseBits.high);
|
|
|
|
actualLoseBits = actualLoseBits << BigInt(32);
|
|
|
|
actualLoseBits = actualLoseBits | BigInt(body.stResult?.stLoseBits.low);
|
|
|
|
saveEx.stLoseBits = Number(actualLoseBits);
|
|
|
|
if(saveEx.stLoseBits > 0){
|
|
|
|
storyLose = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
saveEx.stLoseBits = car?.stLoseBits;
|
|
|
|
}
|
|
|
|
if (divcount !== null && divcount !== undefined && divcount !== 0) {
|
|
|
|
console.log(body.stResult?.stClearDivCount);
|
|
|
|
saveEx.stClearDivCount = divcount;
|
|
|
|
} else {
|
|
|
|
saveEx.stClearDivCount = car?.stClearDivCount;
|
|
|
|
}
|
|
|
|
if (body.stResult?.stClearBits !== null && body.stResult?.stClearBits !== undefined && storyLose !== true) {
|
|
|
|
saveEx.stClearBits = body.stResult?.stClearBits;
|
|
|
|
} else {
|
|
|
|
saveEx.stClearBits = car?.stClearBits;
|
|
|
|
}
|
|
|
|
if (body.stResult?.stPlayCount !== null && body.stResult?.stPlayCount !== undefined) {
|
|
|
|
saveEx.stPlayCount = body.stResult?.stPlayCount!;
|
|
|
|
} else {
|
|
|
|
saveEx.stPlayCount = car?.stPlayCount;
|
|
|
|
}
|
|
|
|
if (body.stResult?.stClearCount !== null && body.stResult?.stClearCount !== undefined && body.stResult?.stClearCount !== 0) {
|
|
|
|
saveEx.stClearCount = body.stResult?.stClearCount!;
|
|
|
|
} else {
|
|
|
|
saveEx.stClearCount = car?.stClearCount;
|
|
|
|
}
|
|
|
|
if (body.stResult?.stConsecutiveWins !== null && body.stResult?.stConsecutiveWins !== undefined) {
|
|
|
|
saveEx.stConsecutiveWins = body.stResult?.stConsecutiveWins!;
|
|
|
|
} else {
|
|
|
|
saveEx.stConsecutiveWins = car?.stConsecutiveWins;
|
|
|
|
}
|
|
|
|
if (body.stResult?.tuningPoint !== null && body.stResult?.tuningPoint !== undefined) {
|
|
|
|
saveEx.tuningPoints = body.stResult?.tuningPoint!;
|
|
|
|
} else {
|
|
|
|
saveEx.tuningPoints = car?.tuningPoints;
|
|
|
|
}
|
|
|
|
if (body.stResult?.stCompleted_100Episodes !== null && body.stResult?.stCompleted_100Episodes !== undefined) {
|
|
|
|
saveEx.stCompleted100Episodes = body.stResult?.stCompleted_100Episodes!;
|
|
|
|
} else {
|
|
|
|
saveEx.stCompleted100Episodes = car?.stCompleted100Episodes;
|
|
|
|
}
|
|
|
|
console.log(saveEx);
|
|
|
|
let c = await prisma.car.update({
|
|
|
|
where: {
|
|
|
|
carId: body.carId
|
|
|
|
},
|
|
|
|
data: saveEx
|
|
|
|
});
|
2022-07-20 12:27:37 +07:00
|
|
|
console.log('-------');
|
2022-07-20 00:23:50 +07:00
|
|
|
console.log(c);
|
2022-07-20 12:27:37 +07:00
|
|
|
|
|
|
|
for(let i=0; i<body.earnedItems.length; i++){
|
|
|
|
await prisma.carItem.create({
|
|
|
|
data: {
|
|
|
|
carId: body.carId,
|
|
|
|
category: body.earnedItems[i].category,
|
|
|
|
itemId: body.earnedItems[i].itemId,
|
|
|
|
amount: 1
|
|
|
|
}
|
|
|
|
});
|
2022-07-18 13:15:57 +01:00
|
|
|
}
|
2022-07-18 12:50:49 +01:00
|
|
|
}
|
2022-07-15 19:26:29 +01:00
|
|
|
break;
|
|
|
|
}
|
2022-07-16 22:46:40 +01:00
|
|
|
case wm.wm.protobuf.GameMode.MODE_TIME_ATTACK:
|
|
|
|
{
|
2022-07-19 23:12:59 +10:00
|
|
|
console.log(body);
|
|
|
|
|
|
|
|
// If the game was not timed out / retired
|
|
|
|
if (!(body.retired || body.timeup)) {
|
|
|
|
|
|
|
|
console.log('Game not retired / timed out, continuing ...')
|
|
|
|
|
|
|
|
// Get the current time attack record for the car
|
2022-07-16 22:46:40 +01:00
|
|
|
let currentRecord = await prisma.timeAttackRecord.findFirst({
|
2022-07-19 23:12:59 +10:00
|
|
|
where: {
|
|
|
|
carId: body.carId, // , model: body.car!.model!,
|
|
|
|
course: body.taResult!.course
|
2022-07-16 22:46:40 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-07-19 23:12:59 +10:00
|
|
|
// Record already exists
|
|
|
|
if (currentRecord)
|
|
|
|
{
|
|
|
|
// If the existing record is faster, do not continue
|
|
|
|
if (body.taResult!.time > currentRecord.time) break;
|
|
|
|
|
|
|
|
console.log('Updating time attack record...')
|
2022-07-16 22:46:40 +01:00
|
|
|
|
2022-07-19 23:12:59 +10:00
|
|
|
await prisma.timeAttackRecord.update({
|
|
|
|
where: {
|
|
|
|
// Could be null - if it is null, this will insert.
|
|
|
|
dbId: currentRecord!.dbId
|
|
|
|
},
|
|
|
|
data: {
|
|
|
|
time: body.taResult!.time,
|
|
|
|
section1Time: body!.taResult!.section_1Time,
|
|
|
|
section2Time: body!.taResult!.section_2Time,
|
|
|
|
section3Time: body!.taResult!.section_3Time,
|
|
|
|
section4Time: body!.taResult!.section_4Time,
|
|
|
|
section5Time: body!.taResult!.section_5Time,
|
|
|
|
section6Time: body!.taResult!.section_6Time,
|
|
|
|
section7Time: body!.taResult!.section_7Time,
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else // Creating a new record
|
|
|
|
{
|
2022-07-16 23:08:07 +01:00
|
|
|
console.log('Creating new time attack record');
|
2022-07-20 02:02:19 +10:00
|
|
|
|
2022-07-16 23:08:07 +01:00
|
|
|
await prisma.timeAttackRecord.create({
|
|
|
|
data: {
|
|
|
|
carId: body.carId,
|
|
|
|
model: body.car!.model!,
|
|
|
|
time: body.taResult!.time,
|
|
|
|
isMorning: body.taResult!.isMorning,
|
|
|
|
course: body.taResult!.course,
|
|
|
|
section1Time: body!.taResult!.section_1Time,
|
|
|
|
section2Time: body!.taResult!.section_2Time,
|
|
|
|
section3Time: body!.taResult!.section_3Time,
|
|
|
|
section4Time: body!.taResult!.section_4Time,
|
|
|
|
section5Time: body!.taResult!.section_5Time,
|
|
|
|
section6Time: body!.taResult!.section_6Time,
|
|
|
|
section7Time: body!.taResult!.section_7Time,
|
|
|
|
}
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
}
|
2022-07-16 22:46:40 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2022-07-15 19:26:29 +01:00
|
|
|
}
|
2022-07-18 10:13:31 +01:00
|
|
|
await prisma.car.update({
|
|
|
|
where: {
|
|
|
|
carId: body.carId,
|
|
|
|
},
|
|
|
|
data: {
|
|
|
|
odometer: body.odometer,
|
|
|
|
playCount: body.playCount,
|
|
|
|
level: body.car!.level!,
|
|
|
|
title: body.car!.title!,
|
|
|
|
tunePower: body.car!.tunePower!,
|
|
|
|
tuneHandling: body.car!.tuneHandling!,
|
|
|
|
}
|
|
|
|
})
|
2022-07-16 21:08:06 +01:00
|
|
|
await prisma.carSettings.update({
|
|
|
|
where: {
|
|
|
|
dbId: car!.carSettingsDbId
|
|
|
|
},
|
|
|
|
data: {
|
|
|
|
...body.setting
|
|
|
|
}
|
|
|
|
});
|
2022-07-15 21:16:20 +01:00
|
|
|
let user = await prisma.user.findFirst({
|
|
|
|
where: {
|
|
|
|
id: body.car!.userId!
|
|
|
|
}
|
|
|
|
});
|
|
|
|
let storedTutorials = user!.tutorials;
|
2022-07-15 19:55:15 +01:00
|
|
|
body.confirmedTutorials.forEach(
|
|
|
|
(idx) => storedTutorials[idx] = true
|
|
|
|
);
|
|
|
|
await prisma.user.update({
|
|
|
|
where: {
|
|
|
|
id: body.car!.userId!
|
|
|
|
},
|
|
|
|
data: {
|
|
|
|
tutorials: storedTutorials
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-07-15 19:26:29 +01:00
|
|
|
let msg = {
|
|
|
|
error: wm.wm.protobuf.ErrorCode.ERR_SUCCESS,
|
|
|
|
}
|
|
|
|
let resp = wm.wm.protobuf.SaveGameResultResponse.encode(msg);
|
|
|
|
let end = resp.finish();
|
|
|
|
let r = res
|
|
|
|
.header('Server', 'v388 wangan')
|
|
|
|
.header('Content-Type', 'application/x-protobuf; revision=8053')
|
|
|
|
.header('Content-Length', end.length.toString())
|
|
|
|
.status(200);
|
|
|
|
r.send(Buffer.from(end));
|
|
|
|
})
|
|
|
|
|
2022-07-15 15:39:59 +01:00
|
|
|
app.post('/method/load_user', async (req, res) => {
|
2022-07-20 02:02:19 +10:00
|
|
|
|
2022-07-15 15:39:59 +01:00
|
|
|
let body = wm.wm.protobuf.LoadUserRequest.decode(req.body);
|
2022-07-20 02:02:19 +10:00
|
|
|
|
2022-07-15 15:39:59 +01:00
|
|
|
let user = await prisma.user.findFirst({
|
|
|
|
where: {
|
|
|
|
chipId: body.cardChipId,
|
|
|
|
accessCode: body.accessCode
|
2022-07-14 18:00:20 +07:00
|
|
|
},
|
2022-07-15 15:39:59 +01:00
|
|
|
include: {
|
|
|
|
cars: {
|
|
|
|
include: {
|
|
|
|
state: true,
|
|
|
|
}
|
|
|
|
},
|
2022-07-16 15:54:01 +01:00
|
|
|
unusedTickets: true
|
2022-07-15 15:39:59 +01:00
|
|
|
}
|
|
|
|
});
|
2022-07-20 02:02:19 +10:00
|
|
|
|
|
|
|
// No user returned
|
2022-07-15 15:39:59 +01:00
|
|
|
if (!user) {
|
2022-07-20 02:02:19 +10:00
|
|
|
|
2022-07-15 15:39:59 +01:00
|
|
|
console.log('no such user');
|
|
|
|
let msg = {
|
|
|
|
error: wm.wm.protobuf.ErrorCode.ERR_SUCCESS,
|
|
|
|
numOfOwnedCars: 0,
|
|
|
|
cars: [],
|
|
|
|
spappState: wm.wm.protobuf.SmartphoneAppState.SPAPP_UNREGISTERED,
|
|
|
|
transferState: wm.wm.protobuf.TransferState.NOT_REGISTERED
|
|
|
|
};
|
2022-07-17 19:27:27 +01:00
|
|
|
if (!body.cardChipId || !body.accessCode) {
|
|
|
|
let msg = {
|
|
|
|
error: wm.wm.protobuf.ErrorCode.ERR_ID_BANNED,
|
|
|
|
numOfOwnedCars: 0,
|
|
|
|
spappState: wm.wm.protobuf.SmartphoneAppState.SPAPP_UNREGISTERED,
|
|
|
|
transferState: wm.wm.protobuf.TransferState.NOT_REGISTERED
|
|
|
|
}
|
|
|
|
let resp = wm.wm.protobuf.LoadUserResponse.encode(msg);
|
|
|
|
let end = resp.finish();
|
|
|
|
let r = res
|
|
|
|
.header('Server', 'v388 wangan')
|
|
|
|
.header('Content-Type', 'application/x-protobuf; revision=8053')
|
|
|
|
.header('Content-Length', end.length.toString())
|
|
|
|
.status(200);
|
|
|
|
r.send(Buffer.from(end));
|
|
|
|
return;
|
|
|
|
}
|
2022-07-15 15:39:59 +01:00
|
|
|
let user = await prisma.user.create({
|
|
|
|
data: {
|
|
|
|
chipId: body.cardChipId,
|
|
|
|
accessCode: body.accessCode,
|
|
|
|
tutorials: [
|
|
|
|
false, //TUTORIAL_ID_STORY
|
|
|
|
false, //TUTORIAL_ID_TIME_ATTACK
|
|
|
|
false, //TUTORIAL_ID_GHOST
|
|
|
|
false, //TUTORIAL_ID_GHOST_CHALLENGE
|
|
|
|
false, //TUTORIAL_ID_GHOST_LEVEL
|
|
|
|
false, //TUTORIAL_ID_UNUSED_5
|
|
|
|
false, //TUTORIAL_ID_GHOST_SEARCH
|
|
|
|
false, //TUTORIAL_ID_GHOST_COMPETITION
|
|
|
|
false, //TUTORIAL_ID_HP600_CARD
|
|
|
|
false, //TUTORIAL_ID_UNUSED_9
|
|
|
|
false, //TUTORIAL_ID_COMPETITION_QUALIFIED
|
|
|
|
false, //TUTORIAL_ID_COMPETITION_TERMINAL
|
|
|
|
false, //TUTORIAL_ID_COMPETITION_NOTICE
|
|
|
|
false, //TUTORIAL_ID_COMPETITION_FINISHED
|
|
|
|
false, //TUTORIAL_ID_UNUSED_14
|
|
|
|
false, //TUTORIAL_ID_UNUSED_15
|
|
|
|
false, //TUTORIAL_ID_UNUSED_16
|
|
|
|
false, //TUTORIAL_ID_UNUSED_17
|
|
|
|
false, //TUTORIAL_ID_UNUSED_18
|
|
|
|
false, //TUTORIAL_ID_UNUSED_19
|
|
|
|
false, //TUTORIAL_ID_GHOST_STAMP
|
|
|
|
false, //TUTORIAL_ID_GHOST_STAMP_DECLINED
|
|
|
|
false, //TUTORIAL_ID_GHOST_STAMP_FRIENDS
|
2022-07-18 10:13:31 +01:00
|
|
|
true, //TUTORIAL_ID_TERMINAL_SCRATCH
|
|
|
|
true, //TUTORIAL_ID_TURN_SCRATCH_SHEET
|
2022-07-15 15:39:59 +01:00
|
|
|
false, //TUTORIAL_ID_INVITE_FRIEND_CAMPAIGN
|
|
|
|
false, //TUTORIAL_ID_CAR_COUPON_FULL_TUNED_RECEIVABLE
|
|
|
|
false, //TUTORIAL_ID_VS_CONTINUE_TICKET
|
|
|
|
false, //TUTORIAL_ID_UNUSED_28
|
|
|
|
false, //TUTORIAL_ID_UNUSED_29
|
|
|
|
false, //TUTORIAL_ID_UNUSED_30
|
|
|
|
false, //TUTORIAL_ID_DRESS_UP
|
|
|
|
false, //TUTORIAL_ID_MULTI_GHOST
|
2022-07-15 19:26:29 +01:00
|
|
|
true, //TUTORIAL_ID_STORY_NEW_FEATURE
|
|
|
|
true, //TUTORIAL_ID_GHOST_NEW_FEATURE
|
|
|
|
true, //TUTORIAL_ID_GHOST_REGION_MAP
|
2022-07-15 15:39:59 +01:00
|
|
|
],
|
|
|
|
}
|
|
|
|
});
|
|
|
|
console.log('user made')
|
|
|
|
if (!user) {
|
|
|
|
msg.error = wm.wm.protobuf.ErrorCode.ERR_REQUEST;
|
|
|
|
}
|
2022-07-17 10:41:26 +01:00
|
|
|
let ftTicketGrant = Config.getConfig().gameOptions.grantFullTuneTicketToNewUsers;
|
|
|
|
if (ftTicketGrant > 0) {
|
|
|
|
console.log(`Granting Full-Tune Ticket x${ftTicketGrant} to new user...`);
|
|
|
|
for (let i=0; i<ftTicketGrant; i++) {
|
|
|
|
await prisma.userItem.create({
|
|
|
|
data: {
|
|
|
|
userId: user.id,
|
|
|
|
category: wm.wm.protobuf.ItemCategory.CAT_CAR_TICKET_FREE,
|
|
|
|
itemId: 5
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
console.log('Done!');
|
|
|
|
}
|
2022-07-15 15:39:59 +01:00
|
|
|
let resp = wm.wm.protobuf.LoadUserResponse.encode(msg);
|
|
|
|
let end = resp.finish();
|
|
|
|
let r = res
|
|
|
|
.header('Server', 'v388 wangan')
|
|
|
|
.header('Content-Type', 'application/x-protobuf; revision=8053')
|
|
|
|
.header('Content-Length', end.length.toString())
|
|
|
|
.status(200);
|
|
|
|
r.send(Buffer.from(end));
|
|
|
|
return;
|
|
|
|
}
|
2022-07-20 02:02:19 +10:00
|
|
|
|
|
|
|
// console.log(user);
|
|
|
|
|
2022-07-15 15:39:59 +01:00
|
|
|
let carStates = user.cars.map(e => e.state);
|
2022-07-20 02:02:19 +10:00
|
|
|
|
2022-07-17 11:08:20 +01:00
|
|
|
let tickets = (user.unusedTickets || []).map(x => {
|
2022-07-16 21:03:30 +01:00
|
|
|
return {
|
|
|
|
itemId: x.itemId,
|
|
|
|
userItemId: x.dbId,
|
|
|
|
category: x.category
|
|
|
|
}
|
|
|
|
});
|
2022-07-20 02:02:19 +10:00
|
|
|
|
2022-07-15 15:39:59 +01:00
|
|
|
let msg = {
|
|
|
|
error: wm.wm.protobuf.ErrorCode.ERR_SUCCESS,
|
|
|
|
numOfOwnedCars: user.cars.length,
|
2022-07-14 17:44:06 +07:00
|
|
|
spappState: wm.wm.protobuf.SmartphoneAppState.SPAPP_UNREGISTERED,
|
|
|
|
transferState: wm.wm.protobuf.TransferState.TRANSFERRED,
|
2022-07-15 15:39:59 +01:00
|
|
|
carStates,
|
|
|
|
cars: user.cars,
|
|
|
|
userId: user.id,
|
|
|
|
banapassportAmId: 1,
|
|
|
|
mbId: 1,
|
2022-07-16 15:54:01 +01:00
|
|
|
tutorials: user.tutorials,
|
2022-07-16 21:03:30 +01:00
|
|
|
unusedCarTickets: tickets,
|
2022-07-15 15:39:59 +01:00
|
|
|
}
|
|
|
|
if (user.userBanned) {
|
|
|
|
msg.error = wm.wm.protobuf.ErrorCode.ERR_ID_BANNED;
|
|
|
|
}
|
|
|
|
let resp = wm.wm.protobuf.LoadUserResponse.encode(msg);
|
|
|
|
let end = resp.finish();
|
|
|
|
let r = res
|
|
|
|
.header('Server', 'v388 wangan')
|
|
|
|
.header('Content-Type', 'application/x-protobuf; revision=8053')
|
|
|
|
.header('Content-Length', end.length.toString())
|
|
|
|
.status(200);
|
|
|
|
r.send(Buffer.from(end));
|
|
|
|
})
|
|
|
|
|
2022-07-16 20:33:21 +07:00
|
|
|
app.post('/method/load_drive_information', async (req, res) => {
|
|
|
|
let body = wm.wm.protobuf.LoadDriveInformationRequest.decode(req.body);
|
|
|
|
let user = await prisma.user.findFirst({
|
|
|
|
where: {
|
|
|
|
id: body.userId,
|
|
|
|
},
|
|
|
|
include: {
|
|
|
|
unusedTickets: true,
|
|
|
|
}
|
|
|
|
});
|
2022-07-17 11:08:20 +01:00
|
|
|
let tickets = (user?.unusedTickets || []).map(x => {
|
2022-07-16 21:03:30 +01:00
|
|
|
return {
|
|
|
|
itemId: x.itemId,
|
|
|
|
userItemId: x.dbId,
|
|
|
|
category: x.category
|
|
|
|
}
|
|
|
|
});
|
2022-07-17 15:01:48 +01:00
|
|
|
let notice = (Config.getConfig().notices || []);
|
|
|
|
let noticeWindows = notice.map(a => wm.wm.protobuf.NoticeEntry.NOTICE_UNUSED_1);
|
2022-07-12 15:50:05 +01:00
|
|
|
let msg = {
|
2022-07-14 17:44:06 +07:00
|
|
|
error: wm.wm.protobuf.ErrorCode.ERR_SUCCESS,
|
2022-07-17 15:01:48 +01:00
|
|
|
noticeWindow: noticeWindows,
|
|
|
|
noticeWindowMessage: notice,
|
2022-07-14 13:38:18 +07:00
|
|
|
transferNotice: {
|
|
|
|
needToSeeTransferred: false,
|
2022-07-14 10:00:03 +01:00
|
|
|
totalMaxiGold: 0,
|
|
|
|
numOfPorscheCars: 0,
|
|
|
|
porscheModels: [],
|
|
|
|
hasR35: false,
|
2022-07-14 13:38:18 +07:00
|
|
|
},
|
2022-07-14 17:44:06 +07:00
|
|
|
restrictedModels: [],
|
|
|
|
announceFeature: false,
|
|
|
|
announceMobile: false,
|
2022-07-16 21:03:30 +01:00
|
|
|
availableTickets: tickets,
|
2022-07-12 15:50:05 +01:00
|
|
|
}
|
|
|
|
let resp = wm.wm.protobuf.LoadDriveInformationResponse.encode(msg);
|
|
|
|
let end = resp.finish();
|
|
|
|
let r = res
|
|
|
|
.header('Server', 'v388 wangan')
|
|
|
|
.header('Content-Type', 'application/x-protobuf; revision=8053')
|
|
|
|
.header('Content-Length', end.length.toString())
|
|
|
|
.status(200);
|
|
|
|
r.send(Buffer.from(end));
|
|
|
|
})
|
2022-07-15 15:39:59 +01:00
|
|
|
|
2022-07-16 22:46:40 +01:00
|
|
|
app.post('/method/load_time_attack_record', async (req, res) => {
|
2022-07-15 15:39:59 +01:00
|
|
|
let body = wm.wm.protobuf.LoadTimeAttackRecordRequest.decode(req.body);
|
2022-07-16 22:46:40 +01:00
|
|
|
let taRecordsForModel = await prisma.timeAttackRecord.findMany({
|
|
|
|
take: 100,
|
|
|
|
where: {
|
|
|
|
model: body.model,
|
|
|
|
course: body.course
|
|
|
|
},
|
|
|
|
orderBy: {
|
2022-07-17 10:26:40 +01:00
|
|
|
time: 'asc'
|
2022-07-16 22:46:40 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
let taRecordsOverall = await prisma.timeAttackRecord.findMany({
|
|
|
|
take: 100,
|
|
|
|
where: {
|
|
|
|
course: body.course
|
|
|
|
},
|
|
|
|
orderBy: {
|
2022-07-17 10:26:40 +01:00
|
|
|
time: 'asc'
|
2022-07-16 22:46:40 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
let taRecordPb = await prisma.timeAttackRecord.findFirst({
|
|
|
|
where: {
|
|
|
|
carId: body.carId,
|
|
|
|
course: body.course
|
|
|
|
},
|
|
|
|
orderBy: {
|
2022-07-17 10:26:40 +01:00
|
|
|
time: 'asc'
|
2022-07-16 22:46:40 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
if (!taRecordPb) {
|
|
|
|
let msg = {
|
|
|
|
error: wm.wm.protobuf.ErrorCode.ERR_SUCCESS,
|
2022-07-16 23:10:37 +01:00
|
|
|
wholeRanking: taRecordsOverall.map(a => a.time),
|
|
|
|
modelRanking: taRecordsForModel.map(a => a.time)
|
2022-07-16 22:46:40 +01:00
|
|
|
};
|
|
|
|
let resp = wm.wm.protobuf.LoadTimeAttackRecordResponse.encode(msg);
|
|
|
|
let end = resp.finish();
|
|
|
|
let r = res
|
|
|
|
.header('Server', 'v388 wangan')
|
|
|
|
.header('Content-Type', 'application/x-protobuf; revision=8053')
|
|
|
|
.header('Content-Length', end.length.toString())
|
|
|
|
.status(200);
|
|
|
|
r.send(Buffer.from(end));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
let msg = {
|
2022-07-14 13:38:18 +07:00
|
|
|
error: wm.wm.protobuf.ErrorCode.ERR_SUCCESS,
|
2022-07-16 22:46:40 +01:00
|
|
|
wholeRanking: taRecordsOverall.map(a => a.time),
|
|
|
|
modelRanking: taRecordsForModel.map(a => a.time),
|
|
|
|
personalBestTime: taRecordPb.time,
|
2022-07-17 15:14:16 +01:00
|
|
|
pbSection_1Time: taRecordPb.section1Time,
|
|
|
|
pbSection_2Time: taRecordPb.section2Time,
|
|
|
|
pbSection_3Time: taRecordPb.section3Time,
|
|
|
|
pbSection_4Time: taRecordPb.section4Time,
|
|
|
|
pbSection_5Time: taRecordPb.section5Time,
|
|
|
|
pbSection_6Time: taRecordPb.section6Time,
|
|
|
|
pbSection_7Time: taRecordPb.section7Time,
|
2022-07-15 15:39:59 +01:00
|
|
|
};
|
2022-07-16 22:46:40 +01:00
|
|
|
let resp = wm.wm.protobuf.LoadTimeAttackRecordResponse.encode(msg);
|
2022-07-15 15:39:59 +01:00
|
|
|
let end = resp.finish();
|
|
|
|
let r = res
|
|
|
|
.header('Server', 'v388 wangan')
|
|
|
|
.header('Content-Type', 'application/x-protobuf; revision=8053')
|
|
|
|
.header('Content-Length', end.length.toString())
|
|
|
|
.status(200);
|
|
|
|
r.send(Buffer.from(end));
|
|
|
|
})
|
|
|
|
|
2022-07-20 02:02:19 +10:00
|
|
|
// Load upon enter terminal
|
2022-07-15 15:39:59 +01:00
|
|
|
app.post('/method/load_terminal_information', (req, res) => {
|
|
|
|
let msg = {
|
|
|
|
error: wm.wm.protobuf.ErrorCode.ERR_SUCCESS,
|
|
|
|
prizeReceivable: false,
|
|
|
|
transferNotice: {
|
|
|
|
needToSeeTransferred: false
|
2022-07-14 13:38:18 +07:00
|
|
|
},
|
2022-07-15 15:39:59 +01:00
|
|
|
announceFeature: false,
|
|
|
|
freeScratched: true
|
2022-07-14 20:18:56 +07:00
|
|
|
|
2022-07-15 15:39:59 +01:00
|
|
|
}
|
|
|
|
let resp = wm.wm.protobuf.LoadDriveInformationResponse.encode(msg);
|
|
|
|
let end = resp.finish();
|
|
|
|
let r = res
|
|
|
|
.header('Server', 'v388 wangan')
|
|
|
|
.header('Content-Type', 'application/x-protobuf; revision=8053')
|
|
|
|
.header('Content-Length', end.length.toString())
|
|
|
|
.status(200);
|
|
|
|
r.send(Buffer.from(end));
|
|
|
|
})
|
2022-07-20 02:02:19 +10:00
|
|
|
|
|
|
|
// Load unrecieved user items
|
|
|
|
app.post('/method/load_unrecieved_user_items', (req, res) => {
|
|
|
|
|
|
|
|
// In future, might want to check db for player items
|
|
|
|
|
|
|
|
let msg = {
|
|
|
|
error: wm.wm.protobuf.ErrorCode.ERR_SUCCESS,
|
|
|
|
owned_user_items: [
|
|
|
|
wm.wm.protobuf.UserItem.create({
|
|
|
|
category: 17,
|
|
|
|
itemId: 1
|
|
|
|
})
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
let resp = wm.wm.protobuf.LoadUnreceivedUserItemsResponse.encode(msg);
|
|
|
|
let end = resp.finish();
|
|
|
|
let r = res
|
|
|
|
.header('Server', 'v388 wangan')
|
|
|
|
.header('Content-Type', 'application/x-protobuf; revision=8053')
|
|
|
|
.header('Content-Length', end.length.toString())
|
|
|
|
.status(200);
|
|
|
|
r.send(Buffer.from(end));
|
|
|
|
})
|
|
|
|
|
|
|
|
// Load user bookmarks
|
2022-07-20 17:29:28 +10:00
|
|
|
app.post('/method/load_bookmarks', async (req, res) => {
|
2022-07-20 02:02:19 +10:00
|
|
|
|
2022-07-20 17:29:28 +10:00
|
|
|
// Get the save bookmark request
|
|
|
|
let body = wm.wm.protobuf.LoadBookmarksRequest.decode(req.body);
|
|
|
|
|
|
|
|
// Check if the user has any existing bookmarks
|
|
|
|
let bookmarks = await prisma.bookmarks.findFirst({
|
|
|
|
where: {
|
|
|
|
userId: Number(body.userId)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Car bookmarks placeholder
|
|
|
|
let cars : Car[] = [];
|
|
|
|
|
|
|
|
// Bookmarks have been created
|
|
|
|
if (bookmarks)
|
|
|
|
{
|
|
|
|
// Loop over the bookmarked cars
|
|
|
|
for (let carId of bookmarks.carId)
|
|
|
|
{
|
|
|
|
// Get the car with the bookmarked car id
|
|
|
|
let car = await prisma.car.findFirst({
|
|
|
|
where: {
|
|
|
|
carId: carId
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// If the car is not null
|
|
|
|
if (car)
|
|
|
|
{
|
|
|
|
// Add the car to the cars list
|
|
|
|
cars.push(car);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-07-20 02:02:19 +10:00
|
|
|
|
|
|
|
let msg = {
|
|
|
|
error: wm.wm.protobuf.ErrorCode.ERR_SUCCESS,
|
2022-07-20 17:29:28 +10:00
|
|
|
cars: cars
|
2022-07-20 02:02:19 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
let resp = wm.wm.protobuf.LoadBookmarksResponse.encode(msg);
|
|
|
|
let end = resp.finish();
|
|
|
|
let r = res
|
|
|
|
.header('Server', 'v388 wangan')
|
|
|
|
.header('Content-Type', 'application/x-protobuf; revision=8053')
|
|
|
|
.header('Content-Length', end.length.toString())
|
|
|
|
.status(200);
|
|
|
|
r.send(Buffer.from(end));
|
|
|
|
})
|
|
|
|
|
2022-07-20 17:29:28 +10:00
|
|
|
// Save user bookmarks
|
|
|
|
app.post('/method/save_bookmarks', async (req, res) => {
|
|
|
|
|
|
|
|
// Get the save bookmark request
|
|
|
|
let body = wm.wm.protobuf.SaveBookmarksRequest.decode(req.body);
|
|
|
|
|
|
|
|
// Check if the user has any existing bookmarks
|
|
|
|
let bookmarks = await prisma.bookmarks.findFirst({
|
|
|
|
where: {
|
|
|
|
userId: Number(body.userId)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Bookmarks already exist
|
|
|
|
if (bookmarks)
|
|
|
|
{
|
|
|
|
// Update existing bookmarks
|
|
|
|
await prisma.bookmarks.update({
|
|
|
|
where: {
|
|
|
|
userId: body.userId
|
|
|
|
},
|
|
|
|
data: {
|
|
|
|
carId: body.cars
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
else // Bookmarks not set
|
|
|
|
{
|
|
|
|
// Create new bookmark
|
|
|
|
await prisma.bookmarks.create({
|
|
|
|
data: {
|
|
|
|
userId: body.userId,
|
|
|
|
carId: body.cars,
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Generate the response to the terminal (success messsage)
|
|
|
|
let resp = wm.wm.protobuf.LoadBookmarksResponse.encode({
|
|
|
|
error: wm.wm.protobuf.ErrorCode.ERR_SUCCESS
|
|
|
|
});
|
|
|
|
|
|
|
|
let end = resp.finish();
|
|
|
|
let r = res
|
|
|
|
.header('Server', 'v388 wangan')
|
|
|
|
.header('Content-Type', 'application/x-protobuf; revision=8053')
|
|
|
|
.header('Content-Length', end.length.toString())
|
|
|
|
.status(200);
|
|
|
|
r.send(Buffer.from(end));
|
|
|
|
})
|
|
|
|
|
2022-07-20 02:02:19 +10:00
|
|
|
// Car Summary Request (for bookmarks)
|
|
|
|
app.get('/resource/car_summary', async (req, res) => {
|
|
|
|
|
|
|
|
// Get the query from the request
|
|
|
|
let query = req.query;
|
|
|
|
|
|
|
|
// Get all of the cars matching the query
|
|
|
|
let cars = await prisma.car.findMany({
|
|
|
|
take: Number(query.limit),
|
|
|
|
where: {
|
|
|
|
name: {
|
|
|
|
startsWith: String(query.name)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
let msg = {
|
|
|
|
hitCount: cars.length,
|
|
|
|
cars: cars
|
|
|
|
}
|
|
|
|
|
|
|
|
let resp = wm.wm.protobuf.CarSummary.encode(msg);
|
|
|
|
let end = resp.finish();
|
|
|
|
let r = res
|
|
|
|
.header('Server', 'v388 wangan')
|
|
|
|
.header('Content-Type', 'application/x-protobuf; revision=8053')
|
|
|
|
.header('Content-Length', end.length.toString())
|
|
|
|
.status(200);
|
|
|
|
r.send(Buffer.from(end));
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
// Save upon timeout / exit terminal
|
|
|
|
app.post('/method/save_terminal_result', async (req, res) => {
|
|
|
|
|
|
|
|
// Get the contents from the request
|
|
|
|
let body = wm.wm.protobuf.SaveTerminalResultRequest.decode(req.body);
|
|
|
|
|
|
|
|
// user id is required field
|
|
|
|
let user = await prisma.user.findFirst({
|
|
|
|
where: {
|
|
|
|
id: body.userId
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
// Update the car order (NOT IMPLEMENTED)
|
|
|
|
|
|
|
|
// Update the completed tutorials
|
|
|
|
let storedTutorials = user!.tutorials;
|
|
|
|
|
|
|
|
body.confirmedTutorials.forEach(
|
|
|
|
(idx) => storedTutorials[idx] = true
|
|
|
|
);
|
|
|
|
|
|
|
|
await prisma.user.update({
|
|
|
|
where: {
|
|
|
|
id: body.userId
|
|
|
|
},
|
|
|
|
data: {
|
|
|
|
tutorials: storedTutorials
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
let msg = {
|
|
|
|
// Success error code
|
|
|
|
error: wm.wm.protobuf.ErrorCode.ERR_SUCCESS,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Encode the save terminal result response
|
|
|
|
let resp = wm.wm.protobuf.SaveTerminalResultResponse.encode(msg);
|
|
|
|
let end = resp.finish();
|
|
|
|
let r = res
|
|
|
|
.header('Server', 'v388 wangan')
|
|
|
|
.header('Content-Type', 'application/x-protobuf; revision=8053')
|
|
|
|
.header('Content-Length', end.length.toString())
|
|
|
|
.status(200);
|
|
|
|
r.send(Buffer.from(end));
|
|
|
|
})
|
2022-07-15 15:39:59 +01:00
|
|
|
|
2022-07-20 02:02:19 +10:00
|
|
|
// Terminal scratch (VERY WIP)
|
2022-07-20 17:29:28 +10:00
|
|
|
app.post('/method/load_scratch_information', async (req, res) => {
|
|
|
|
|
|
|
|
// Get the information from the request
|
|
|
|
let body = wm.wm.protobuf.LoadScratchInformationRequest.decode(req.body);
|
|
|
|
|
|
|
|
// Get the user's current scratch sheet
|
|
|
|
let user = await prisma.user.findFirst({
|
|
|
|
where: {
|
|
|
|
userId: body.userId
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Get all of the scratch sheets for the user
|
|
|
|
let scratchSheets = await prisma.scratchSheet.findMany({
|
|
|
|
where: {
|
|
|
|
userId: body.userId
|
|
|
|
},
|
|
|
|
include: {
|
|
|
|
squares: true
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// No scratch sheets for user
|
|
|
|
if (scratchSheets.length < user.currentSheet)
|
|
|
|
{
|
|
|
|
// Create a new scratch sheet for the user
|
|
|
|
let sheet = await prisma.scratchSheet.create({
|
|
|
|
data: {
|
|
|
|
userId: body.userId
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
// Populate each square (with FT ticket for now)
|
|
|
|
for (let i=0; i<50; i++) {
|
|
|
|
await prisma.scratchSquare.create({
|
|
|
|
data: {
|
|
|
|
sheetId: sheet.id,
|
|
|
|
category: wm.wm.protobuf.ItemCategory.CAT_CAR_TICKET_FREE,
|
|
|
|
itemId: 5,
|
|
|
|
earned: false
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// In future, I will very the way this is populated based on settings
|
|
|
|
// i.e. totally random items, items based upon real arcade, etc.
|
|
|
|
|
|
|
|
// Get the data for the newly created sheet
|
|
|
|
let newSheet = await prisma.scratchSheet.findFirst({
|
|
|
|
where: {
|
|
|
|
userId: body.userId
|
|
|
|
},
|
|
|
|
include: {
|
|
|
|
squares: true
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Sheet is created successfully
|
|
|
|
if (newSheet)
|
|
|
|
{
|
|
|
|
// Update the scratch sheet list
|
|
|
|
scratchSheets = [newSheet];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Generate the scratch sheet proto
|
|
|
|
let scratch_sheets : wm.wm.protobuf.ScratchSheet[] = [];
|
|
|
|
|
|
|
|
// Loop over all of the protos
|
|
|
|
for(let sheet of scratchSheets)
|
|
|
|
{
|
|
|
|
// Get all of the scratch squares
|
|
|
|
let scratch_squares : wm.wm.protobuf.ScratchSheet.ScratchSquare[] = [];
|
|
|
|
|
|
|
|
// Loop over all of the squares
|
|
|
|
for (let square of sheet.squares)
|
|
|
|
{
|
|
|
|
// Add the current square to the protobuf array
|
|
|
|
scratch_squares.push(wm.wm.protobuf.ScratchSheet.ScratchSquare.create({
|
|
|
|
category: square.category,
|
|
|
|
itemId: square.itemId,
|
|
|
|
earned: square.earned
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the scratch sheet to the sheets list
|
|
|
|
scratch_sheets.push(
|
|
|
|
wm.wm.protobuf.ScratchSheet.create({
|
|
|
|
squares: scratch_squares
|
|
|
|
})
|
|
|
|
);
|
|
|
|
}
|
2022-07-20 02:02:19 +10:00
|
|
|
|
2022-07-15 15:39:59 +01:00
|
|
|
let msg = {
|
|
|
|
error: wm.wm.protobuf.ErrorCode.ERR_SUCCESS,
|
2022-07-20 02:02:19 +10:00
|
|
|
currentSheet: 0,
|
2022-07-15 15:39:59 +01:00
|
|
|
numOfScratched: 0,
|
2022-07-20 17:29:28 +10:00
|
|
|
scratch_sheets: scratch_sheets,
|
2022-07-20 02:02:19 +10:00
|
|
|
owned_user_items: [
|
|
|
|
|
|
|
|
]
|
2022-07-15 15:39:59 +01:00
|
|
|
}
|
2022-07-20 02:02:19 +10:00
|
|
|
|
2022-07-15 15:39:59 +01:00
|
|
|
let resp = wm.wm.protobuf.LoadScratchInformationResponse.encode(msg);
|
|
|
|
let end = resp.finish();
|
|
|
|
let r = res
|
|
|
|
.header('Server', 'v388 wangan')
|
|
|
|
.header('Content-Type', 'application/x-protobuf; revision=8053')
|
|
|
|
.header('Content-Length', end.length.toString())
|
|
|
|
.status(200);
|
|
|
|
r.send(Buffer.from(end));
|
2022-07-17 10:41:26 +01:00
|
|
|
});
|
2022-07-15 15:39:59 +01:00
|
|
|
|
2022-07-20 17:29:28 +10:00
|
|
|
app.post('/method/save_scratch_sheet', async (req, res) => {
|
|
|
|
|
|
|
|
// Get the information from the request
|
|
|
|
let body = wm.wm.protobuf.SaveScratchSheetRequest.decode(req.body);
|
|
|
|
|
|
|
|
// Get all of the scratch sheets for the user
|
|
|
|
let scratchSheets = await prisma.scratchSheet.findMany({
|
|
|
|
where: {
|
|
|
|
userId: body.userId
|
|
|
|
},
|
|
|
|
include: {
|
|
|
|
squares: true
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
// Get the target scratch sheet
|
|
|
|
let scratchSheet = scratchSheets[Number(body.targetSheet)];
|
|
|
|
|
|
|
|
// Get all of the squares for the scratch sheet
|
|
|
|
let scratchSquares = await prisma.scratchSquare.findMany({
|
|
|
|
where: {
|
|
|
|
sheetId: scratchSheet.id
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Get the target scratch square
|
|
|
|
let scratchSquare = scratchSquares[Number(body.targetSquare)];
|
|
|
|
|
|
|
|
// Update the revealed scratch square
|
|
|
|
await prisma.scratchSquare.update({
|
|
|
|
where: {
|
|
|
|
id: scratchSquare.id
|
|
|
|
},
|
|
|
|
data: {
|
|
|
|
earned: true
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Get the number of scratched squares on the page
|
|
|
|
let numOfScratched = await prisma.scratchSquare.count({
|
|
|
|
where: {
|
|
|
|
sheetId: scratchSheet.id,
|
|
|
|
earned: true
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
// Generate the scratch sheet proto
|
|
|
|
let scratch_sheets : wm.wm.protobuf.ScratchSheet[] = [];
|
|
|
|
|
|
|
|
// Loop over all of the protos
|
|
|
|
for(let sheet of scratchSheets)
|
|
|
|
{
|
|
|
|
// Get all of the scratch squares
|
|
|
|
let scratch_squares : wm.wm.protobuf.ScratchSheet.ScratchSquare[] = [];
|
|
|
|
|
|
|
|
// Loop over all of the squares
|
|
|
|
for (let square of sheet.squares)
|
|
|
|
{
|
|
|
|
// Add the current square to the protobuf array
|
|
|
|
scratch_squares.push(wm.wm.protobuf.ScratchSheet.ScratchSquare.create({
|
|
|
|
category: square.category,
|
|
|
|
itemId: square.itemId,
|
|
|
|
earned: square.earned
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the scratch sheet to the sheets list
|
|
|
|
scratch_sheets.push(
|
|
|
|
wm.wm.protobuf.ScratchSheet.create({
|
|
|
|
squares: scratch_squares
|
|
|
|
})
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
let msg = {
|
|
|
|
error: wm.wm.protobuf.ErrorCode.ERR_SUCCESS,
|
|
|
|
scratch_sheets : scratch_sheets,
|
|
|
|
currentSheet: body.targetSheet,
|
|
|
|
numOfScratched: numOfScratched,
|
|
|
|
earnedItem: wm.wm.protobuf.UserItem.create({
|
|
|
|
category: scratchSquare.category,
|
|
|
|
itemId: scratchSquare.itemId,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
let resp = wm.wm.protobuf.SaveScratchSheetResponse.encode(msg);
|
|
|
|
let end = resp.finish();
|
|
|
|
let r = res
|
|
|
|
.header('Server', 'v388 wangan')
|
|
|
|
.header('Content-Type', 'application/x-protobuf; revision=8053')
|
|
|
|
.header('Content-Length', end.length.toString())
|
|
|
|
.status(200);
|
|
|
|
r.send(Buffer.from(end));
|
|
|
|
})
|
|
|
|
|
2022-07-15 15:39:59 +01:00
|
|
|
app.post('/method/update_car', async (req, res) => {
|
|
|
|
let body = wm.wm.protobuf.UpdateCarRequest.decode(req.body);
|
|
|
|
let car = await prisma.car.findFirst({
|
|
|
|
where: {
|
2022-07-15 16:04:44 +01:00
|
|
|
carId: body.carId
|
2022-07-15 15:39:59 +01:00
|
|
|
},
|
|
|
|
include: {
|
|
|
|
settings: true
|
|
|
|
}
|
|
|
|
});
|
|
|
|
await prisma.carSettings.update({
|
|
|
|
where: {
|
|
|
|
dbId: car?.carSettingsDbId,
|
|
|
|
},
|
|
|
|
data: {
|
|
|
|
...body.setting
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
let msg = {
|
|
|
|
error: wm.wm.protobuf.ErrorCode.ERR_SUCCESS,
|
2022-07-14 13:38:18 +07:00
|
|
|
}
|
2022-07-15 15:39:59 +01:00
|
|
|
let resp = wm.wm.protobuf.UpdateCarResponse.encode(msg);
|
2022-07-14 13:38:18 +07:00
|
|
|
let end = resp.finish();
|
|
|
|
let r = res
|
|
|
|
.header('Server', 'v388 wangan')
|
|
|
|
.header('Content-Type', 'application/x-protobuf; revision=8053')
|
|
|
|
.header('Content-Length', end.length.toString())
|
|
|
|
.status(200);
|
|
|
|
r.send(Buffer.from(end));
|
|
|
|
})
|
2022-07-15 15:39:59 +01:00
|
|
|
|
2022-07-14 13:38:18 +07:00
|
|
|
app.post('/method/load_stamp_target', (req, res) => {
|
|
|
|
let msg = {
|
|
|
|
error: wm.wm.protobuf.ErrorCode.ERR_SUCCESS,
|
|
|
|
}
|
|
|
|
let resp = wm.wm.protobuf.LoadStampTargetResponse.encode(msg);
|
|
|
|
let end = resp.finish();
|
|
|
|
let r = res
|
|
|
|
.header('Server', 'v388 wangan')
|
|
|
|
.header('Content-Type', 'application/x-protobuf; revision=8053')
|
|
|
|
.header('Content-Length', end.length.toString())
|
|
|
|
.status(200);
|
|
|
|
r.send(Buffer.from(end));
|
|
|
|
})
|
2022-07-15 15:39:59 +01:00
|
|
|
|
|
|
|
app.post('/method/create_car', async (req, res) => {
|
|
|
|
let body = wm.wm.protobuf.CreateCarRequest.decode(req.body);
|
|
|
|
let user: User | null;
|
|
|
|
if (body.userId) {
|
|
|
|
user = await prisma.user.findFirst({
|
|
|
|
where: {
|
|
|
|
id: body.userId
|
|
|
|
},
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
user = await prisma.user.findFirst({
|
|
|
|
where: {
|
|
|
|
chipId: body.cardChipId,
|
|
|
|
accessCode: body.accessCode
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
if (!user) throw new Error();
|
|
|
|
let settings = await prisma.carSettings.create({
|
|
|
|
data: {}
|
|
|
|
});
|
|
|
|
let state = await prisma.carState.create({
|
|
|
|
data: {}
|
|
|
|
})
|
2022-07-16 21:03:30 +01:00
|
|
|
let fullTuneUsed = false;
|
|
|
|
if (body.userItemId) {
|
|
|
|
console.log(`Item used - ID ${body.userItemId}`);
|
|
|
|
let item = await prisma.userItem.delete({
|
|
|
|
where: {
|
|
|
|
dbId: body.userItemId
|
|
|
|
}
|
|
|
|
});
|
|
|
|
console.log(`Item category was ${item.category} and item game ID was ${item.itemId}`);
|
|
|
|
if (item.category == wm.wm.protobuf.ItemCategory.CAT_CAR_TICKET_FREE &&
|
|
|
|
item.itemId == 5)
|
|
|
|
{
|
|
|
|
// This is a full-tune ticket
|
|
|
|
fullTuneUsed = true;
|
|
|
|
}
|
|
|
|
console.log('Item deleted!');
|
|
|
|
}
|
|
|
|
let carInsert = {
|
|
|
|
userId: user.id,
|
|
|
|
manufacturer: body.car.manufacturer!,
|
|
|
|
defaultColor: body.car.defaultColor!,
|
|
|
|
model: body.car.model!,
|
|
|
|
visualModel: body.car.visualModel!,
|
|
|
|
name: body.car.name!,
|
|
|
|
title: body.car.title!,
|
|
|
|
level: body.car.level!,
|
|
|
|
tunePower: body.car.tunePower!,
|
|
|
|
tuneHandling: body.car.tuneHandling!,
|
|
|
|
carSettingsDbId: settings.dbId,
|
2022-07-18 10:13:31 +01:00
|
|
|
carStateDbId: state.dbId,
|
2022-07-18 10:50:20 +01:00
|
|
|
regionId: body.car.regionId!,
|
2022-07-16 21:03:30 +01:00
|
|
|
};
|
|
|
|
let additionalInsert = {}
|
|
|
|
if (fullTuneUsed) {
|
|
|
|
additionalInsert = {
|
|
|
|
stClearBits: 0,
|
|
|
|
stLoseBits: 0,
|
|
|
|
stClearCount: 80,
|
|
|
|
stClearDivCount: 4,
|
2022-07-17 17:15:24 +01:00
|
|
|
stConsecutiveWins: 80
|
2022-07-16 21:03:30 +01:00
|
|
|
};
|
|
|
|
}
|
2022-07-15 15:39:59 +01:00
|
|
|
let car = await prisma.car.create({
|
|
|
|
data: {
|
2022-07-16 21:03:30 +01:00
|
|
|
...carInsert,
|
2022-07-17 17:15:24 +01:00
|
|
|
...additionalInsert,
|
2022-07-15 15:39:59 +01:00
|
|
|
}
|
2022-07-16 21:03:30 +01:00
|
|
|
});
|
|
|
|
|
2022-07-15 16:04:44 +01:00
|
|
|
console.log(`Created new car ${car.name} with ID ${car.carId}`);
|
2022-07-12 15:50:05 +01:00
|
|
|
let msg = {
|
|
|
|
error: wm.wm.protobuf.ErrorCode.ERR_SUCCESS,
|
2022-07-15 16:04:44 +01:00
|
|
|
carId: car.carId,
|
2022-07-16 21:03:30 +01:00
|
|
|
car,
|
|
|
|
...carInsert,
|
|
|
|
...additionalInsert
|
2022-07-12 15:50:05 +01:00
|
|
|
}
|
|
|
|
let resp = wm.wm.protobuf.CreateCarResponse.encode(msg);
|
|
|
|
let end = resp.finish();
|
|
|
|
let r = res
|
|
|
|
.header('Server', 'v388 wangan')
|
|
|
|
.header('Content-Type', 'application/x-protobuf; revision=8053')
|
|
|
|
.header('Content-Length', end.length.toString())
|
|
|
|
.status(200);
|
|
|
|
r.send(Buffer.from(end));
|
|
|
|
})
|
2022-07-15 15:39:59 +01:00
|
|
|
|
2022-07-15 16:04:44 +01:00
|
|
|
app.post('/method/load_car', async (req, res) => {
|
|
|
|
let body = wm.wm.protobuf.LoadCarRequest.decode(req.body);
|
|
|
|
let car = await prisma.car.findFirst({
|
|
|
|
where: {
|
|
|
|
carId: body.carId
|
|
|
|
},
|
|
|
|
include: {
|
|
|
|
settings: true,
|
|
|
|
items: true,
|
|
|
|
}
|
|
|
|
});
|
2022-07-18 13:19:06 +01:00
|
|
|
// This is fucking terrible
|
|
|
|
let longLoseBits = Long.fromString(car!.stLoseBits.toString());
|
2022-07-15 16:04:44 +01:00
|
|
|
let msg = {
|
|
|
|
error: wm.wm.protobuf.ErrorCode.ERR_SUCCESS,
|
|
|
|
car: {
|
2022-07-16 21:03:30 +01:00
|
|
|
...car!
|
2022-07-15 16:04:44 +01:00
|
|
|
},
|
2022-07-16 21:03:30 +01:00
|
|
|
tuningPoint: car!.tuningPoints,
|
|
|
|
setting: car!.settings,
|
|
|
|
vsStarCountMax: car!.vsStarCount,
|
2022-07-15 16:04:44 +01:00
|
|
|
rgPreviousVersionPlayCount: 0,
|
2022-07-16 21:03:30 +01:00
|
|
|
stCompleted_100Episodes: car!.stCompleted100Episodes,
|
2022-07-15 16:04:44 +01:00
|
|
|
auraMotifAutoChange: false,
|
|
|
|
screenshotCount: 0,
|
|
|
|
transferred: false,
|
2022-07-18 13:19:06 +01:00
|
|
|
...car!,
|
|
|
|
stLoseBits: longLoseBits,
|
2022-07-20 12:27:37 +07:00
|
|
|
ownedItems: car!.items
|
2022-07-15 16:04:44 +01:00
|
|
|
};
|
|
|
|
let resp = wm.wm.protobuf.LoadCarResponse.encode(msg);
|
|
|
|
let end = resp.finish();
|
|
|
|
let r = res
|
|
|
|
.header('Server', 'v388 wangan')
|
|
|
|
.header('Content-Type', 'application/x-protobuf; revision=8053')
|
|
|
|
.header('Content-Length', end.length.toString())
|
|
|
|
.status(200);
|
|
|
|
r.send(Buffer.from(end));
|
|
|
|
});
|
|
|
|
|
2022-07-12 15:50:05 +01:00
|
|
|
app.post('/method/load_game_history', (req, res) => {
|
|
|
|
let msg = {
|
|
|
|
error: wm.wm.protobuf.ErrorCode.ERR_SUCCESS,
|
|
|
|
taRankingUpdatedAt: 0,
|
2022-07-15 15:39:59 +01:00
|
|
|
ghostBattleCount: 0,
|
|
|
|
ghostBattleWinCount: 0,
|
2022-07-12 15:50:05 +01:00
|
|
|
stampSheetCount: 100,
|
|
|
|
}
|
|
|
|
let resp = wm.wm.protobuf.LoadGameHistoryResponse.encode(msg);
|
|
|
|
let end = resp.finish();
|
|
|
|
let r = res
|
|
|
|
.header('Server', 'v388 wangan')
|
|
|
|
.header('Content-Type', 'application/x-protobuf; revision=8053')
|
|
|
|
.header('Content-Length', end.length.toString())
|
|
|
|
.status(200);
|
|
|
|
r.send(Buffer.from(end));
|
|
|
|
})
|
2022-07-15 15:39:59 +01:00
|
|
|
|
2022-07-12 15:50:05 +01:00
|
|
|
app.post('/method/update_user_session', (req, res) => {
|
|
|
|
let msg = {
|
|
|
|
error: wm.wm.protobuf.ErrorCode.ERR_SUCCESS,
|
|
|
|
}
|
|
|
|
let resp = wm.wm.protobuf.UpdateUserSessionResponse.encode(msg);
|
|
|
|
let end = resp.finish();
|
|
|
|
let r = res
|
|
|
|
.header('Server', 'v388 wangan')
|
|
|
|
.header('Content-Type', 'application/x-protobuf; revision=8053')
|
|
|
|
.header('Content-Length', end.length.toString())
|
|
|
|
.status(200);
|
|
|
|
r.send(Buffer.from(end));
|
|
|
|
})
|
|
|
|
}
|
2022-07-14 13:38:18 +07:00
|
|
|
}
|