Files
GTA4RP/scripts/server/job/bus.js

152 lines
5.2 KiB
JavaScript

// ===========================================================================
// Asshat-Gaming Roleplay
// https://github.com/VortrexFTW/gtac_asshat_rp
// Copyright (c) 2020 Asshat-Gaming (https://asshatgaming.com)
// ---------------------------------------------------------------------------
// FILE: bus.js
// DESC: Provides bus driver job functions and usage
// TYPE: Job (JavaScript)
// ===========================================================================
let busRoutes = [
false,
// GTA 3
[
// PORTLAND ISLAND ROUTE 1
{
name: "Portland Red Line",
island: 1,
busColour: toColour(120, 0, 0, 255),
positions: [
toVector3(1269, -1056.4, 14.75),
toVector3(1088.7, -968.8, 14.91),
toVector3(1059.1, -870.9, 14.91),
toVector3(917.6, -815.9, 14.91),
toVector3(851.1, -766.1, 14.91),
toVector3(838.8, -598.7, 14.91),
toVector3(959.3, -581.6, 14.91),
toVector3(853.1, -485.9, 14.91),
toVector3(838.8, -312.68, 6.8),
toVector3(913.9, -177.4, 4.91),
toVector3(1123.3, -67.74, 7.41),
toVector3(1043.6, -191.63, 4.91),
toVector3(1213.2, -281.3, 25.76),
toVector3(1193.3, -474.3, 24.98),
toVector3(1335.4, -499.7, 45.28),
toVector3(1220.3, -341.4, 26.38),
toVector3(1122.6, -475.6, 19.91),
toVector3(1309.2, -642.4, 12.3),
toVector3(1350.5, -845, 14.91),
toVector3(1322.2, -1025.3, 14.76),
],
},
// STAUNTON ISLAND ROUTE 1
{
name: "Staunton Red Line",
island: 2,
busColour: toColour(120, 0, 0, 255),
positions: [
toVector3(-1.11, -388.4, 16.11),
toVector3(-15.75, -735.3, 26.15),
toVector3(33.63, -1029.4, 26.11),
toVector3(-53.92, -1233.4, 26.11),
toVector3(126.58, -1323.7, 26.11),
toVector3(189.39, -1285.6, 26.11),
toVector3(266.9, -1179.1, 26.11),
toVector3(283.93, -1370.2, 26.11),
toVector3(144.44, -1455.5, 26.11),
toVector3(34.5, -1511.7, 26.11),
toVector3(325.31, -1579, 26.03),
toVector3(302.33, -1417.7, 26.11),
toVector3(309.76, -1290, 26.11),
toVector3(378.5, -1235.1, 26.11),
toVector3(404, -1376.3, 26.11),
toVector3(189.07, -1159.3, 26.11),
toVector3(189.44, -956.9, 26.11),
toVector3(254.18, -722.3, 26.11),
toVector3(383.4, -704.2, 26.11),
toVector3(429.3, -420.6, 22.04),
toVector3(570.9, -336.4, 19.71),
toVector3(267.46, 91.12, 15.96),
toVector3(99.13, -31.96, 16.11),
toVector3(243.94, -187.01, 21.31),
toVector3(99.17, -263.44, 16.11),
toVector3(-26.92, -283.73, 16.11),
],
},
],
// GTA VC
[
],
// GTA SA
[
],
// GTA UG
[
],
// GTA IV
[
],
];
// ---------------------------------------------------------------------------
function getRandomBusRoute(island) {
let islandBusRoutes = busRoutes[getServerGame()].filter(busRoute => busRoute.island == island);
let randomRoute = getRandom(0, islandBusRoutes.length-1);
return islandBusRoutes[randomRoute];
}
// ---------------------------------------------------------------------------
function getNextStopOnBusRoute(client) {
if(getClientData(client).busRoute && getClientData(client).lastBusStop) {
if(!isGoingToLastStopOnBusRoute(client)) {
return busRoutes[getServerGame()][getClientData(client).busRoute].positions[getClientData(client).lastBusStop+1];
} else {
let slot = busRoutes[getServerGame()][getClientData(client).busRoute].length-1;
return busRoutes[getServerGame()][getClientData(client).busRoute].positions[slot];
}
}
}
// ---------------------------------------------------------------------------
function isGoingToLastStopOnBusRoute(client) {
if(getClientData(client).busRoute && getClientData(client).lastBusStop) {
if(getClientData(client).lastBusStop+1 == busRoutes[getServerGame()][getClientData(client).busRoute].length-1) {
return true;
}
}
}
// ---------------------------------------------------------------------------
function freezeBusForStop(client) {
triggerNetworkEvent("ag.control", client, false, false);
}
// ---------------------------------------------------------------------------
function unFreezeBusForStop(client) {
triggerNetworkEvent("ag.control", client, true, false);
}
// ---------------------------------------------------------------------------
function showNextBusStop(client) {
let nextStop = getNextStopOnBusRoute(client);
triggerNetworkEvent("ag.showBusStop", client, nextStop, getColourByName("busDriverGreen"));
}
// ---------------------------------------------------------------------------