Compare commits
7 Commits
ea0fdd6bce
...
78b702ecf5
Author | SHA1 | Date | |
---|---|---|---|
78b702ecf5 | |||
0967e1f364 | |||
93fe67ad9f | |||
2db7449ded | |||
81e67359f0 | |||
|
5744acae16 | ||
766bcbac55 |
@ -17,7 +17,7 @@ set(GCC_MINIMUM_VERSION "5.1")
|
|||||||
set(CLANG_MINIMUM_VERSION "3.5")
|
set(CLANG_MINIMUM_VERSION "3.5")
|
||||||
|
|
||||||
# Also remember to set PROTOCOL_VERSION in network/networkprotocol.h when releasing
|
# Also remember to set PROTOCOL_VERSION in network/networkprotocol.h when releasing
|
||||||
set(VERSION_MAJOR 6)
|
set(VERSION_MAJOR 8)
|
||||||
set(VERSION_MINOR 0)
|
set(VERSION_MINOR 0)
|
||||||
set(VERSION_PATCH 0)
|
set(VERSION_PATCH 0)
|
||||||
set(VERSION_EXTRA "pre-release 1" CACHE STRING "Stuff to append to version string")
|
set(VERSION_EXTRA "pre-release 1" CACHE STRING "Stuff to append to version string")
|
||||||
@ -260,16 +260,16 @@ install(FILES "minetest.conf.example" DESTINATION "${EXAMPLE_CONF_DIR}")
|
|||||||
|
|
||||||
if(UNIX AND NOT APPLE)
|
if(UNIX AND NOT APPLE)
|
||||||
install(FILES "doc/minetest.6" "doc/minetestserver.6" DESTINATION "${MANDIR}/man6")
|
install(FILES "doc/minetest.6" "doc/minetestserver.6" DESTINATION "${MANDIR}/man6")
|
||||||
install(FILES "misc/net.minetest.minetest.desktop" DESTINATION "${XDG_APPS_DIR}")
|
install(FILES "misc/info.sovnat.xtreemtest.desktop" DESTINATION "${XDG_APPS_DIR}")
|
||||||
install(FILES "misc/net.minetest.minetest.appdata.xml" DESTINATION "${APPDATADIR}")
|
install(FILES "misc/info.sovnat.xtreemtest.appdata.xml" DESTINATION "${APPDATADIR}")
|
||||||
install(FILES "misc/minetest.svg" DESTINATION "${ICONDIR}/hicolor/scalable/apps")
|
install(FILES "misc/xtreemtest.svg" DESTINATION "${ICONDIR}/hicolor/scalable/apps")
|
||||||
install(FILES "misc/minetest-xorg-icon-128.png"
|
install(FILES "misc/xtreemtest-xorg-icon-128.png"
|
||||||
DESTINATION "${ICONDIR}/hicolor/128x128/apps"
|
DESTINATION "${ICONDIR}/hicolor/128x128/apps"
|
||||||
RENAME "minetest.png")
|
RENAME "xtreemtest.png")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(APPLE)
|
if(APPLE)
|
||||||
install(FILES "misc/minetest-icon.icns" DESTINATION "${SHAREDIR}")
|
install(FILES "misc/xtreemtest-icon.icns" DESTINATION "${SHAREDIR}")
|
||||||
install(FILES "misc/Info.plist" DESTINATION "${BUNDLE_PATH}/Contents")
|
install(FILES "misc/Info.plist" DESTINATION "${BUNDLE_PATH}/Contents")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
165
README.MD
@ -2,45 +2,43 @@
|
|||||||
========
|
========
|
||||||
|
|
||||||
|
|
||||||
### "It's just not a game anymore!"
|
### "It's like MineTest, but more XTREEM!"
|
||||||
|
|
||||||
Fork of Minetest, a free-as-in-freedom voxel game engine with easy modding and game creation.
|
Fork of Minetest, a free-as-in-freedom voxel game engine with easy modding and game creation.
|
||||||
|
|
||||||
Copyright (C) 2010-2022 Perttu Ahola <celeron55@gmail.com>
|
Copyright (C) 2010-2022 Perttu Ahola <celeron55@gmail.com>
|
||||||
|
|
||||||
Copyright (C) 2021-2022 Migdyn <xtreemsex@testing.cubesoftware.xyz>
|
Copyright (C) 2021-2022 Migdyn <xtreemsex@testing.cubesoftware.xyz>
|
||||||
|
|
||||||
and contributors (see source file comments and the version control log of the original Minetest repository, which can be found [here](https://github.com/minetest/minetest).
|
and contributors (see source file comments and the version control log of the original Minetest repository, which can be found [here](https://github.com/minetest/minetest).
|
||||||
|
|
||||||
|
|
||||||
## IMPORTANT NOTE: This readme file and other documentation might be outdated or irrelevant, as it was taken directly from the original Minetest code.
|
## IMPORTANT NOTE: This readme file and other documentation might be outdated or irrelevant, as it was taken directly from the original Minetest code.
|
||||||
|
|
||||||
|
|
||||||
In case you downloaded the source code
|
|
||||||
--------------------------------------
|
|
||||||
If you downloaded the Minetest Engine source code in which this file is
|
|
||||||
contained, you probably want to download the [Minetest Game](https://github.com/minetest/minetest_game/)
|
|
||||||
project too. See its README.txt for more information.
|
|
||||||
|
|
||||||
Table of Contents
|
Table of Contents
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
1. [Further Documentation](#further-documentation)
|
1. [Our goal](#our-goal)
|
||||||
2. [Default Controls](#default-controls)
|
2. [Further Documentation](#further-documentation)
|
||||||
3. [Paths](#paths)
|
3. [Default Controls](#default-controls)
|
||||||
4. [Configuration File](#configuration-file)
|
4. [Paths](#paths)
|
||||||
5. [Command-line Options](#command-line-options)
|
5. [Configuration File](#configuration-file)
|
||||||
6. [Compiling](#compiling)
|
6. [Command-line Options](#command-line-options)
|
||||||
7. [Docker](#docker)
|
7. [Compiling](#compiling)
|
||||||
8. [Version Scheme](#version-scheme)
|
8. [Version Scheme](#version-scheme)
|
||||||
|
|
||||||
|
|
||||||
|
Our goal
|
||||||
|
---------
|
||||||
|
Our goal is to create a positive and censorship-free community around MineTest,
|
||||||
|
improve upon the MineTest engine by adding new features to it, as well as provide
|
||||||
|
a base for future Google Play games.
|
||||||
|
|
||||||
Further documentation
|
Further documentation
|
||||||
----------------------
|
----------------------
|
||||||
- Website: https://minetest.net/
|
- Website: https://mcl.sovnat.info
|
||||||
- Wiki: https://wiki.minetest.net/
|
- Wiki: https://wiki.minetest.net/
|
||||||
- Developer wiki: https://dev.minetest.net/
|
- Developer wiki: https://dev.minetest.net/
|
||||||
- Forum: https://forum.minetest.net/
|
- phpBB forums: https://bb.cubesoftware.xyz
|
||||||
- GitHub: https://github.com/minetest/minetest/
|
- GitHub: https://github.com/minetest/minetest/
|
||||||
- [doc/](doc/) directory of source distribution
|
- [doc/](doc/) directory of source distribution
|
||||||
|
|
||||||
@ -102,17 +100,17 @@ Where each location is on each platform:
|
|||||||
* `share` = `.`
|
* `share` = `.`
|
||||||
* `user` = `.`
|
* `user` = `.`
|
||||||
* Windows installed:
|
* Windows installed:
|
||||||
* `bin` = `C:\Program Files\Minetest\bin (Depends on the install location)`
|
* `bin` = `C:\Program Files\XtreemTest\bin (Depends on the install location)`
|
||||||
* `share` = `C:\Program Files\Minetest (Depends on the install location)`
|
* `share` = `C:\Program Files\XtreemTest (Depends on the install location)`
|
||||||
* `user` = `%APPDATA%\Minetest`
|
* `user` = `%APPDATA%\XtreemTest`
|
||||||
* Linux installed:
|
* Linux installed:
|
||||||
* `bin` = `/usr/bin`
|
* `bin` = `/usr/bin`
|
||||||
* `share` = `/usr/share/minetest`
|
* `share` = `/usr/share/xtreemtest`
|
||||||
* `user` = `~/.minetest`
|
* `user` = `~/.xtreemtest`
|
||||||
* macOS:
|
* macOS:
|
||||||
* `bin` = `Contents/MacOS`
|
* `bin` = `Contents/MacOS`
|
||||||
* `share` = `Contents/Resources`
|
* `share` = `Contents/Resources`
|
||||||
* `user` = `Contents/User OR ~/Library/Application Support/minetest`
|
* `user` = `Contents/User OR ~/Library/Application Support/xtreemtest`
|
||||||
|
|
||||||
Worlds can be found as separate folders in: `user/worlds/`
|
Worlds can be found as separate folders in: `user/worlds/`
|
||||||
|
|
||||||
@ -120,7 +118,7 @@ Configuration file
|
|||||||
------------------
|
------------------
|
||||||
- Default location:
|
- Default location:
|
||||||
`user/minetest.conf`
|
`user/minetest.conf`
|
||||||
- This file is created by closing Minetest for the first time.
|
- This file is created by closing XtreemTest for the first time.
|
||||||
- A specific file can be specified on the command line:
|
- A specific file can be specified on the command line:
|
||||||
`--config <path-to-file>`
|
`--config <path-to-file>`
|
||||||
- A run-in-place build will look for the configuration file in
|
- A run-in-place build will look for the configuration file in
|
||||||
@ -164,7 +162,7 @@ For Alpine users:
|
|||||||
|
|
||||||
sudo apk add build-base cmake libpng-dev jpeg-dev libxi-dev mesa-dev sqlite-dev libogg-dev libvorbis-dev openal-soft-dev curl-dev freetype-dev zlib-dev gmp-dev jsoncpp-dev luajit-dev zstd-dev
|
sudo apk add build-base cmake libpng-dev jpeg-dev libxi-dev mesa-dev sqlite-dev libogg-dev libvorbis-dev openal-soft-dev curl-dev freetype-dev zlib-dev gmp-dev jsoncpp-dev luajit-dev zstd-dev
|
||||||
|
|
||||||
#### Download
|
#### Download w/ Git
|
||||||
|
|
||||||
You can install Git for easily keeping your copy up to date.
|
You can install Git for easily keeping your copy up to date.
|
||||||
If you don’t want Git, read below on how to get the source without Git.
|
If you don’t want Git, read below on how to get the source without Git.
|
||||||
@ -178,30 +176,20 @@ For Fedora users:
|
|||||||
|
|
||||||
Download source (this is the URL to the latest of source repository, which might not work at all times) using Git:
|
Download source (this is the URL to the latest of source repository, which might not work at all times) using Git:
|
||||||
|
|
||||||
git clone --depth 1 https://github.com/minetest/minetest.git
|
git clone --depth 1 https://github.com/MCLx86/xtreemtest.git
|
||||||
cd minetest
|
cd xtreemtest
|
||||||
|
|
||||||
Download minetest_game (otherwise only the "Development Test" game is available) using Git:
|
|
||||||
|
|
||||||
git clone --depth 1 https://github.com/minetest/minetest_game.git games/minetest_game
|
|
||||||
|
|
||||||
Download IrrlichtMt to `lib/irrlichtmt`, it will be used to satisfy the IrrlichtMt dependency that way:
|
Download IrrlichtMt to `lib/irrlichtmt`, it will be used to satisfy the IrrlichtMt dependency that way:
|
||||||
|
|
||||||
git clone --depth 1 https://github.com/minetest/irrlicht.git lib/irrlichtmt
|
git clone --depth 1 https://github.com/minetest/irrlicht.git lib/irrlichtmt
|
||||||
|
|
||||||
|
#### Download w/out Git
|
||||||
Download source, without using Git:
|
Download source, without using Git:
|
||||||
|
|
||||||
wget https://github.com/minetest/minetest/archive/master.tar.gz
|
wget https://github.com/MCLx86/xtreemtest/archive/master.tar.gz
|
||||||
tar xf master.tar.gz
|
tar xf master.tar.gz
|
||||||
cd minetest-master
|
mv xtreemtest-master xtreemtest
|
||||||
|
cd xtreemtest
|
||||||
Download minetest_game, without using Git:
|
|
||||||
|
|
||||||
cd games/
|
|
||||||
wget https://github.com/minetest/minetest_game/archive/master.tar.gz
|
|
||||||
tar xf master.tar.gz
|
|
||||||
mv minetest_game-master minetest_game
|
|
||||||
cd ..
|
|
||||||
|
|
||||||
Download IrrlichtMt, without using Git:
|
Download IrrlichtMt, without using Git:
|
||||||
|
|
||||||
@ -232,7 +220,7 @@ Run it:
|
|||||||
- If you build a bare server you don't need to compile IrrlichtMt, just the headers suffice.
|
- If you build a bare server you don't need to compile IrrlichtMt, just the headers suffice.
|
||||||
- In that case use `-DIRRLICHT_INCLUDE_DIR=/some/where/irrlichtmt/include`.
|
- In that case use `-DIRRLICHT_INCLUDE_DIR=/some/where/irrlichtmt/include`.
|
||||||
|
|
||||||
- Minetest will use the IrrlichtMt package that is found first, given by the following order:
|
- XtreemTest will use the IrrlichtMt package that is found first, given by the following order:
|
||||||
1. Specified `IRRLICHTMT_BUILD_DIR` CMake variable
|
1. Specified `IRRLICHTMT_BUILD_DIR` CMake variable
|
||||||
2. `${PROJECT_SOURCE_DIR}/lib/irrlichtmt` (if existent)
|
2. `${PROJECT_SOURCE_DIR}/lib/irrlichtmt` (if existent)
|
||||||
3. Installation of IrrlichtMt in the system-specific library paths
|
3. Installation of IrrlichtMt in the system-specific library paths
|
||||||
@ -243,8 +231,8 @@ Run it:
|
|||||||
|
|
||||||
General options and their default values:
|
General options and their default values:
|
||||||
|
|
||||||
BUILD_CLIENT=TRUE - Build Minetest client
|
BUILD_CLIENT=TRUE - Build the XtreemTest client
|
||||||
BUILD_SERVER=FALSE - Build Minetest server
|
BUILD_SERVER=FALSE - Build the XtreemTest server
|
||||||
BUILD_UNITTESTS=TRUE - Build unittest sources
|
BUILD_UNITTESTS=TRUE - Build unittest sources
|
||||||
BUILD_BENCHMARKS=FALSE - Build benchmark sources
|
BUILD_BENCHMARKS=FALSE - Build benchmark sources
|
||||||
CMAKE_BUILD_TYPE=Release - Type of build (Release vs. Debug)
|
CMAKE_BUILD_TYPE=Release - Type of build (Release vs. Debug)
|
||||||
@ -320,25 +308,17 @@ Library specific options:
|
|||||||
ZSTD_INCLUDE_DIR - Directory that contains zstd.h
|
ZSTD_INCLUDE_DIR - Directory that contains zstd.h
|
||||||
ZSTD_LIBRARY - Path to libzstd.a/libzstd.so/ztd.lib
|
ZSTD_LIBRARY - Path to libzstd.a/libzstd.so/ztd.lib
|
||||||
|
|
||||||
### Compiling on Windows using MSVC
|
### Building on Windows with MSYS2
|
||||||
|
|
||||||
### Requirements
|
### Requirements
|
||||||
|
|
||||||
- [Visual Studio 2015 or newer](https://visualstudio.microsoft.com)
|
- [MSYS2](https://visualstudio.microsoft.com)
|
||||||
- [CMake](https://cmake.org/download/)
|
- [CMake](https://cmake.org/download/)
|
||||||
- [vcpkg](https://github.com/Microsoft/vcpkg)
|
|
||||||
- [Git](https://git-scm.com/downloads)
|
|
||||||
|
|
||||||
### Compiling and installing the dependencies
|
### Installing the dependencies
|
||||||
|
Enter the MSYS2 MinGW-W64 CLI and use *pacman* to install the required libraries, as well as mingw32-make and gcc.
|
||||||
|
|
||||||
It is highly recommended to use vcpkg as package manager.
|
- **Don't forget about IrrlichtMt.** The easiest way is to clone it to `lib/irrlichtmt`.
|
||||||
|
|
||||||
After you successfully built vcpkg you can easily install the required libraries:
|
|
||||||
```powershell
|
|
||||||
vcpkg install zlib zstd curl[winssl] openal-soft libvorbis libogg libjpeg-turbo sqlite3 freetype luajit gmp jsoncpp opengl-registry --triplet x64-windows
|
|
||||||
```
|
|
||||||
|
|
||||||
- **Don't forget about IrrlichtMt.** The easiest way is to clone it to `lib/irrlichtmt` as described in the Linux section.
|
|
||||||
- `curl` is optional, but required to read the serverlist, `curl[winssl]` is required to use the content store.
|
- `curl` is optional, but required to read the serverlist, `curl[winssl]` is required to use the content store.
|
||||||
- `openal-soft`, `libvorbis` and `libogg` are optional, but required to use sound.
|
- `openal-soft`, `libvorbis` and `libogg` are optional, but required to use sound.
|
||||||
- `luajit` is optional, it replaces the integrated Lua interpreter with a faster just-in-time interpreter.
|
- `luajit` is optional, it replaces the integrated Lua interpreter with a faster just-in-time interpreter.
|
||||||
@ -346,35 +326,10 @@ vcpkg install zlib zstd curl[winssl] openal-soft libvorbis libogg libjpeg-turbo
|
|||||||
|
|
||||||
There are other optional libraries, but they are not tested if they can build and link correctly.
|
There are other optional libraries, but they are not tested if they can build and link correctly.
|
||||||
|
|
||||||
Use `--triplet` to specify the target triplet, e.g. `x64-windows` or `x86-windows`.
|
### Build XtreemTest
|
||||||
|
Start up the CMake GUI and select the root XtreemTest directory and press *Configure*, select MinGW Makefiles,
|
||||||
### Compile Minetest
|
once it's done configuring click *Generate* and once that's finished go into the root directory and run mingw32-make -j[NUMBER_OF_PROCESSORS]
|
||||||
|
(replace [NUMBER_OF_PROCESSORS] with the number of processor cores you have)
|
||||||
#### a) Using the vcpkg toolchain and CMake GUI
|
|
||||||
1. Start up the CMake GUI
|
|
||||||
2. Select **Browse Source...** and select DIR/minetest
|
|
||||||
3. Select **Browse Build...** and select DIR/minetest-build
|
|
||||||
4. Select **Configure**
|
|
||||||
5. Choose the right visual Studio version and target platform. It has to match the version of the installed dependencies
|
|
||||||
6. Choose **Specify toolchain file for cross-compiling**
|
|
||||||
7. Click **Next**
|
|
||||||
8. Select the vcpkg toolchain file e.g. `D:/vcpkg/scripts/buildsystems/vcpkg.cmake`
|
|
||||||
9. Click Finish
|
|
||||||
10. Wait until cmake have generated the cash file
|
|
||||||
11. If there are any errors, solve them and hit **Configure**
|
|
||||||
12. Click **Generate**
|
|
||||||
13. Click **Open Project**
|
|
||||||
14. Compile Minetest inside Visual studio.
|
|
||||||
|
|
||||||
#### b) Using the vcpkg toolchain and the commandline
|
|
||||||
|
|
||||||
Run the following script in PowerShell:
|
|
||||||
|
|
||||||
```powershell
|
|
||||||
cmake . -G"Visual Studio 15 2017 Win64" -DCMAKE_TOOLCHAIN_FILE=D:/vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_GETTEXT=OFF -DENABLE_CURSES=OFF
|
|
||||||
cmake --build . --config Release
|
|
||||||
```
|
|
||||||
Make sure that the right compiler is selected and the path to the vcpkg toolchain is correct.
|
|
||||||
|
|
||||||
### Windows Installer using WiX Toolset
|
### Windows Installer using WiX Toolset
|
||||||
|
|
||||||
@ -406,14 +361,8 @@ brew install cmake freetype gettext gmp hiredis jpeg jsoncpp leveldb libogg libp
|
|||||||
Download source (this is the URL to the latest of source repository, which might not work at all times) using Git:
|
Download source (this is the URL to the latest of source repository, which might not work at all times) using Git:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone --depth 1 https://github.com/minetest/minetest.git
|
git clone --depth 1 https://github.com/MCLx86/xtreemtest.git
|
||||||
cd minetest
|
cd xtreemtest
|
||||||
```
|
|
||||||
|
|
||||||
Download minetest_game (otherwise only the "Development Test" game is available) using Git:
|
|
||||||
|
|
||||||
```
|
|
||||||
git clone --depth 1 https://github.com/minetest/minetest_game.git games/minetest_game
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Download Minetest's fork of Irrlicht:
|
Download Minetest's fork of Irrlicht:
|
||||||
@ -444,32 +393,6 @@ make install
|
|||||||
open ./build/macos/minetest.app
|
open ./build/macos/minetest.app
|
||||||
```
|
```
|
||||||
|
|
||||||
Docker
|
|
||||||
------
|
|
||||||
We provide Minetest server Docker images using the GitLab mirror registry.
|
|
||||||
|
|
||||||
Images are built on each commit and available using the following tag scheme:
|
|
||||||
|
|
||||||
* `registry.gitlab.com/minetest/minetest/server:latest` (latest build)
|
|
||||||
* `registry.gitlab.com/minetest/minetest/server:<branch/tag>` (current branch or current tag)
|
|
||||||
* `registry.gitlab.com/minetest/minetest/server:<commit-id>` (current commit id)
|
|
||||||
|
|
||||||
If you want to test it on a Docker server you can easily run:
|
|
||||||
|
|
||||||
sudo docker run registry.gitlab.com/minetest/minetest/server:<docker tag>
|
|
||||||
|
|
||||||
If you want to use it in a production environment you should use volumes bound to the Docker host
|
|
||||||
to persist data and modify the configuration:
|
|
||||||
|
|
||||||
sudo docker create -v /home/minetest/data/:/var/lib/minetest/ -v /home/minetest/conf/:/etc/minetest/ registry.gitlab.com/minetest/minetest/server:master
|
|
||||||
|
|
||||||
Data will be written to `/home/minetest/data` on the host, and configuration will be read from `/home/minetest/conf/minetest.conf`.
|
|
||||||
|
|
||||||
**Note:** If you don't understand the previous commands please read the official Docker documentation before use.
|
|
||||||
|
|
||||||
You can also host your Minetest server inside a Kubernetes cluster. See our example implementation in [`misc/kubernetes.yml`](misc/kubernetes.yml).
|
|
||||||
|
|
||||||
|
|
||||||
Version scheme
|
Version scheme
|
||||||
--------------
|
--------------
|
||||||
We use `major.minor.patch` since 5.0.0-dev. Prior to that we used `0.major.minor`.
|
We use `major.minor.patch` since 5.0.0-dev. Prior to that we used `0.major.minor`.
|
||||||
|
@ -39,7 +39,7 @@ local screenshot_downloaded = {}
|
|||||||
local search_string = ""
|
local search_string = ""
|
||||||
local cur_page = 1
|
local cur_page = 1
|
||||||
local num_per_page = 5
|
local num_per_page = 5
|
||||||
local filter_type = 1
|
local filter_type = -1
|
||||||
local filter_types_titles = {
|
local filter_types_titles = {
|
||||||
fgettext("All packages"),
|
fgettext("All packages"),
|
||||||
fgettext("Games"),
|
fgettext("Games"),
|
||||||
@ -434,6 +434,8 @@ function install_dialog.get_formspec()
|
|||||||
end
|
end
|
||||||
|
|
||||||
function install_dialog.handle_submit(this, fields)
|
function install_dialog.handle_submit(this, fields)
|
||||||
|
store.filter_packages(search_string)
|
||||||
|
|
||||||
if fields.cancel then
|
if fields.cancel then
|
||||||
this:delete()
|
this:delete()
|
||||||
return true
|
return true
|
||||||
@ -713,12 +715,13 @@ function store.filter_packages(query)
|
|||||||
for k = 1, #keywords do
|
for k = 1, #keywords do
|
||||||
local keyword = keywords[k]
|
local keyword = keywords[k]
|
||||||
|
|
||||||
if string.find(package.name:lower(), keyword, 1, true) or
|
if string.find(package.author:lower(), keyword, 1, true) then
|
||||||
string.find(package.title:lower(), keyword, 1, true) or
|
|
||||||
string.find(package.author:lower(), keyword, 1, true) or
|
|
||||||
string.find(package.short_description:lower(), keyword, 1, true) then
|
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
|
--if string.find(package.name:lower(), keyword, 1, true) or string.find(package.title:lower(), keyword, 1, true) or string.find(package.author:lower(), keyword, 1, true) or string.find(package.short_description:lower(), keyword, 1, true) then
|
||||||
|
-- return true
|
||||||
|
--end
|
||||||
end
|
end
|
||||||
|
|
||||||
return false
|
return false
|
||||||
@ -736,6 +739,8 @@ end
|
|||||||
function store.get_formspec(dlgdata)
|
function store.get_formspec(dlgdata)
|
||||||
store.update_paths()
|
store.update_paths()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
dlgdata.pagemax = math.max(math.ceil(#store.packages / num_per_page), 1)
|
dlgdata.pagemax = math.max(math.ceil(#store.packages / num_per_page), 1)
|
||||||
if cur_page > dlgdata.pagemax then
|
if cur_page > dlgdata.pagemax then
|
||||||
cur_page = 1
|
cur_page = 1
|
||||||
@ -899,10 +904,15 @@ function store.get_formspec(dlgdata)
|
|||||||
formspec[#formspec + 1] = "container_end[]"
|
formspec[#formspec + 1] = "container_end[]"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return table.concat(formspec, "")
|
return table.concat(formspec, "")
|
||||||
end
|
end
|
||||||
|
|
||||||
function store.handle_submit(this, fields)
|
function store.handle_submit(this, fields)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if fields.search or fields.key_enter_field == "search_string" then
|
if fields.search or fields.key_enter_field == "search_string" then
|
||||||
search_string = fields.search_string:trim()
|
search_string = fields.search_string:trim()
|
||||||
cur_page = 1
|
cur_page = 1
|
||||||
@ -913,7 +923,7 @@ function store.handle_submit(this, fields)
|
|||||||
if fields.clear then
|
if fields.clear then
|
||||||
search_string = ""
|
search_string = ""
|
||||||
cur_page = 1
|
cur_page = 1
|
||||||
store.filter_packages("")
|
store.filter_packages(search_string)
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -15,13 +15,13 @@
|
|||||||
--with this program; if not, write to the Free Software Foundation, Inc.,
|
--with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
--51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
--51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
|
||||||
mt_color_grey = "#AAAAAA"
|
mt_color_grey = "#AAAAFF"
|
||||||
mt_color_blue = "#6389FF"
|
mt_color_blue = "#6389FF"
|
||||||
mt_color_lightblue = "#99CCFF"
|
mt_color_lightblue = "#99CCFF"
|
||||||
mt_color_green = "#72FF63"
|
mt_color_green = "#7264F3"
|
||||||
mt_color_dark_green = "#25C191"
|
mt_color_dark_green = "#25C1F1"
|
||||||
mt_color_orange = "#FF8800"
|
mt_color_orange = "#FF6600"
|
||||||
mt_color_red = "#FF3300"
|
mt_color_red = "#FF0000"
|
||||||
|
|
||||||
local menupath = core.get_mainmenu_path()
|
local menupath = core.get_mainmenu_path()
|
||||||
local basepath = core.get_builtin_path()
|
local basepath = core.get_builtin_path()
|
||||||
@ -95,7 +95,7 @@ local function init_globals()
|
|||||||
mm_game_theme.init()
|
mm_game_theme.init()
|
||||||
|
|
||||||
-- Create main tabview
|
-- Create main tabview
|
||||||
local tv_main = tabview_create("maintab", {x = 12, y = 5.4}, {x = 0, y = 0})
|
--[[local tv_main = tabview_create("maintab", {x = 12, y = 5.4}, {x = 0, y = 0})
|
||||||
-- note: size would be 15.5,7.1 in real coordinates mode
|
-- note: size would be 15.5,7.1 in real coordinates mode
|
||||||
|
|
||||||
tv_main:set_autosave_tab(true)
|
tv_main:set_autosave_tab(true)
|
||||||
@ -123,11 +123,11 @@ local function init_globals()
|
|||||||
if game == nil then
|
if game == nil then
|
||||||
mm_game_theme.reset()
|
mm_game_theme.reset()
|
||||||
end
|
end
|
||||||
end
|
end]]
|
||||||
|
|
||||||
ui.set_default("maintab")
|
--ui.set_default("maintab")
|
||||||
check_new_version()
|
check_new_version()
|
||||||
tv_main:show()
|
--tv_main:show()
|
||||||
ui.update()
|
ui.update()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -20,7 +20,6 @@
|
|||||||
local xtreemtest_developers = {
|
local xtreemtest_developers = {
|
||||||
"Migdyn (a.k.a. Mike) <xtreemsex@testing.cubesoftware.xyz> [XtreemTest founder]",
|
"Migdyn (a.k.a. Mike) <xtreemsex@testing.cubesoftware.xyz> [XtreemTest founder]",
|
||||||
"Looki2000",
|
"Looki2000",
|
||||||
"Kacper Kostka <kacperks@cubesoftware.xyz>",
|
|
||||||
}
|
}
|
||||||
|
|
||||||
local core_developers = {
|
local core_developers = {
|
||||||
@ -165,7 +164,7 @@ return {
|
|||||||
"style[label_button;border=false]" ..
|
"style[label_button;border=false]" ..
|
||||||
"button[0.1,3.4;5.3,0.5;label_button;" ..
|
"button[0.1,3.4;5.3,0.5;label_button;" ..
|
||||||
core.formspec_escape(version.project .. " " .. version.string) .. "]" ..
|
core.formspec_escape(version.project .. " " .. version.string) .. "]" ..
|
||||||
"button[1.5,4.1;2.5,0.8;homepage;mcl.sovnat.info]" ..
|
"button[0.5,4.1;4.5,0.8;homepage;mcl.sovnat.info]" ..
|
||||||
"scroll_container[5.5,0.1;9.5,6.9;scroll_credits;vertical;" ..
|
"scroll_container[5.5,0.1;9.5,6.9;scroll_credits;vertical;" ..
|
||||||
tostring(scroll_height / 1000) .. "]" .. credit_fs ..
|
tostring(scroll_height / 1000) .. "]" .. credit_fs ..
|
||||||
"scroll_container_end[]"..
|
"scroll_container_end[]"..
|
||||||
|
@ -5,15 +5,15 @@
|
|||||||
<key>CFBundleDevelopmentRegion</key>
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
<string>English</string>
|
<string>English</string>
|
||||||
<key>CFBundleExecutable</key>
|
<key>CFBundleExecutable</key>
|
||||||
<string>minetest</string>
|
<string>xtreemtest</string>
|
||||||
<key>CFBundleIconFile</key>
|
<key>CFBundleIconFile</key>
|
||||||
<string>minetest-icon.icns</string>
|
<string>xtreemtest-icon.icns</string>
|
||||||
<key>CFBundleName</key>
|
<key>CFBundleName</key>
|
||||||
<string>Minetest</string>
|
<string>XtreemTest</string>
|
||||||
<key>CFBundleDisplayName</key>
|
<key>CFBundleDisplayName</key>
|
||||||
<string>Minetest</string>
|
<string>XtreemTest</string>
|
||||||
<key>CFBundleIdentifier</key>
|
<key>CFBundleIdentifier</key>
|
||||||
<string>net.minetest.minetest</string>
|
<string>info.sovnat.xtreemtest</string>
|
||||||
<key>NSHighResolutionCapable</key>
|
<key>NSHighResolutionCapable</key>
|
||||||
<false/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
|
12
misc/info.sovnat.xtreemtest.desktop
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Name=XtreemTest
|
||||||
|
GenericName=XtreemTest
|
||||||
|
Comment=Multiplayer infinite-world block sandbox
|
||||||
|
Exec=xtreemtest
|
||||||
|
Icon=xtreemtest
|
||||||
|
Terminal=false
|
||||||
|
PrefersNonDefaultGPU=true
|
||||||
|
Type=Application
|
||||||
|
Categories=Game;Simulation;
|
||||||
|
StartupNotify=false
|
||||||
|
Keywords=sandbox;world;mining;crafting;blocks;nodes;multiplayer;roleplaying;
|
@ -1,18 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Name=Minetest
|
|
||||||
GenericName=Minetest
|
|
||||||
Comment=Multiplayer infinite-world block sandbox
|
|
||||||
Comment[de]=Mehrspieler-Sandkastenspiel mit unendlichen Blockwelten
|
|
||||||
Comment[es]=Juego sandbox multijugador con mundos infinitos
|
|
||||||
Comment[fr]=Jeu multijoueurs de type bac à sable avec des mondes infinis
|
|
||||||
Comment[ja]=マルチプレイに対応した、無限の世界のブロック型サンドボックスゲームです
|
|
||||||
Comment[ru]=Игра-песочница с безграничным миром, состоящим из блоков
|
|
||||||
Comment[tr]=Tek-Çok oyuncuyla küplerden sonsuz dünyalar inşa et
|
|
||||||
Exec=minetest
|
|
||||||
Icon=minetest
|
|
||||||
Terminal=false
|
|
||||||
PrefersNonDefaultGPU=true
|
|
||||||
Type=Application
|
|
||||||
Categories=Game;Simulation;
|
|
||||||
StartupNotify=false
|
|
||||||
Keywords=sandbox;world;mining;crafting;blocks;nodes;multiplayer;roleplaying;
|
|
@ -16,11 +16,11 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __MINGW32__
|
#ifdef __MINGW32__
|
||||||
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "minetest.exe.manifest"
|
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "xtreemtest.exe.manifest"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
LANGUAGE 0, SUBLANG_NEUTRAL
|
LANGUAGE 0, SUBLANG_NEUTRAL
|
||||||
130 ICON "minetest-icon.ico"
|
130 ICON "xtreemtest-icon.ico"
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
@ -49,9 +49,8 @@ BEGIN
|
|||||||
VALUE "FileDescription", PROJECT_NAME_C " engine"
|
VALUE "FileDescription", PROJECT_NAME_C " engine"
|
||||||
VALUE "FileVersion", VERSION_STRING
|
VALUE "FileVersion", VERSION_STRING
|
||||||
VALUE "InternalName", PROJECT_NAME
|
VALUE "InternalName", PROJECT_NAME
|
||||||
VALUE "LegalCopyright", "(c) 2011-2015 celeron55"
|
VALUE "LegalCopyright", "(c) 2011-2022 celeron55"
|
||||||
VALUE "LegalTrademarks", """Minetest"" is the property of the Minetest community, don't use it without permission!"
|
VALUE "OriginalFilename", "xtreemtest.exe"
|
||||||
VALUE "OriginalFilename", "minetest.exe"
|
|
||||||
VALUE "PrivateBuild", VERSION_EXTRA
|
VALUE "PrivateBuild", VERSION_EXTRA
|
||||||
VALUE "ProductName", PROJECT_NAME_C
|
VALUE "ProductName", PROJECT_NAME_C
|
||||||
VALUE "ProductVersion", PRODUCT_VERSION_STRING
|
VALUE "ProductVersion", PRODUCT_VERSION_STRING
|
||||||
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 828 B After Width: | Height: | Size: 828 B |
BIN
misc/xtreemtest-icon.ico
Normal file
After Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 7.0 KiB After Width: | Height: | Size: 7.0 KiB |