Commit Graph

3342 Commits

Author SHA1 Message Date
apple502j 7fdd2f3c9e
1.19.4-pre4/rc stuff (#3523)
* 1.19.4-pre4 stuff

* 1.19.4-rc2 stuff

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-03-14 14:57:46 +00:00
modmuss50 57efc37397 1.19.4-rc3 2023-03-13 10:52:04 +00:00
modmuss50 ae8ad0d9f7 1.19.4-rc2 2023-03-10 14:01:13 +00:00
modmuss50 9b48d6c44f 1.19.4-rc1 2023-03-09 16:53:46 +00:00
modmuss50 e6b8db8212 1.19.4-pre4 2023-03-08 14:39:45 +00:00
Juuz 6fb421c29c
Improve some worldgen parameters (#3522)
- PlacedFeature: Added mappings for `random`
- PlacedFeatures: Used more descriptive names for configured feature
  registry entries
- TreeDecorator: Fixed a typo
2023-03-04 11:24:25 +09:00
apple502j e817f40aa8
1.19.4 pre3 stuff (#3521)
* 1.19.4-pre3 stuff

* Rename FocusedRect and FocusedPos
2023-03-02 14:07:09 +00:00
Benonardo 8091719131
Improve ambiguous brain tasks (#3520)
* Rename WalkTask to FleeTask

* Rename FollowMobTask to LookAtMobTask

* Rename FollowMobWithIntervalTask to LookAtMobWithIntervalTask

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-03-02 14:06:34 +00:00
modmuss50 afbf94cb55 1.19.4-pre3 2023-03-01 15:09:27 +00:00
apple502j dd773c9900
1.19.4-pre2 stuff (#3518) 2023-03-01 21:04:07 +09:00
Shnupbups 61628fa98e
Misc small things (#3517)
* Misc small things

Looked at the mapping stats graph and went through and mapped some things

* Update BuiltinBiomes.mapping

* Update mappings/net/minecraft/world/gen/structure/RuinedPortalStructure.mapping

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-02-28 21:21:44 +09:00
modmuss50 f8461a1b99 1.19.4-pre2 2023-02-27 15:14:14 +00:00
Jerozgen de6ba2b8c5
Fix wrong `showIcons` argument names (#3510) 2023-02-25 19:36:17 +11:00
Jerozgen a1d2e88a9b
Rename `getOrCreateMapState` to `getMapState` (#3511) 2023-02-25 19:33:59 +11:00
apple502j ea2a1c0714
More 1.19.4-pre1 stuff (#3516)
* 1.19.4-pre1 stuff

* Fix javadoc

* Update mappings/net/minecraft/data/server/tag/TagProvider.mapping

* Update mappings/net/minecraft/data/server/tag/TagProvider.mapping

* Apply suggestions from code review

* Apply suggestions from code review

Co-authored-by: Shnupbups <shnupbups@gmail.com>

---------

Co-authored-by: Shnupbups <shnupbups@gmail.com>
2023-02-25 17:25:22 +09:00
Shnupbups c9788b4f8e
1.19.4-pre1 stuff (#3515)
* 1.19.4-pre1 stuff

Might do more later

* little more

* Suggestions
2023-02-24 20:56:03 +09:00
mschae23 cd52dc61df
Multi noise presets and heightmap argument type (#3513) 2023-02-23 14:39:02 +09:00
modmuss50 6d9dc3a565 1.19.4-pre1 2023-02-22 17:22:18 +00:00
mschae23 59d28e12ec
ChunkNoiseSampler and DensityFunction renames and documentation (#3512)
* Add some documentation for density interpolation

* Density function documentation

* Fixed Javadoc tags
2023-02-23 02:00:42 +09:00
Juuz 4ea8ba7381
Minor fixes (#3504)
* Minor fixes

- Fix casing in the name of GlImportProcessor, fixes #3488
- Use full word "playerInventory" instead of "inv" in
  ScreenHandlerFactory for clarity. The conventions instruct to avoid
  unnecessary abbreviations and this name could be mistaken for the
  inventory of the block that the screen handler is for.
- BlockRenderManager.renderBlockAsEntity: vertexConsumer ->
  vertexConsumers since it's a VertexConsumerProvider

* Rename stack parameter in block breaking methods to tool

Closes #2988. "Tool" more clearly shows what stack the param is supposed
to be.

* Block/AbstractBlockState.isTranslucent -> isTransparent

It's true for any block with a non-full shape as well as
vines, (colourless) glass and plants - none of these are translucent.
2023-02-20 18:43:56 +11:00
Juuz f160e5b7f0
Rename tree/mushroom modifier methods in VegetationPlacedFeatures (#3506)
Fixes #2923. These methods are only used for trees/mushrooms, and can be
confused with the more generic modifiers(int) only used for other
vegetation.
2023-02-20 18:43:19 +11:00
Juuz ce51a9ad2f
Improve option widget names (#3507)
- "button" -> "widget" in many places as the widgets are often sliders
  and can be any ClickableWidget
- ButtonListWidget -> OptionListWidget, since it's only used and usable
  for options and can contain any option widget (closes #2932)
2023-02-20 18:42:46 +11:00
Juuz 3480d22830
ItemUsageContext.getPlayerFacing -> getHorizontalPlayerFacing (#3508)
Closes #2028. The previous name can easily be confused with
getPlayerLookDirection. The rename shows that it's specifically
horizontal and also matches PlayerEntity.getHorizontalFacing.

(This essentially reverts a rename from #712, albeit with a more natural
order for the words in the name now.)
2023-02-20 18:41:47 +11:00
Juuz 47b82b427a
Improve methods related to closing handled screens (#3505)
* ChestBlockEntity.onInvOpenOrClose -> onViewerCountUpdate

The new name is more accurate - the method takes in the old and new
viewer counts as parameters.

* ScreenHandler.close -> onClosed

Fixes #3503. The method doesn't close anything, it's only called when the screen handler gets closed.

* PlayerEntity.closeScreenHandler -> onHandledScreenClosed

Fixes #2612. The method closes nothing, it just runs the closing tasks
*after* the screen has closed. The current name can easily be confused
with closeHandledScreen(), which does actually close the screen.

* Document PlayerEntity.closeHandledScreen
2023-02-20 18:40:52 +11:00
Juuz f8a9f709f1
Map ChestBlockEntity.VIEWER_COUNT_UPDATE_EVENT_TYPE (#3509) 2023-02-20 10:51:19 +09:00
apple502j d3809140f7
Fix some typos (#3501) 2023-02-19 00:09:52 +11:00
apple502j 54759ae1c5
Map interaction entity (#3494) 2023-02-17 22:41:06 +09:00
apple502j 22afda81cb
23w07a client (#3496) 2023-02-17 18:09:58 +11:00
apple502j 231db41beb
23w07a networking (#3495) 2023-02-17 18:09:46 +11:00
apple502j 9294347e31
23w07a misc (#3497) 2023-02-17 18:09:31 +11:00
Shnupbups 81301f8764
23w07a stuff (#3492)
* 23w07a stuff

Got a bit carried away...

Some names aren't ideal, and there's still more that could be done, so feedback is appreciated

* More + suggestions
2023-02-16 21:22:27 +09:00
mschae23 83e1fb5278
23w07a worldgen mappings (#3491) 2023-02-16 14:58:28 +09:00
modmuss50 b3dc08e924 23w07a 2023-02-15 16:19:06 +00:00
apple502j 1370ef6412
23w06a client (#3489)
* 23w06a client

* Apply suggestions from code review

Co-authored-by: Shnupbups <shnupbups@gmail.com>

---------

Co-authored-by: Shnupbups <shnupbups@gmail.com>
2023-02-13 18:27:49 +01:00
apple502j c85488944d
23w06a stuff (#3490)
* 23w06a stuff

* Apply suggestions from code review
2023-02-12 16:46:33 +01:00
haykam821 3b3ce20b83
Rename the Vec3d#withBias method to offset (#3487) 2023-02-11 12:57:49 +09:00
MattiDragon 3a9b0d7b13
Map damage changes + /damage + world changes (#3476)
* Map damage changes + /damage + world changes

* Fix issues

* Fix capitalisation

* Fix typo

Co-authored-by: Shnupbups <shnupbups@gmail.com>

---------

Co-authored-by: Shnupbups <shnupbups@gmail.com>
2023-02-11 12:31:27 +09:00
Jerozgen 54d50fd290
Fix typo in RecipeProvider (#3486) 2023-02-11 02:45:38 +11:00
Calum 9860b178da
scoreboardTag -> commandTag (#3480) 2023-02-10 10:02:55 +01:00
Calum 396336313f
23w06a - Experiments Screen (#3482)
* Experiments Screen

* getDatapackName -> getExperimentName

* Revert "getDatapackName -> getExperimentName"

This reverts commit cbf645f791.

* Update ExperimentsScreen.mapping
2023-02-10 11:32:46 +09:00
Calum 20bb0c54ea
Fix #3434 (#3478) 2023-02-09 17:07:48 +01:00
Shnupbups 62fab3a9e7
23w06a, more stuff (#3485)
Things others missed
2023-02-09 21:30:37 +09:00
Shnupbups 38e9de0826
23w06a misc stuff (#3484)
* 23w06a misc stuff

* A few suggested changes
2023-02-09 09:05:53 +09:00
Calum 33f66b4676
Fix #3455 (#3479) 2023-02-09 08:03:50 +09:00
Shnupbups ec08cd64c5
23w06a Display Entities (#3477)
and related stuff
2023-02-09 08:01:05 +09:00
modmuss50 c8db3052f1 Fix conflict 2023-02-08 16:19:32 +00:00
modmuss50 1c9c83960f 23w06a 2023-02-08 16:10:32 +00:00
apple502j fdc46b9335
More 23w05a stuff (#3472)
* 23w05a stuff

* FIx MatrixUtil javadoc

* Fix javadoc

---------

Co-authored-by: YanisBft <yanis.briffaut@gmail.com>
2023-02-08 14:53:33 +00:00
Keuin b29ca34a95
Fix wrong name of `method_10772`. (#3473) 2023-02-04 17:44:41 +02:00
Shnupbups e048f8d00b
23w05a stuff (#3469)
Not entirely comprehensive, but as much as I can do right now
2023-02-02 16:39:33 +09:00
haykam821 dabc7a9bd2
Fix some data fix classes not being suffixed (#3471)
Fixes #3468
2023-02-02 13:20:57 +09:00
modmuss50 914338a569 23w05a hotfix 2023-02-01 16:00:11 +00:00
modmuss50 47a62f3760 23w05a 2023-02-01 15:33:02 +00:00
Shnupbups 1df1065b4d
Data package restructure (#3465)
With the introduction of sub-packs included in the base game, there are several classes for the 1.20 datapack and several for the vanilla datapack which would benefit from being renamed and put into packages to make this clearer.

Classes which are only used for the vanilla datapack have been put into a `vanilla` subpackage, and ones for the 1.20 datapack have been put into a `onetwenty` subpackage.

Furthermore, classes which are only used for the vanilla datapack have been prefixed with `Vanilla`.

The above changes should not be considered impactful as these classes are strictly for generating the vanilla and 1.20 datapacks and are incredibly unlikely to be referenced by modders.

However, tag providers which were named with an `Abstract` prefix have had this removed. This makes them match with other providers. This is a somewhat impactful refactor.
2023-02-01 21:42:58 +11:00
Tae Lim Kook 70790a9c6a
Add mappings for more util classes (#3466)
* Add mappings for more util classes

* Fix javadoc lints
2023-02-01 00:03:27 +11:00
Shnupbups a76c452f2b
23w04a stuff (#3464)
* 23w04a stuff

mostly smithing related

* fix conflict

* Add PalettedPermutationsAtlasSource

* Update RecipeProvider.mapping

* a few more missing things

* Update mappings/net/minecraft/client/gui/screen/recipebook/RecipeResultCollection.mapping

* Apply suggestions from code review

* damnit

* more
2023-01-27 19:16:31 +09:00
MattiDragon 2476989327
Map armor trims and related things (#3463)
* Armor trim changes

* Map more armor stuff

* Armor trim recipe and more

* Begin work on forging screen changes

* More armor trim related mappings

* Fix mistakes

* Fix screen handler package

* More fixes

* Forgot one

* More descriptive name
2023-01-27 09:42:30 +09:00
apple502j 2b3663b85f
23w04a stuff (#3462) 2023-01-25 06:05:59 +11:00
modmuss50 be911685f0 23w04a 2023-01-24 16:14:55 +00:00
apple502j 13aba8d3d7
23w03a more stuff (#3461)
* Drop invalid mappings

* Map screen stuff

* Map widgets

* Map misc stuff

* Fix javadoc

* Map more stuff
2023-01-22 02:01:44 +09:00
PatrickMSM bae398aa3a
Rename LivingEntity#getArrowType to getProjectileType (#3452)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Shnupbups <shnupbups@gmail.com>
2023-01-20 21:45:50 +09:00
apple502j 8931253d01
More 23w03a stuff (#3460)
* 23w03a stuff

* Update mappings/net/minecraft/entity/Entity.mapping

Co-authored-by: Shnupbups <shnupbups@gmail.com>
2023-01-20 23:38:25 +11:00
apple502j 599a3028a3
23w03a networking (#3459)
Co-authored-by: Shnupbups <shnupbups@gmail.com>
2023-01-20 09:50:59 +00:00
MattiDragon 397dfb38ec
23w03a commands (#3457)
* map /ride command

* map /data changes

* map /weather changes

* map /execute changes

* map /clone changes

* map blockpos argument chnages and a few lambdas in /execute

* Fix some issues

* Revert apply -> get

* Fix typos in /clone
2023-01-20 17:31:03 +11:00
Shnupbups e9dc3a1c4d
23w03a stuff (#3458)
* 23w03a stuff

kinda rough, but i need sleep

* Delete C2SBundlePacket.mapping
2023-01-20 13:10:00 +09:00
modmuss50 476a7a6e8f 23w03a 2023-01-18 14:56:13 +00:00
George Adams b834c10efd
migrate from openjdk base image to eclipse-temurin (#3449)
* migrate from openjdk base image to eclipse-temurin

https://hub.docker.com/_/openjdk has been deprecated for some time and will no longer get security updates

* Update publish.yml

* Update release-filament.yml
2022-12-23 12:46:15 +00:00
Jab125 9cf8b97faf
Update InGameHud.mapping (#3447) 2022-12-20 23:55:42 +11:00
Juuz fdc31a2b79
Fix typos in Registries (#3445)
* Fix typo in Registries.FLOAT_PROVIDER_TYPE

* Fix typo in Registries/RegistryKeys.ROOT_PLACER_TYPE
2022-12-11 22:46:21 +11:00
apple502j 8fa56019e9
1.19.3-rc3 stuff (#3444)
* 1.19.3-rc3 stuff

* Remove unpick for now

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2022-12-07 18:17:23 +00:00
modmuss50 04cda4a2bb 1.19.3 2022-12-07 16:01:33 +00:00
modmuss50 3e45a15eb8 1.19.3-rc3 2022-12-06 11:10:09 +00:00
apple502j 2ef10cdd70
Map two lambdas (#3443) 2022-12-06 09:25:43 +00:00
modmuss50 61e8671f83 1.19.3-rc2 2022-12-05 14:13:40 +00:00
apple502j 69061ca53f
Fix typo in TelemetryEventWidget (#3441) 2022-12-04 16:48:35 +11:00
Krysztal d6c93aadbf
Named fileds of IntProperty (#3440)
- `field_37655` to `min`
- `field_37656` to `max`
2022-12-04 13:43:50 +09:00
Shnupbups e515eeded7
1.19.3-rc1 stuff (#3439) 2022-12-02 08:39:10 +09:00
modmuss50 0367e40f4b 1.19.3-rc1 2022-12-01 15:19:49 +00:00
apple502j 2d27669f48
1.19.3-pre3 more stuff (#3438) 2022-11-30 22:50:17 +01:00
Shnupbups 55dd7f6fd5
1.19.3-pre3 stuff (#3437)
* 1.19.3-pre3 stuff

* javadoc fix

100acb44f5 (r91439942)

* Update mappings/net/minecraft/sound/SoundEvent.mapping

Co-authored-by: enbrain <69905075+enbrain@users.noreply.github.com>

Co-authored-by: apple502j <33279053+apple502j@users.noreply.github.com>
Co-authored-by: enbrain <69905075+enbrain@users.noreply.github.com>
2022-11-30 18:58:00 +01:00
modmuss50 100acb44f5 1.19.3-pre3 2022-11-29 15:35:55 +00:00
enbrain 7a3c950555
Map EnderDragonEntityRenderer (#3432) 2022-11-29 15:27:02 +00:00
enbrain 6fc0747c1e
Map logger fields (#3436) 2022-11-27 17:12:14 +11:00
enbrain 1114394367
Map datafixer schemas (#3435) 2022-11-26 22:52:25 +11:00
Xander 8172144dee
fix TooltipPositioner args (#3433)
* fix TooltipPositioner args

* fix TooltipBackgroundRenderer args

* HoveredTooltipPositioner args fix

* revert blit args change
2022-11-26 13:15:48 +09:00
apple502j 998ecaceef
1.19.3-pre2 stuff (#3431)
* 1.19.3-pre2 stuff

* Update mappings/net/minecraft/entity/ai/pathing/WaterPathNodeMaker.mapping

Co-authored-by: YanisBft <yanis.briffaut@gmail.com>

Co-authored-by: YanisBft <yanis.briffaut@gmail.com>
2022-11-25 20:35:24 +11:00
Shnupbups f9facc491b
Attack Pos Offsetting Mount (#3430)
* Attack Pos Offsetting Mount

after much deliberation, i think these names are alright

* inline return
2022-11-25 17:28:50 +09:00
Shnupbups 11e53e1a48
1.19.3-pre2 stuff (#3426)
* 1.19.3-pre2 stuff

yarn is very inconsistent with whether to use `index`, `id`, or even in one scenario `ordinal` for integer indexes in value lists...

* Apply suggestions from reviews
2022-11-24 13:09:49 +01:00
Ayutac 78edd4174f
Update FlowableFluid.mapping (#3424)
named some methods

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: modmuss50 <modmuss50@gmail.com>
2022-11-24 11:18:10 +00:00
apple502j d64c6570a3
Move Tooltip to tooltip package (#3429) 2022-11-24 20:54:15 +11:00
YanisBft 9d3043fd90
1.19.3-pre2 tooltip positioners (#3427) 2022-11-24 15:40:03 +09:00
enbrain 491bd4d045
1.19.3-pre2 tooltip background renderer (#3428) 2022-11-24 15:36:32 +09:00
modmuss50 2e1a86b927 1.19.3-pre2 2022-11-23 16:58:46 +00:00
apple502j b012ade3ab
1.19.3-pre1 stuff (#3425) 2022-11-23 23:29:21 +11:00
apple502j be1e0246ac
Fix getRenderTypeCrumblingShader and getRenderTypeEntityTranslucentEmissiveShader (#3423)
Co-authored-by: enbrain <69905075+enbrain@users.noreply.github.com>
2022-11-23 18:32:07 +09:00
YanisBft 7a238951cc
1.19.3-pre1 variant for predicates (#3420)
* 1.19.3-pre1 variant for predicates

* Update mappings/net/minecraft/entity/vehicle/BoatEntity.mapping

Co-authored-by: enbrain <69905075+enbrain@users.noreply.github.com>

* Update mappings/net/minecraft/entity/passive/FoxEntity.mapping

Co-authored-by: enbrain <69905075+enbrain@users.noreply.github.com>

* Update mappings/net/minecraft/entity/passive/MooshroomEntity.mapping

Co-authored-by: enbrain <69905075+enbrain@users.noreply.github.com>

* Rename to codec

* Update mappings/net/minecraft/entity/VariantHolder.mapping

Co-authored-by: enbrain <69905075+enbrain@users.noreply.github.com>
Co-authored-by: Shnupbups <shnupbups@gmail.com>
2022-11-23 16:56:19 +09:00
Shnupbups 5cdd2b87fb
1.19.3-pre1 stuff (#3422) 2022-11-23 11:27:12 +09:00
Kevinthegreat b7b99a15f2
Mapped MultilineTextWidget (#3421) 2022-11-23 06:18:20 +11:00
enbrain d68e3fd1c5
Rename Sprite.getId to getAtlasId (#3418)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Shnupbups <shnupbups@gmail.com>
2022-11-22 17:21:30 +00:00
haykam821 a6fef56a18
Map custom note block sounds (#3419) 2022-11-23 04:12:41 +11:00