42 Commits

Author SHA1 Message Date
cora
ca106b1546 autofly: more tweaks 2021-08-28 23:13:45 -05:00
cora
7b0d792a63 autofly: add all nodes as ground nodes for cruise 2021-08-28 23:13:45 -05:00
cora
dc4bd0218c autofly: cruise small fix 2021-08-28 23:13:01 -05:00
cora
39cf1f197d autofly: cruisemode - its very nice now - no more set_pos :) 2021-08-28 23:12:53 -05:00
cron
f8be6e24e9 autofly: autotp support position and waypoint 2021-08-28 23:12:53 -05:00
cron
016be0eede LuaClient: modify minetest.interact
It now uses strings instead of numbers, and supports being passed a node coordinate as well as raycasting for the target.
2021-08-28 23:12:53 -05:00
cora
17ce7c0fa5 autofly: fix regression 2021-08-28 23:12:39 -05:00
cron
5f92bd9746 autofly: add random flying, some fixes 2021-08-28 23:12:30 -05:00
cora
0a95b8b45b autofly:various fixes 2021-08-28 23:12:30 -05:00
cora
263dbeac47 autofly: automatically show death waypoint 2021-08-28 23:12:30 -05:00
cora
6af8242717 autofly: fix warning 2021-08-28 23:12:30 -05:00
cora
82ef888bbb autofly:optimizin' 2021-08-28 23:12:30 -05:00
cora
8e48383812 autofly: and another one lol .. now it works 2021-08-28 23:12:30 -05:00
cora
58bc30f541 autofly: cruise small fix 2021-08-28 23:12:30 -05:00
cora
26b1d072b0 autofly: add cruise mode 2021-08-28 23:12:30 -05:00
cron
01decba5de autofly: disable aim on freecam, use autofsprint instead of pressing special1 2021-08-28 23:12:30 -05:00
cora
e57f62a186 autofly: fix arrive 2021-08-28 23:12:30 -05:00
cora
2ac62c69b7 autofly: fix regression 2021-08-28 23:12:30 -05:00
cora
a17def93c3 autofly: small fix 2021-08-28 23:12:30 -05:00
cora
743516e8cf autofly: add autofly.goto + some cleanup 2021-08-28 23:12:30 -05:00
cron
b6c34f9d5e autofly: modulo yaw 2021-08-28 23:12:30 -05:00
cora
cd4aa1220a autofly: add snap to axis 2021-08-28 23:12:30 -05:00
cora
e5ca28f445 autofly: hud improvments 2021-08-28 23:12:30 -05:00
cora
c76be7b86d autofly: add sounds 2021-08-28 23:12:30 -05:00
cora
cedbb418d0 minetest.interact: some cleanup + sanity check 2021-08-28 23:12:30 -05:00
cora
a4ea9b0400 minetest.interact: allow all interactions 2021-08-28 23:12:30 -05:00
cora
3dd9dfb174 autotp: add to wpform 2021-08-28 23:12:30 -05:00
cora
49fc041161 autotp: fixed typo lol 2021-08-28 23:12:30 -05:00
cora
9408e18089 autotp: works :) 2021-08-28 23:12:30 -05:00
cora
bf63f35c10 autotp: add api method interact place, add preliminary autotp test 2021-08-28 23:12:30 -05:00
cron
b7dcc4299d autofly: fix autosprint preventing normal sprinting 2021-08-28 23:12:29 -05:00
cron
7e23013727 minetest.register_cheat: fix multiple definition 2021-08-28 23:12:29 -05:00
cora
6def65f31d autofly: fixed autoSprint to reset correctly 2021-08-28 23:03:45 -05:00
cora
7a757a8c6a autofly: removed image test 2021-08-28 23:03:45 -05:00
cora
1f1e7558b0 autoeat: added seperate setting for timed autoeat 2021-08-28 23:03:45 -05:00
cora
aec3fb38f5 autoeat: timed eat when certain things are happening 2021-08-28 23:03:45 -05:00
cora
c9b11b7c73 add ws cheats to cheat.lua ... why, fleck, why ? :D 2021-08-28 23:01:49 -05:00
cora
b561de16b5 autofly: some fixes 2021-08-28 23:01:49 -05:00
cora
bee4d3d326 autofly: add normal autosprint; some gui fixes 2021-08-28 23:01:34 -05:00
cora
510f8da63f autofly: add AutoSprint 2021-08-28 23:01:34 -05:00
flyc0r
8d947351e3 autfly: add wp-gui menu entry 2021-08-28 22:39:31 -05:00
flyc0r
2551ddbf1d Add changes from waspsaliva initial commit
This commit contains changes best credited to flyc0r
<flyc0r@localhost.localdomain>, although the changes were separated
out from waspsaliva's original initial commit rev. 0e9e1f352, which
added the files from DFC work tree, and squashed in numerous additions
by flyc0r and collaborators.  That commit log:

    commit 0e9e1f3528c3d2fa1f1e9a79d4a00576be8552f5
    Author: flyc0r <flyc0r@localhost.localdomain>
    Date:   Sun Oct 4 03:37:08 2020 +0200

        init

This rebase had the effect of griefing the git history xD, so
for example `git blame` of DFC and even upstream Minetest sources
appear to be originally authored by `flyc0r` in that commit.

To fix this, I will recommit only the changes onto the appropriate
commit in DFC, and recreate the following git history (incl. merges).
After this, the git history will be at least visually the same as the
original Waspsaliva, even if commit sha1sums have changed.

AFAICT, the closest commit from DFC was af085acbd.  That commit was
found simply by running `git diff wsc-master <some_DFC_rev>`, and
locating the commit with the smallest number of differences.

This commit was then created as follows:

    # Check out the DFC base commit
    git checkout af085acbd
    # Check out the *files* from WSC's initial commit
    git checkout 0e9e1f352 -- .
    # Make sure everything is added and commit the changes
    git add -A
    git commit
2021-08-28 21:58:59 -05:00