Commit Graph

1447 Commits

Author SHA1 Message Date
8d61f84466 Stop messing with the PlotSquared queue system
Stops synchronized chunk loading on PlotSquared and our queue didn't really do anything better than what PlotSquared did.
2020-03-27 12:28:09 -04:00
46d24fff0f Update AsyncWorld.java 2020-03-26 17:11:07 -04:00
fa738504a8 Fix some important chunk issues
This commit should properly synchronize the initialization of the adapter's ibdToStateOrdinal (the char array FAWE uses to convert NMS IBlockData objects to an internal ordinal for chunk operations) so references to this array do not push incorrect characters down the line.

Potentially fixes #373
Fixes #363
Fixes #332
2020-03-26 16:08:36 -04:00
e648b35b95 Small code quality changes 2020-03-24 12:32:36 -04:00
692caeea8a Read WE version from manifest ourselves
(cherry picked from commit 947775b5e54aa9dd89d68ee0b382939796301902)
2020-03-23 19:31:56 -04:00
989680d159 Only add adapters to dist jar
(cherry picked from commit 20d630ce5b217799811779d7581d5878ddc83a6d)
2020-03-23 16:27:03 -04:00
89ee1cb21a Merge remote-tracking branch 'origin/1.15' into 1.15 2020-03-22 14:10:13 -04:00
7ef02dfbde Lighting in AyncBlock is set to 15 (at least for now) 2020-03-22 14:05:51 -04:00
8f2c3df61b Merge pull request #359 from tsao-chi-fork/patch-1
use JavaPlugin.getResource() instead of JarFile.getEntry()
2020-03-21 17:32:14 -04:00
45ac55185f Merge remote-tracking branch 'origin/1.15' into 1.15 2020-03-20 21:19:37 -04:00
a49a09a042 Added clarification for debugging message because of people thinking it is an error. 2020-03-20 20:04:31 -04:00
a22bcb1c2a Fix tab completion 2020-03-19 17:23:11 -05:00
9f07894f28 Performance improvement based on case study by @me4502 2020-03-19 13:08:25 -04:00
8a70f97445 Mask and Pattern modifications 2020-03-17 23:05:52 -04:00
1df5853f33 Remove unnecessary reflection 2020-03-17 22:27:41 -04:00
dcee873b57 fix typo 2020-03-11 13:35:37 +08:00
39e1026400 use try-with-resources 2020-03-11 13:34:11 +08:00
f63782f2f4 Fix Metrics 2020-03-10 17:31:36 -04:00
325d90fe39 Add stubs for new Bukkit API 2020-03-10 17:29:37 -04:00
14d2c9a5c3 Update BlockStateIdAccess and added a debug message 2020-03-10 17:22:53 -04:00
bd692917e6 remove unnecessary import 2020-03-10 12:36:16 +08:00
fbb1078569 use JavaPlugin.getResource() instead of JarFile.getEntry() 2020-03-09 13:14:16 +08:00
35538e7d61 Update Metrics.java 2020-03-05 19:01:06 -05:00
e32e17b15c Fixed an NullPointerException with PlotSquared 2020-03-05 18:05:33 -05:00
915ab43f6e Cleanup unused code. 2020-03-05 16:07:20 -05:00
f18cb1a0e1 Update gradle 2020-03-02 19:40:36 -05:00
d2bcc6dd35 Fix #346 , minor hook changes
- Removed deprecated FaweMaskManager#getMask(Player)
- Removed deprecated constructor FaweMask(BlockVector3, BlockVector3)
2020-02-26 10:17:11 -05:00
0918396ab6 Update bukkit gradle 2020-02-25 23:21:01 -05:00
c52db75976 Delete unused file 2020-02-25 18:26:04 -05:00
f3d19cf87d Merge branch '1.15' of https://github.com/IntellectualSites/FastAsyncWorldEdit-1.13 into 1.15 2020-02-23 12:49:41 -05:00
bfcf24b27b Small quality of code changes 2020-02-23 12:48:22 -05:00
7388d3310f Merge branch '1.15' of https://github.com/IntellectualSites/FastAsyncWorldEdit into workaround-visiblechunks 2020-02-22 20:11:28 -08:00
f6675160f1 Also target 1.15 & 1.14 adapters 2020-02-22 20:11:23 -08:00
14ac3205ce Check for PlotSquared before initializing the feature class
Some users are experiencing issues during startup with FAWE not finding PlotSquared resulting in errors.
2020-02-22 21:02:12 -05:00
0d18b15393 Workaround for replacing PlayerChunkMap#visibleChunks field
I run a fork of paper which replaces the visibleChunks and updatingChunks
field for gc performance reasons - visibleChunks is updated via
cloning updatingChunks, and at high chunk counts this causes gc issues
due to the humongous allocation. Unfortunately the only solution is to
not clone the map - which is why the field is removed.

Instead of BukkitAdapter#getPlayerChunk using the visibleChunks field,
it now uses a MethodHandle for PlayerChunkMap#getVisibleChunk. This method is
present on spigot & paper (only protected on spigot - which is why reflection is required),
and I preserve the same thread-safety it provides in my fork - so this solution
will not break compatibility with craftbukkit, spigot, and paper.
2020-02-22 07:07:40 -08:00
62cb04b8ca Remove CFI redirect and other minor changes. 2020-02-21 14:56:21 -05:00
516e7e4ca6 Merge remote-tracking branch 'origin/1.15' into 1.15 2020-02-21 00:00:11 -05:00
99f7b23a8c Changes to API and something else I forgot because I got distracted 2020-02-20 23:59:57 -05:00
c9aebf17d8 Fix #320 ; optimize adapter imports 2020-02-20 21:28:28 -05:00
e0bb1ce853 Revert "More minor cleanup"
This reverts commit 38435d50
2020-02-18 18:06:08 -05:00
38435d50b4 More minor cleanup 2020-02-18 18:00:39 -05:00
49dbd4b76b Minor changes 2020-02-14 14:29:08 -05:00
647665c3b0 Upstream is better than downstream 2020-02-13 20:19:45 -05:00
73c5e34040 Fixed AsyncWorld for real 2020-02-13 13:12:11 -05:00
4d4709b2f6 Removed ChunkListener8 and resolved compiling issues 2020-02-13 13:07:30 -05:00
e56e9e39ee Implement new World interface methods 2020-02-12 18:19:12 -05:00
b1c11c9597 Implement new World interface methods 2020-02-12 17:46:07 -05:00
0723620722 Remove remaining BlocksHub references from the code. 2020-02-12 17:09:28 -05:00
ceec0ec0b9 API Breaking
Removed LoggingChangeSet since it wasn't functional and the majority of it was commented out.
Migrated a lot of RunnableVal implementations to Suppliers for improved readability and a very small speed improvement.
2020-02-12 17:04:21 -05:00
6dd85e48ba Various changes
the most notable change is that PlotSquared is being moved to the Bukkit module again to allow for future compatibility with version 5 of the plugin.
2020-02-12 16:18:36 -05:00