Skip to content

Commit d7acd4e

Browse files
authored
Merge branch 'multitheftauto:main' into feature/changelog-property
2 parents 5455f20 + 4fe7dc0 commit d7acd4e

18 files changed

+2450
-22
lines changed

.github/workflows/build.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v4
14+
15+
- name: Setup Node.js
16+
uses: actions/setup-node@v4
17+
with:
18+
node-version: '20.x'
19+
20+
- name: Install dependencies and build
21+
working-directory: ./web
22+
run: |
23+
npm install
24+
npm run build

.github/workflows/codeql.yml

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
# For most projects, this workflow file will not need changing; you simply need
2+
# to commit it to your repository.
3+
#
4+
# You may wish to alter this file to override the set of languages analyzed,
5+
# or to provide custom queries or build logic.
6+
#
7+
# ******** NOTE ********
8+
# We have attempted to detect the languages in your repository. Please check
9+
# the `language` matrix defined below to confirm you have the correct set of
10+
# supported CodeQL languages.
11+
#
12+
name: "CodeQL Advanced"
13+
14+
on:
15+
push:
16+
branches: [ "main" ]
17+
pull_request:
18+
branches: [ "main" ]
19+
schedule:
20+
- cron: '31 4 * * 2'
21+
22+
jobs:
23+
analyze:
24+
name: Analyze (${{ matrix.language }})
25+
# Runner size impacts CodeQL analysis time. To learn more, please see:
26+
# - https://gh.io/recommended-hardware-resources-for-running-codeql
27+
# - https://gh.io/supported-runners-and-hardware-resources
28+
# - https://gh.io/using-larger-runners (GitHub.com only)
29+
# Consider using larger runners or machines with greater resources for possible analysis time improvements.
30+
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
31+
permissions:
32+
# required for all workflows
33+
security-events: write
34+
35+
# required to fetch internal or private CodeQL packs
36+
packages: read
37+
38+
# only required for workflows in private repositories
39+
actions: read
40+
contents: read
41+
42+
strategy:
43+
fail-fast: false
44+
matrix:
45+
include:
46+
- language: actions
47+
build-mode: none
48+
- language: javascript-typescript
49+
build-mode: none
50+
# CodeQL supports the following values keywords for 'language': 'actions', 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift'
51+
# Use `c-cpp` to analyze code written in C, C++ or both
52+
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
53+
# Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
54+
# To learn more about changing the languages that are analyzed or customizing the build mode for your analysis,
55+
# see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning.
56+
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
57+
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
58+
steps:
59+
- name: Checkout repository
60+
uses: actions/checkout@v4
61+
62+
# Add any setup steps before running the `github/codeql-action/init` action.
63+
# This includes steps like installing compilers or runtimes (`actions/setup-node`
64+
# or others). This is typically only required for manual builds.
65+
# - name: Setup runtime (example)
66+
# uses: actions/setup-example@v1
67+
68+
# Initializes the CodeQL tools for scanning.
69+
- name: Initialize CodeQL
70+
uses: github/codeql-action/init@v3
71+
with:
72+
languages: ${{ matrix.language }}
73+
build-mode: ${{ matrix.build-mode }}
74+
# If you wish to specify custom queries, you can do so here or in a config file.
75+
# By default, queries listed here will override any specified in a config file.
76+
# Prefix the list here with "+" to use these queries and those in the config file.
77+
78+
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
79+
# queries: security-extended,security-and-quality
80+
81+
# If the analyze step fails for one of the languages you are analyzing with
82+
# "We were unable to automatically build your code", modify the matrix above
83+
# to set the build mode to "manual" for that language. Then modify this step
84+
# to build your code.
85+
# ℹ️ Command-line programs to run using the OS shell.
86+
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
87+
- if: matrix.build-mode == 'manual'
88+
shell: bash
89+
run: |
90+
echo 'If you are using a "manual" build mode for one or more of the' \
91+
'languages you are analyzing, replace this with the commands to build' \
92+
'your code, for example:'
93+
echo ' make bootstrap'
94+
echo ' make release'
95+
exit 1
96+
97+
- name: Perform CodeQL Analysis
98+
uses: github/codeql-action/analyze@v3
99+
with:
100+
category: "/language:${{matrix.language}}"

.github/workflows/validate.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: YAML validation
22

3+
permissions:
4+
contents: read
5+
36
on:
47
push:
58
paths:

