E2150 - MooS v2.2: Difference between revisions

m
Syntax highlighting
No edit summary
m (Syntax highlighting)
 
(One intermediate revision by the same user not shown)
Line 3:
To some the name "moos" will probably say something else, for everyone else here a short description: "moos is a small program that makes it possible to chat on EarthNet without starting the game."
 
'''moos.ini''': (''Example Config'')
<syntaxhighlight lang="ini">
languagefile=C:\\Program Files (x86)\\moos21\\english.ini
autologin=<Base64 username>
 
* [accounts]
'''moos.ini''': ''Example Config''
[accounts/<Base64 username>]
* languagefile=\moos22-win64\english.ini
* server=moos.insideearth.info
* autologin=HASHEDNAME
password=<Base64 encrypted username>
* [accounts]
* chatcolor=
* [accounts/HASHEDNAME]
* server=moos.insideearth.info
* password=
* chatcolor=
* [server/moos.insideearth.info]
* port=12100
* [layout]
* maximized=0
* x=231
* y=212
* width=720
* height=480
 
* [server/moos.insideearth.info]
* port=12100
 
* [layout]
'''Source''':
* maximized=0
The source code can be accessed [https://github.com/surrim/moos21 here]. The zlib and wxWidgets project files for Visual C .NET 2005 and Dev-Cpp are required for compilation.
* x=231
* y=212
* width=720
* height=480
</syntaxhighlight>
 
See [https://github.com/surrim/moos21/blob/1030d9bb56a5fce7614389ea7bf24d3da0f0e9ce/src/tools.cpp#L93 Base64] and [https://github.com/surrim/moos21/blob/1030d9bb56a5fce7614389ea7bf24d3da0f0e9ce/src/tools.cpp#L95 Base64 encrypted] in the source code, as it is a slightly different Base64 ("/" is "-"), shuffled for encryption.
To compile Moos you need CodeBlocks, a MinGW cross compiler, wxWidgets and some experience with C++
As long as the user name doesn't contain a "-" you can decode it on Linux:
 
<syntaxhighlight lang="bash">
$ echo "c3VycmltQG1vb3M\=" | base64 -d
surrim@moos
</syntaxhighlight>
 
'''Source''':
The source code can be accessed [https://github.com/surrim/moos21 here]. The zlib and wxWidgets project files for Visual C .NET 2005 and Dev-Cpp are required for compilation.
ToIn order to compile Moos you need CodeBlocks/CMake, a MinGW cross compiler, wxWidgets, zlib, maybe some other devel libraries, and some experience with C++.
 
'''Download''':
Line 32 ⟶ 41:
* [https://surrim.org/bytes/moon-project/moos22-win32.7z MooS v2.2 - Win32]
* [https://surrim.org/bytes/moon-project/moos22-win64.7z MooS v2.2 - Win64]
* [https://github.com/surrim/moos21/releases/latest Latest binaries and source code on GitHub]
 
Credits: [https://surrim.org/moon-project/moos.html Surrim]
5

edits