* New script files to organize GUI * Added clientside pickup detection to reduce server load for enter/exit * Added notips command for players to toggle random tips * Select account last IP as part of wildcard (was separate due to old INT) * Save account registration with datetime instead of unix timestamp * Don't force mouse camera on moving anims in SA+ * Add IP ban to server runtime memory in subnet ban command * Add non-roleplay character name account moderation flag * Fix bizowner and bizclan commands * Fix bug that allowed buying items without having the needed cash * Fix set biz blip command * Add dealership help label type command * Added command to show all clan flag types * Added discord config and load from database * Fix angle for directional teleport and anim move directions * Use new colour structure in preparation for locale translations * Add on-foot only item usetype array to prevent using when in veh * Fix wrong const value for exit pickup type * Start using datetime in MySQL tables instead of unix timestamps * Start adding webhooks for discord (unfinished) * Added new discord URL to discord help category * Added house reset pickups/blips utils * Prevent using items when in skin selector * Fix get player command * Fix give player money command * Add coffee shop and vehicle repair shop default biz item templates * Remove old game fixes util (resource now in server config) * Fix bug where characters in clans wouldn't be shown in char select * Slimmed down the amount of timers * Made some potentially large numbers more readable (commas) * Remove colours in message for console output
124 lines
3.4 KiB
JavaScript
124 lines
3.4 KiB
JavaScript
let login = {
|
|
window: null,
|
|
logoImage: null,
|
|
messageLabel: null,
|
|
passwordLabel: null,
|
|
passwordInput: null,
|
|
loginButton: null,
|
|
};
|
|
|
|
// ===========================================================================
|
|
|
|
function initLoginGUI() {
|
|
logToConsole(LOG_DEBUG, `[VRR.GUI] Creating login GUI ...`);
|
|
login.window = mexui.window(game.width/2-150, game.height/2-129, 300, 258, 'LOGIN', {
|
|
main: {
|
|
backgroundColour: toColour(windowColour[0], windowColour[1], windowColour[2], windowColour[3]),
|
|
transitionTime: 500,
|
|
},
|
|
title: {
|
|
textSize: 0.0,
|
|
textColour: toColour(0, 0, 0, 0),
|
|
},
|
|
icon: {
|
|
textSize: 0.0,
|
|
textColour: toColour(0, 0, 0, 0),
|
|
},
|
|
focused: {
|
|
borderColour: toColour(0, 0, 0, 0),
|
|
},
|
|
});
|
|
login.window.titleBarIconSize = toVector2(0,0);
|
|
login.window.titleBarHeight = 0;
|
|
|
|
login.logoImage = login.window.image(100, 20, 100, 100, mainLogoPath, {
|
|
focused: {
|
|
borderColour: toColour(0, 0, 0, 0),
|
|
},
|
|
});
|
|
|
|
login.messageLabel = login.window.text(20, 135, 260, 20, 'Please enter your password!', {
|
|
main: {
|
|
textSize: 10.0,
|
|
textAlign: 0.5,
|
|
textColour: toColour(200, 200, 200, 255),
|
|
textFont: robotoFont,
|
|
},
|
|
focused: {
|
|
borderColour: toColour(0, 0, 0, 0),
|
|
},
|
|
});
|
|
|
|
login.passwordInput = login.window.textInput(20, 170, 260, 25, '', {
|
|
main: {
|
|
backgroundColour: toColour(0, 0, 0, 120),
|
|
borderColour: toColour(primaryColour[0], primaryColour[1], primaryColour[2], textInputAlpha),
|
|
textColour: toColour(200, 200, 200, 255),
|
|
textSize: 10.0,
|
|
textFont: robotoFont,
|
|
},
|
|
caret: {
|
|
lineColour: toColour(255, 255, 255, 255),
|
|
},
|
|
placeholder: {
|
|
textColour: toColour(200, 200, 200, 150),
|
|
textSize: 10.0,
|
|
textFont: robotoFont,
|
|
},
|
|
focused: {
|
|
borderColour: toColour(primaryColour[0], primaryColour[1], primaryColour[2], 255),
|
|
},
|
|
});
|
|
login.passwordInput.masked = true;
|
|
login.passwordInput.placeholder = "Password";
|
|
|
|
login.loginButton = login.window.button(20, 205, 260, 30, 'LOGIN', {
|
|
main: {
|
|
backgroundColour: toColour(primaryColour[0], primaryColour[1], primaryColour[2], buttonAlpha),
|
|
textColour: toColour(0, 0, 0, 255),
|
|
textSize: 10.0,
|
|
textFont: robotoFont,
|
|
textAlign: 0.5,
|
|
},
|
|
focused: {
|
|
borderColour: toColour(primaryColour[0], primaryColour[1], primaryColour[2], buttonAlpha),
|
|
},
|
|
}, checkLogin);
|
|
|
|
logToConsole(LOG_DEBUG, `[VRR.GUI] Created login GUI`);
|
|
}
|
|
|
|
// ===========================================================================
|
|
|
|
function showLoginGUI() {
|
|
closeAllWindows();
|
|
logToConsole(LOG_DEBUG, `[VRR.GUI] Showing login window`);
|
|
setChatWindowEnabled(false);
|
|
mexui.setInput(true);
|
|
login.window.shown = true;
|
|
}
|
|
|
|
// ===========================================================================
|
|
|
|
function checkLogin() {
|
|
logToConsole(LOG_DEBUG, `[VRR.GUI] Checking login with server ...`);
|
|
triggerNetworkEvent("vrr.checkLogin", login.passwordInput.lines[0]);
|
|
}
|
|
|
|
// ===========================================================================
|
|
|
|
function loginFailed(errorMessage) {
|
|
logToConsole(LOG_DEBUG, `[VRR.GUI] Server reports login failed`);
|
|
login.messageLabel.text = errorMessage;
|
|
login.messageLabel.styles.main.textColour = toColour(180, 32, 32, 255);
|
|
login.passwordInput.text = "";
|
|
}
|
|
|
|
// ===========================================================================
|
|
|
|
function loginSuccess() {
|
|
logToConsole(LOG_DEBUG, `[VRR.GUI] Server reports login was successful`);
|
|
closeAllWindows();
|
|
}
|
|
|
|
// ===========================================================================
|