web/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,7 @@ pnpm-debug.log*
1919

2020
# macOS-specific files
2121
.DS_Store
22+
23+
# tmLanguage file
24+
src/grammars/
25+
public/grammars/

web/ec.config.mjs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import fs from 'fs';
2+
3+
export default {
4+
themes: [
5+
JSON.parse(fs.readFileSync('./src/themes/mtasa_lua-theme_dark.json', 'utf-8')),
6+
JSON.parse(fs.readFileSync('./src/themes/mtasa_lua-theme_light.json', 'utf-8')),
7+
],
8+
shiki: {
9+
langs: [
10+
{
11+
id: 'lua',
12+
scopeName: 'source.lua.mta',
13+
...JSON.parse(fs.readFileSync('./src/grammars/lua-mta.tmLanguage.json', 'utf-8')),
14+
},
15+
],
16+
},
17+
};
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
import fs from 'fs';
2+
import path from 'path';
3+
import yaml from 'js-yaml';
4+
import { glob } from 'glob';
5+
import { fileURLToPath } from 'url';
6+
7+
const __filename = fileURLToPath(import.meta.url);
8+
const __dirname = path.dirname(__filename);
9+
10+
const functionsDir = path.resolve(__dirname, '../../functions');
11+
const basePath = path.resolve(__dirname, './lua-base.tmLanguage.json');
12+
const outputPath = path.resolve(__dirname, '../src/grammars/lua-mta.tmLanguage.json');
13+
const publicPath = path.resolve(__dirname, '../public/grammars/lua-mta.tmLanguage.json');
14+
15+
const mtaKeywords = ['string','bool','boolean','number','int','float','element','player','vehicle','ped','object','building'];
16+
17+
function extractFunctionsWithScope(yamlContent) {
18+
if (yamlContent.shared?.name) {
19+
return [{ name: yamlContent.shared.name, scope: 'support.function.mta-shared' }];
20+
} else if (yamlContent.client?.name) {
21+
return [{ name: yamlContent.client.name, scope: 'support.function.mta-client' }];
22+
} else if (yamlContent.server?.name) {
23+
return [{ name: yamlContent.server.name, scope: 'support.function.mta-server' }];
24+
}
25+
return [];
26+
}
27+
28+
async function generateTmLanguage() {
29+
const files = await glob('**/*.yaml', { cwd: functionsDir, absolute: true });
30+
31+
const functionsMap = Object.fromEntries(
32+
['shared', 'server', 'client'].map(scope => [`support.function.mta-${scope}`, new Set()])
33+
);
34+
35+
files.forEach(file => {
36+
const yamlContent = yaml.load(fs.readFileSync(file, 'utf-8'));
37+
console.log('Processing file:', file);
38+
39+
const items = Array.isArray(yamlContent) ? yamlContent : [yamlContent];
40+
items.flatMap(extractFunctionsWithScope).forEach(({ name, scope }) => functionsMap[scope].add(name));
41+
});
42+
43+
const patterns = Object.entries(functionsMap)
44+
.filter(([, namesSet]) => namesSet.size > 0)
45+
.map(([scope, namesSet]) => ({
46+
match: `\\b(${Array.from(namesSet).join('|')})\\b`,
47+
name: scope,
48+
}));
49+
50+
if (mtaKeywords.length > 0) {
51+
patterns.push({
52+
match: `\\b(${mtaKeywords.join('|')})\\b`,
53+
name: 'keyword.mta',
54+
});
55+
}
56+
57+
const baseGrammar = JSON.parse(fs.readFileSync(basePath, 'utf-8'));
58+
baseGrammar.patterns = [...patterns, ...(baseGrammar.patterns || [])];
59+
60+
// Ensure the directoroes exist
61+
fs.mkdirSync(path.dirname(outputPath), { recursive: true });
62+
fs.mkdirSync(path.dirname(publicPath), { recursive: true });
63+
64+
// Write the updated grammar to the output file
65+
fs.writeFileSync(outputPath, JSON.stringify(baseGrammar, null, 2));
66+
67+
// Create file also in public directory for clickable keywords
68+
fs.copyFileSync(outputPath, publicPath);
69+
70+
console.log(`Done!`);
71+
}
72+
73+
generateTmLanguage();
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@echo off
2+
node generate-lua-tmlanguage.js
3+
pause

0 commit comments

Comments
 (0)