From 48c8b1e9c50cac797a4a4732503994dc18b11475 Mon Sep 17 00:00:00 2001 From: Proxy-99 <77501848+Proxy-99@users.noreply.github.com> Date: Fri, 18 Oct 2024 23:20:42 +0300 Subject: [PATCH 1/2] add projects --- mtasa-blue/PROJECTS.md | 50 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 mtasa-blue/PROJECTS.md diff --git a/mtasa-blue/PROJECTS.md b/mtasa-blue/PROJECTS.md new file mode 100644 index 0000000..0beafa4 --- /dev/null +++ b/mtasa-blue/PROJECTS.md @@ -0,0 +1,50 @@ +# Directory Structure + +Our project is organised into a number of different directories which serve different purposes: + +- **Client** +- **Server** +- **Shared:** contains code shared between both the client and the server +- **utils:** utilities used to automate certain tasks +- **vendor:** unmodified third-party code and libraries (optionally linked to the appropriate third-party Git repository through Git submodules). + +## Projects explained + +### Client projects +- **Client Core:** Typically UI elements like main menu etc and isn't ever unloaded. + +- **Client Deathmatch:** Where MTA makes all it's functions and events do stuff. + +- **Client Launcher:** Is the MTA executable which loads loader, you need not touch. + +- **Client SDK:** no info. + +- **Client Webbrowser:** related to CEF. + +- **Game SA:** Low level stuff which is mainly function calls to the game so each element will have a game_sa class like Vehicle, Ped, Object etc. + +- **GUI:** It's just wrappers to [CEGUI](https://github.com/cegui/cegui), you need not touch. + +- **Loader:** You need not touch the loader either. + +- **Loader Proxy**: related to loader. + +- **Multiplayer SA:** Hooks, code modification and that sort of low level things that lets us work. + +### Server projects +- **Core:** Cazomino05: ***I genuinely don't really know why we have server core.*** + +- **Dbconmy:** Stuff to do with the db* functions, you need not touch. + +- **Deathmatch:** All the server logic and storage classes for elements as well as Lua stuff. + +- **Launcher:** Just an executable to load all the DLLs we need. + +- **SDK:** no info. + +### Shared projects +- **Shared** utility functions + +- **XML:** XML module is just tinyxml and some high level wrapper functions for stuff we need. + + From f040351c6ee76b6d36c6f3053c8a76e3bbf14236 Mon Sep 17 00:00:00 2001 From: Proxy-99 <77501848+Proxy-99@users.noreply.github.com> Date: Fri, 18 Oct 2024 23:22:19 +0300 Subject: [PATCH 2/2] no longer exist --- mtasa-blue/PROJECTS.md | 1 - 1 file changed, 1 deletion(-) diff --git a/mtasa-blue/PROJECTS.md b/mtasa-blue/PROJECTS.md index 0beafa4..a9779a6 100644 --- a/mtasa-blue/PROJECTS.md +++ b/mtasa-blue/PROJECTS.md @@ -5,7 +5,6 @@ Our project is organised into a number of different directories which serve diff - **Client** - **Server** - **Shared:** contains code shared between both the client and the server -- **utils:** utilities used to automate certain tasks - **vendor:** unmodified third-party code and libraries (optionally linked to the appropriate third-party Git repository through Git submodules). ## Projects explained