mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-22 22:18:13 +05:00
* Sync keyboard text buffer from Flash before processing physical input The native keyboard scene maintained a separate C++ buffer (m_win64TextBuffer) for physical keyboard input, which was pushed to the Flash text field via setLabel(). However, when the user typed with the on-screen controller buttons, Flash updated its text field directly through ActionScript without updating the C++ buffer. This caused a desync: switching back to the physical keyboard would overwrite any text entered via controller, since m_win64TextBuffer still held the old value before the controller edits. Fix: read the current Flash text field into m_win64TextBuffer at the start of each tick(), before consuming new physical keyboard chars. This ensures both input methods always operate on the same state. * Use last active input device to decide keyboard mode instead of connection state The keyboard UI mode (on-screen virtual keyboard vs direct text input) was determined by Win64_IsControllerConnected(), which checks if any XInput controller is physically plugged in. This meant that even if the player was actively using mouse and keyboard, the virtual keyboard would still appear as long as a controller was connected. Replace the connection check with g_KBMInput.IsKBMActive(), which tracks the actual last-used input device based on per-frame input detection. Now the keyboard mode is determined by what the player is currently using, not what hardware happens to be plugged in. Affected scenes: CreateWorldMenu (world naming) and LoadOrJoinMenu (world renaming). * Fix TextInput caret behavior and add proper cursor editing for KBM direct edit The direct text editing mode introduced for KBM users had several issues with the TextInput control's caret (blinking cursor) and text manipulation: 1. Caret visible when not editing: When navigating to the world name field with keyboard/mouse, Flash's Iggy focus system would show the blinking caret even though the field wasn't active for editing yet (Enter not pressed). This was misleading since typing had no effect in that state. Fix: access the FJ_TextInput's internal m_mcCaret MovieClip and force its visibility based on editing state. This is enforced every tick because setLabel() and Flash focus transitions continuously reset the caret state. 2. No cursor movement during editing: The direct edit implementation treated the text as a simple buffer with push_back/pop_back — there was no concept of cursor position. Backspace only deleted from the end, and arrow keys did nothing. Fix: track cursor position (m_iCursorPos) in C++ and use wstring insert/erase at that position. Arrow keys (Left/Right), Home, End, and Delete now work as expected. The visual caret position is synced to Flash via the FJ_TextInput's SetCaretIndex method. 3. setLabel() resetting caret position: Every call to setLabel() (when text changes) caused Flash to reset the caret to the end of the string, making the cursor jump visually even though the C++ position was correct. Fix: enforce caret position via setCaretIndex every tick during editing, so any Flash-side resets are immediately corrected. New UIControl_TextInput API: - setCaretVisible(bool): toggles m_mcCaret.visible in Flash - setCaretIndex(int): calls FJ_TextInput.SetCaretIndex in Flash * Fix keyboard/arrow navigation not working when no UI element is focused On Windows64 with KBM, moving the mouse over empty space (outside any button) would clear the Iggy focus entirely. After that, pressing arrow keys did nothing because Flash had no starting element to navigate from. Two changes here: - Don't set focus to IGGY_FOCUS_NULL when the mouse hovers over empty space. The previous hover target stays focused, so switching back to arrows keeps working seamlessly. - When a navigation key is pressed and nothing is focused at all (e.g. mouse was already on empty space when the menu opened), grab the first focusable element instead of silently dropping the input. The keypress is consumed to avoid jumping two elements at once. This makes mixed mouse+keyboard navigation feel a lot more natural. You can point at a button, then continue with arrows, or just start pressing arrows right away without having to hover first. * Overhaul mouse support and generalize direct text editing to all UI scenes This is a large rework of the Windows64 KBM (keyboard+mouse) input layer. It touches the mouse hover system, the mouse click dispatch, and the direct text editing infrastructure, then applies all of it to every scene that has text input fields or non-standard clickable elements. MOUSE HOVER REWRITE (UIController.cpp tickInput) The old hover code had two structural problems: (a) Scene lookup was group-first: it iterated UI groups and checked all layers within each group. The Tooltips layer on eUIGroup_Fullscreen (which holds non-interactive overlays like button hints) would be found before in-game menus on eUIGroup_Player1. The tooltip scene focusable objects captured mouse input and prevented hover from reaching the actual menu. Fixed by switching to layer-first lookup across all groups, and skipping eUILayer_Tooltips entirely since those are never interactive. (b) On tabbed menus (LaunchMoreOptionsMenu Game vs World tabs), all controls from all tabs are registered in Flash at the same time. There was no filtering, so controls from inactive tabs had phantom hitboxes that overlapped the active tab controls, making certain buttons unhoverable. Fixed by introducing parent panel tracking: each UIControl now has a m_pParentPanel pointer, set automatically by the UI_MAP_ELEMENT macro during mapElementsAndNames(). The hover code checks the control parent panel against the scene GetMainPanel() and skips mismatches. This is the same technique the Vita touch code used, but applied to mouse hover. The coordinate conversion was also simplified. The old code had two separate scaling paths (window dimensions for hover, display dimensions for sliders). Now there is one conversion from window pixel coords to SWF coords using the scene own render dimensions. REUSING VITA TOUCH APIs FOR MOUSE (ButtonList, UIScene) Several APIs originally gated behind __PSVITA__ are now enabled for Win64: - UIControl_ButtonList::SetTouchFocus(x,y) and CanTouchTrigger(x,y): the Flash-side ActionScript methods were already registered on all platforms in setupControl(), only the C++ wrappers were ifdef-gated. Opening the ifdefs to include _WINDOWS64 lets the mouse hover code delegate to Flash for list item highlighting, which handles internal scrolling and item layout that would be impractical to replicate in C++. - UIScene::SetFocusToElement(id): programmatic focus-by-control-ID, used as a fallback when Iggy focusable objects do not match the C++ hit test. - UIScene_LaunchMoreOptionsMenu::GetMainPanel(): returns the active tab panel control, needed by the hover code to filter inactive tab controls. MOUSE CLICK DISPATCH (UIScene.cpp handleMouseClick) Left-clicking previously relied entirely on Iggy ACTION_MENU_OK dispatch, which routes to whatever Flash considers focused. This broke for custom- drawn elements that are not Flash buttons (crafting recipe slots), and for scenes where Iggy focus did not match what the user visually clicked. Added a virtual handleMouseClick(x, y) on UIScene with a default implementation that hit-tests C++ controls. When multiple controls report overlapping bounds (common in debug scenes where TextInputs report full Flash-width), it picks the one whose left edge X is closest to the click. Returns true to consume the click and suppress the normal ACTION_MENU_A dispatch via a m_mouseClickConsumedByScene flag on UIController. The default implementation handles buttons, text inputs, and checkboxes (toggling state and calling handleCheckboxToggled directly). CRAFTING MENU MOUSE CLICK (UIScene_CraftingMenu.cpp) The crafting menu recipe slots (H slots) are rendered through Iggy custom draw callback, not as Flash buttons. They have no focusable objects, so mouse clicking did nothing. The solution caches SWF-space positions during rendering: inside customDraw, when H slot 0 and H slot 1 are drawn, the code extracts SWF coordinates from the D3D11 transform matrix via gdraw_D3D11_CalculateCustomDraw_4J. The X difference between slot 0 and slot 1 gives the uniform slot spacing. handleMouseClick then uses these cached bounds to determine which recipe slot was clicked, resets the vertical slot indices (same pattern as the constructor), updates the highlight and vertical slots display, and re-shows the old slot icon. This mirrors the existing controller LEFT/RIGHT navigation in the base class handleKeyDown. DIRECT EDIT REFACTORING (UIControl_TextInput) The direct text editing feature (type directly into text fields instead of opening the virtual keyboard) was originally implemented inline in CreateWorldMenu with all the state, character consumption, cursor tracking, caret visibility, and cooldown logic hardcoded in one scene. Moved everything into UIControl_TextInput: - beginDirectEdit(charLimit): captures current label, inits cursor at end - tickDirectEdit(): consumes chars, handles Backspace/Enter/Escape, arrow keys (Left/Right/Home/End/Delete), enforces caret visibility every tick (because setLabel and Flash focus transitions continuously reset it), returns Confirmed/Cancelled/Continue - cancelDirectEdit() / confirmDirectEdit(): programmatic control - isDirectEditing() / getDirectEditCooldown() / getEditBuffer(): state query For SWFs that lack the m_mcCaret MovieClip child (like AnvilMenu), the existence check validates by reading a property from the resolved path, since IggyValuePathMakeNameRef always succeeds even for undefined refs. When no caret exists, the control inserts a _ character at the cursor position as a visual fallback. The caret check result is cached in m_bHasCaret/m_bCaretChecked to avoid repeated Iggy calls that could corrupt internal state. SCENES UPDATED WITH DIRECT EDIT + VIRTUAL KEYBOARD Every scene with text input now supports both input modes: direct editing when KBM is active, virtual keyboard (via NavigateToScene eUIScene_Keyboard) when using a controller. The mode is chosen at press time based on g_KBMInput.IsKBMActive(). - CreateWorldMenu: refactored to use the new UIControl_TextInput API, removing ~80 lines of inline editing code. - AnvilMenu: item renaming now supports direct edit. The keyboard callback uses Win64_GetKeyboardText instead of InputManager.GetText (which reads from a different buffer on Win64). The virtual keyboard is opened with eUILayer_Fullscreen + eUIGroup_Fullscreen so it does not hide the anvil container menu underneath. Added null guards on getMovie() in setCostLabel and showCross since the AnvilMenu SWF may not fully load on Win64. - SignEntryMenu: all 4 sign lines support direct edit. Clicking a different line while editing confirms the current one. Each line cooldown timer is checked independently to prevent Enter from re-opening the edit. - LaunchMoreOptionsMenu: seed field direct edit with proper input blocking. - DebugCreateSchematic: all 7 text inputs (name + start/end XYZ coords). handleMouseClick is overridden to always consume clicks during edit to prevent Iggy re-entry on empty space. - DebugSetCamera: all 5 inputs (camera XYZ + Y rotation + elevation). Clicking a different field while editing confirms the current value and opens the new one. Float display formatting changed from %f to %.2f. All keyboard completion callbacks on Win64 now use Win64_GetKeyboardText (two params: buffer + size) instead of InputManager.GetText, which reads from the correct g_Win64KeyboardResult global when using the in-game keyboard scene. SCROLL WHEEL Mouse wheel events (ACTION_MENU_OTHER_STICK_UP/DOWN) are now centrally remapped to ACTION_MENU_UP/DOWN in UIController::handleKeyPress when KBM is active. Previously each scene would need to handle OTHER_STICK actions separately, and most did not, so scroll wheel only worked in a few places. * Add mouse click support to CraftingMenu (tab switching, slot selection, craft) The crafting screen's horizontal recipe slots and category tabs are custom-drawn via Iggy callbacks rather than regular Flash buttons, so the standard mouse hover system can't interact with them. This adds handleMouseClick to derive clickable regions from the H slot positions cached during customDraw. Tab clicking: tab hitboxes are computed relative to the H slot row since the Vita TouchPanel overlays (full-screen invisible rectangles) aren't suitable for direct hit-testing on Win64. The Y bounds were tuned empirically to match the SWF tab icon positions. Clicking a tab runs the same switch logic as LB/RB: hide old highlight, update group index, reset slot indices, recalculate recipes, and refresh the display. H slot clicking: clicking a different recipe slot selects it (updating V slots, highlight, and re-showing the previous slot). Clicking the already-selected slot crafts the item by dispatching ACTION_MENU_A through handleKeyDown, reusing the existing crafting path. Empty slots (iCount == 0) are ignored. All mouse clicks on the scene are consumed (return true) to prevent misses from falling through as ACTION_MENU_A and accidentally triggering a craft. This only suppresses mouse-originated A presses via m_mouseClickConsumedByScene; keyboard and controller A remain fully functional. Also enables GetMainPanel for Win64 (was Vita-only) so the mouse hover system can filter controls by active panel, same as other tabbed menus. * Fix mouse hover selecting wrong buttons from the third onward The hover code was doing a redundant second hit-test against Iggy focusable object bounds after the C++ control bounds had already identified the correct control. Iggy focusable bounds are wider than the actual visible buttons and overlap vertically, so the "pick largest x0" heuristic would match focusables belonging to earlier buttons when hovering the right side of buttons 3+. Replaced the IggyPlayerGetFocusableObjects path with a direct SetFocusToElement call using the already-correct hitControlId from the C++ hit-test, same approach the click path uses in handleMouseClick. Also switched the overlap tiebreaker from "largest x0" to smallest area, consistent with how clicks resolve overlapping controls. TextInput is excluded from hover focus to avoid showing the caret on mere mouse-over (its Iggy focus is set on click). * Use smallest-area tiebreaker for mouse click hit-testing too Same overlap fix applied to handleMouseClick: when multiple controls contain the click point, prefer the one with the smallest bounding area instead of the one with the largest left-edge X. This is more robust for any layout (vertical menus, grids, overlapping panels) and matches the hover path logic. Those changes were initially made in order to fix the teleport ui for the mouse but broke every other well working ui. * Fix mouse cursor staying trapped in window on alt-tab When the inventory or other UI with a hidden cursor was open, alt-tabbing out would leave the cursor locked to the game window. SetWindowFocused(false) from WM_KILLFOCUS correctly released the clip and showed the cursor, but Tick() was unconditionally calling SetCursorPos every frame to re-center it, overriding the release. Added m_windowFocused to the Tick() condition so cursor manipulation only happens while the window actually has focus. * Map mouse right click to ACTION_MENU_X for inventory half-stack Right clicking an item stack in Java Edition picks up half of it. Console Edition already handles this via ACTION_MENU_X (the X button on controller), which sets buttonNum=1 in handleKeyDown. This maps mouse right click to that same action so KBM players get the same behavior across all container menus (inventory, chests, furnaces, hoppers, etc). * Fix mouse hover hitting removed controls (ghost hitboxes) When removeControl() removes a Flash element (e.g. the Reinstall button in Help & Options, or the Debug button when disabled), the C++ control object stays in the m_controls vector. On Vita this was handled by calling setHidden(true) and checking getHidden() in the touch hit-test, but on Windows64 none of that was happening. The result: removed buttons kept phantom bounds that the hover code would match against, stealing focus from the buttons that shifted into their visual position. In the Help & Options menu with debug enabled, the removed Reinstall button (Button6) had ghost bounds overlapping where the Debug button (Button7) moved to after the removal, making Debug un-hoverable and snapping focus to Button1. The fix has three parts: - removeControl() now calls setHidden(true) on all platforms, not just Vita. The m_bHidden member was already declared on all platforms, only the accessors were ifdef'd behind __PSVITA__. - Removed the __PSVITA__ ifdef from setHidden/getHidden in UIControl.h so they're available everywhere. - Added getHidden() checks in both the hover and click hit-test loops, matching what the Vita touch code already does. The check is a simple bool read (no Flash/Iggy call), placed before the getVisible() query which hits Flash and can return stale values for removed elements. * Add right-click to open save options in world selection menu On controller, RB (ACTION_MENU_RIGHT_SCROLL) opens the save options dialog (rename/delete) when a save is selected. Mouse right-click maps to ACTION_MENU_X, which had no Windows64 handler in this scene. Added save options handling under ACTION_MENU_X for _WINDOWS64 so right-clicking a save opens the same dialog. Also handles the mashup world hide action for right-click consistency. Console-only options (copy save, save transfer) are excluded since they don't apply here. * Fix splitscreen mouse, keyboard cursor, and local player join Mouse hover and click in split-screen was broken: the coordinate conversion from window pixels to Flash/SWF space did not account for the viewport tile-origin offset or the smaller display dimensions of each splitscreen quadrant. Now the mouse position is mapped through three steps: window pixels to UIController screen space, subtract the viewport origin (which varies per quadrant/split type), then scale from display size to SWF authoring size. This fixes hover highlighting and click targeting in all splitscreen layouts. Mouse input was also bleeding into other splitscreen players' UI groups because the scene lookup iterated all groups. Now it only checks the fullscreen group and the primary (KBM) player's group, so controller players' menus are never affected by mouse movement. Mouse grab/release (cursor lock for gameplay) was triggering for every local player's tick, causing fights between splitscreen players over the cursor state. Now only the primary pad player controls grab state. The in-game keyboard scene in PC mode had no cursor movement: typing always appended at the end and backspace always deleted from the end. Added a cursor position tracker (m_iCursorPos) so that characters are inserted at the cursor, backspace deletes behind it, and arrow keys, Home, End, and Delete all work as expected. The Flash caret is synced to the cursor position each tick. Also stopped syncing the text buffer back from Flash in PC mode, which was resetting the cursor every tick. Arrow keys in PC mode no longer get forwarded to Flash (which would move the on-screen keyboard selector instead of the text cursor). AddLocalPlayerByUserIndex was calling NotifyPlayerJoined before the IQNet slot was actually registered, passing a pointer obtained via GetLocalPlayerByUserIndex which checks customData (not set yet at that point). Now AddLocalPlayerByUserIndex is called first, and if it succeeds, the notification uses the static m_player array directly. The stub AddLocalPlayerByUserIndex now properly initialises the slot with gamertag and remote/host flags instead of being a no-op. IsSignedIn was hardcoded to return true only for pad 0, preventing splitscreen players from joining. Now it checks IsPadConnected so any connected controller can sign in. GetXUID returned INVALID_XUID for all pads except 0, which broke splitscreen player identity. Now each pad gets a unique XUID derived from the base value plus the pad index. Pinned internal resolution to 1920x1080 and removed GetSystemMetrics auto-detection which was picking up the native monitor resolution and breaking the 16:9 assumption in the viewport math and Flash layout. DPI awareness is kept for consistent pixel coordinates. * Fix Escape key not opening pause menu during tutorial hints The KBM pause check had a IsTutorialVisible guard that blocked Escape entirely while any tutorial popup was on screen. The controller path never had this restriction. Removed the check so Escape behaves the same as Start on controller. * Fix crash in WriteHeader when save buffer is too small for header table When a player enters a new region, RegionFile's constructor calls createFile which adds a FileEntry with length 0 to the file table. This increases the header table size (appended at the end of the save buffer) by sizeof(FileEntrySaveData) per entry, but since no actual data is written to the file, MoveDataBeyond is never called and the committed virtual memory pages are never grown to match. On the next autosave tick, saveLevelData writes level.dat first (before chunkSource->save which would have grown the buffer). If level.dat doesn't need to grow, finalizeWrite calls WriteHeader which tries to memcpy the now-larger header table past the end of committed memory, causing an access violation. This is especially likely in splitscreen where two players exploring at the same time can create multiple new RegionFile entries within a single tick, quickly exhausting the page-alignment slack in the buffer (yes i am working at splitscreen in the meanwhile :) ) The fix was deduced by tracing the crash callstack through the save system: FileHeader, ConsoleSaveFileOriginal, the stream chain, and the RegionFile/RegionFileCache layer. The root cause turned out to be a gap between createFile (which grows the header table) and MoveDataBeyond (the only place that grows the buffer), with finalizeWrite sitting right in between unprotected. The buffer growth check added here mirrors the exact same VirtualAlloc pattern already used in MoveDataBeyond (line 484-497) and in the constructor's decompression path (line 176-190), so it integrates naturally with the existing code. Same types, same page rounding, same error handling. The fast path (no new entries, buffer already big enough) is a single DWORD comparison that doesn't get taken, so there is zero overhead in the common case. This is the right place for the fix because finalizeWrite is the sole caller of WriteHeader, meaning every code path that writes the header (closeHandle, PrepareForWrite, deleteFile, Flush) is now protected by a single check point. * Fix TextInput bugs and refactor direct edit handling into UIScene base class The fake cursor character (_) used for SWFs without m_mcCaret was leaking into saved sign and anvil text. This happened because setLabel() with instant=false only updates the C++-side cache, deferring the Flash write to the next control tick. Any getLabel() call before that tick reads the old Flash value still containing the underscore. Fixed by passing instant=true in confirmDirectEdit, cancelDirectEdit, and the Enter key path inside tickDirectEdit, so the cleaned text hits Flash immediately. Mouse hover over TextInput controls (world name, anvil name, seed field) was not showing the yellow highlight border. The hover code used IggyPlayerSetFocusRS which sets Iggy's internal dispatch focus but does not trigger Flash's ChangeState callback, so no visual feedback appeared. Buttons worked fine because Iggy draws its own focus ring on them, but TextInput relies entirely on ChangeState(0) for the yellow border. Switched to SetFocusToElement which goes through the Flash-side SetFocus path, then immediately call setCaretVisible(false) to suppress the blinking caret that comes with focus. No visual flicker since rendering happens after both tickInput and scene tick complete. While direct editing, mouse hover was able to move focus away to other TextInputs on the same scene (most noticeably on the sign editor, where hovering a different line would steal focus from the line being typed). Added an isDirectEditBlocking() check in the hover path to skip focus changes when any input on the scene is actively being edited. The Done button in SignEntryMenu was unresponsive to mouse clicks during direct editing. The root cause is execution order: handleMouseClick runs before handleInput in the frame. The base handleMouseClick found the Done button and called handlePress, but handlePress bailed out because of the isDirectEditing guard. The click was marked consumed, so handleInput never saw it. Fixed by overriding handleMouseClick in SignEntryMenu to detect the Done button hit while editing and confirm + close directly. Added click-outside-to-deselect for anvil and world name text inputs. Both scenes previously required Enter to confirm the edit, which felt wrong. Now clicking anywhere outside the text field bounds confirms the current text, matching standard UI behavior. The anvil menu now updates the item name in real time while typing, like Java edition. Previously the name was only applied on Enter, so the repair cost display was stale until confirmation. The biggest change is structural: every scene that used direct editing (AnvilMenu, CreateWorldMenu, SignEntryMenu, LaunchMoreOptionsMenu, DebugCreateSchematic, DebugSetCamera) had its own copy of the same boilerplate -- tickDirectEdit loops in tick(), click-outside hit testing in handleMouseClick(), cooldown guard checks in handleInput/handlePress, and result dispatch with switch/if chains. This was around 200 lines of near-identical code scattered across 6 files, each with its own slight variations and its own bugs waiting to happen. Pulled all of it into UIScene with two virtual methods: getDirectEditInputs() where scenes register their text inputs, and onDirectEditFinished() where they handle confirmed/cancelled results. The base class tick() drives tickDirectEdit on all registered inputs, handleMouseClick() does the click-outside-to-deselect hit test generically using panel offsets, and isDirectEditBlocking() replaces all the inline cooldown checks. Scenes now just override those two methods and get everything for free. Also removed the m_activeDirectEditControl enum tracking from the debug scenes (DebugCreateSchematic, DebugSetCamera) since the base class handles lifecycle tracking through the controls themselves. * Remap scroll wheel to LEFT/RIGHT for horizontal controls The scroll wheel was always remapped to UP/DOWN, which is fine for vertical lists but useless on horizontal controls like sliders and the texture pack selector. Track whether the mouse is hovering a horizontal control during the hover hit-test (new bool m_bMouseHoverHorizontalList, set for eTexturePackList and eSlider). When the flag is set, handleKeyPress emits LEFT/RIGHT instead of UP/DOWN for wheel events. TexturePackList is also now part of the mouse hover system with proper hit-testing, relative-coord SetTouchFocus and GetRealHeight for accurate bounds. * Guard setCaretVisible and setCaretIndex against null movie tickDirectEdit calls into Iggy every tick without checking if the movie is still valid, which crashes inside iggy_w64.dll when the Flash movie gets unloaded or isn't ready yet. * Fix creative inventory scroll for both mouse wheel and controller The mouse scroll wheel was not working in the creative inventory at all. UIController remaps wheel input from OTHER_STICK to UP/DOWN for KBM users, but the base container menu handler consumed UP/DOWN for grid navigation before it could reach the creative menu's page scrolling logic in handleAdditionalKeyPress. Fixed by detecting scroll wheel input on UP/DOWN in the base handler and forwarding it as OTHER_STICK to handleAdditionalKeyPress instead. Also fixed the controller right stick scrolling way too fast: it was jumping TabSpec::rows (5) rows per tick at 100ms repeat rate, which blew through the entire item list almost instantly. Reduced to 1 row per tick so scrolling feels controlled on both input methods. * Fix split-screen world rendering aspect ratio gluPerspective was hardcoded to use g_iAspectRatio (always 16:9) instead of the aspect parameter from getFovAndAspect, which adjusts for split-screen viewports. The 3D world was horizontally stretched in top/bottom split because the projection used 16:9 while the viewport was 32:9. * Split-screen UI system with full ultrawide and multi-aspect-ratio support Screen resolution is now auto-detected from the monitor at startup instead of being hardcoded to 1920x1080. This fixes rendering on ultrawide (21:9), super-ultrawide (32:9), 16:10, and any other aspect ratio -- both in singleplayer and split-screen multiplayer. The 3D world renders at native resolution so the full monitor is used. Flash UI is 16:9-fitted and centered inside each viewport, pillarboxed on wide displays and letterboxed on tall ones. Logical game dimensions (used for ortho projection and HUD layout) are computed proportionally from the real screen aspect ratio, fixing the stretched world projection and HUD that the old hardcoded 1280x720 caused on non-16:9 monitors. GameRenderer::ComputeViewportForPlayer uses the actual backbuffer size instead of the logical game size, which was causing split-screen viewports to be sized incorrectly. UIScene::render fits menus to 16:9 within each split viewport using GetViewportRect + Fit16x9, keeping inventory/crafting/options screens at their designed aspect ratio instead of stretching. Panorama and MenuBackground render at full viewport size with proper tile scaling so the background fills the entire area without gaps in vertical split and quadrant layouts. HUD tile rendering uses ComputeTileScale to uniformly scale the SWF and show the bottom portion (hotbar, hearts, hunger) in horizontal and quadrant splits. repositionHud passes visible SWF-space dimensions to ActionScript for proper element centering within each viewport. Chat and Tooltips overlays use ComputeTileScale and ComputeSplitContentOffset to anchor correctly to the bottom of each player's viewport tile. Container menus apply Fit16x9 to pointer coordinate mapping so the cursor tracks correctly in split-screen. getMouseToSWFScale moved out of the header into the .cpp. Mouse input in onMouseTick is gated to pad 0 since raw mouse deltas should only drive player 1. All shared viewport math lives in UISplitScreenHelpers.h: - GetViewportRect: origin and dimensions for any viewport type - Fit16x9: aspect-correct fitting with centering offsets - ComputeTileScale: uniform scale and Y-offset for tile rendering - ComputeSplitContentOffset: content centering for overlay components * Fix XUID assignment for split-screen local players Main's XUID refactor returned INVALID_XUID for pad != 0, which breaks split-screen because each local player needs a distinct identity for the save system and per-player inventory data. Now pad 1-3 get unique XUIDs derived from the legacy embedded base (base + iPad), same as the original console behavior. Only pad 0 uses the persistent uid.dat-backed XUID for networking. * Use persistent XUID for all pads in GetXUID All pads now get unique XUIDs derived from the persistent uid.dat value (base + iPad offset). This gives each split-screen player a globally unique identity that works for both local play and online multiplayer. The host legacy XUID override for save compatibility still happens in Minecraft.cpp after GetXUID is called, so old worlds are unaffected. * Split-screen networking, window resize, bitmap font fix, and multiplayer stability Adds the networking layer for non-host split-screen multiplayer, implements live window resize with swap chain recreation, fixes bitmap font scaling at small window sizes, and fixes several crash-causing bugs in the multiplayer stack (compression buffer overflow, TCP stream desync, chunk visibility race, CompressedTileStorage torn reads, reconnect stability). == Non-host split-screen multiplayer == Each split-screen pad on a non-host client opens its own TCP connection to the host. From the host's perspective each connection looks like a normal remote player (gets its own smallId, Socket, PlayerConnection). WinsockNetLayer: JoinSplitScreen(), CloseSplitScreenConnection(), SplitScreenRecvThreadProc, per-pad socket/thread/smallId tracking (s_splitScreenSocket[], s_splitScreenSmallId[], s_splitScreenRecvThread[]). GetLocalSocket() returns the correct TCP socket for a given local sender's smallId. GetSplitScreenSmallId() returns the host-assigned smallId for a pad. GameNetworkManager::CreateSocket: non-host path (localPlayer && !IsHost() && IsInGameplay()) calls JoinSplitScreen, sets the IQNet slot's smallId and resolvedXuid, creates a non-hostLocal Socket + ClientConnection, sends PreLoginPacket, registers via addPendingLocalConnection. PlatformNetworkManagerStub::RemoveLocalPlayerByUserIndex: implemented the formerly-empty stub. Calls NotifyPlayerLeaving, CloseSplitScreenConnection, and clears the IQNet slot fields so the pad can rejoin cleanly. SmallId pool: s_nextSmallId starts at XUSER_MAX_COUNT (4), reserving m_player[0-3] for local pads so remote players never collide. IQNetPlayer::SendData: non-host local senders now route through GetLocalSocket(m_smallId) instead of always using SendToSmallId. IQNet::GetLocalPlayerByUserIndex: rewritten. Pad 0 on non-host uses GetLocalSmallId() for direct lookup; pads 1-3 check m_player[padIdx]. C_4JProfile::IsSignedIn: pad 0 always returns true (was checking controller connection, which is unreliable on Win64). GetGamertag/GetDisplayName: for pads 1-3 with active local players, returns the pad-specific gamertag from IQNet::m_player instead of always returning the primary username. ClientConnection: isPrimaryConnection() (true on host or for the primary pad on non-host) guards relative-delta and world-modifying handlers to prevent double-processing of shared state: - Guarded: handleMoveEntity, handleMoveEntitySmall, handleChunkTilesUpdate, handleBlockRegionUpdate, handleTileUpdate, handleTakeItemEntity, handleSignUpdate, handleTileEntityData, handleTileEvent, handleTileDestruction, handleComplexItemData, handleLevelEvent, handleSoundEvent, handleParticleEvent, handleAddGlobalEntity. - handleSetEntityMotion: secondary connections only accept motion targeting their own local player (knockback). - handleExplosion: world modification (finalizeExplosion) guarded, per-player knockback unguarded. Added null check on localplayers[]. - Entity spawn/remove/teleport/data handlers left unguarded (putEntity is idempotent, absolute value setters). handleLogin: added else clause to set level when the dimension already exists (was leaving level NULL on reconnect). handleChunkVisibilityArea/handleChunkVisibility: added null check on level. handleContainerOpen: added null check on localplayers[m_userIndex]. == Reconnect stability == PendingConnection: duplicate XUID no longer rejects with eDisconnect_Banned. Instead it force-disconnects the stale old connection via stalePlayer->connection->disconnect(), queues the old smallId for recycling via queueSmallIdForRecycle(), then calls handleAcceptedLogin for the new connection. MinecraftServer: swapped tick order so players->tick() (disconnect queue) runs before connection->tick() (new logins). The old player is removed from PlayerList before the new LoginPacket's XUID check runs. PlayerList: PushFreeSmallId and ClearSocketForSmallId moved here from DoWork, called only after PlayerConnection::disconnect() completes and the read/write threads are dead. New queueSmallIdForRecycle() method lets PendingConnection push smallIds into m_smallIdsToClose, which PlayerList::tick() processes through closePlayerConnectionBySmallId() for deferred cleanup. Prevents a race where the old write thread could resolve getPlayer() to a recycled smallId's new connection and send stale packets on it. SocketInputStreamLocal::close() and SocketOutputStreamLocal::close() now actually clear their queues (std::swap with empty queue instead of calling .empty() which is a read-only no-op). ServerConnection::stop(): pending and players vectors are snapshot-copied before iterating (prevents iterator invalidation). Remote players receive a DisconnectPacket via disconnect(eDisconnect_Quitting) instead of raw close(). tick(): added else clause so flush() only runs on live connections. WinsockNetLayer::Shutdown(): accept thread stopped first (prevents new recv threads from spawning), then all recv threads are collected and waited on, then connections are closed and split-screen sockets cleaned up. Clears disconnect and free-pool vectors before deleting critical sections. WinsockNetLayer::JoinGame(): waits for old s_clientRecvThread to fully exit before creating a new TCP connection. Prevents the old recv thread from reading bytes off the new socket and desynchronizing the stream. == Compression buffer overflow == CompressLZXRLE and CompressRLE wrote RLE intermediate output into a fixed 100KB buffer with no bounds checking. Full chunk columns are ~160KB and the RLE step can expand 0xFF bytes to 2 bytes each, easily overflowing into rleDecompressBuf and heap metadata. This caused delayed crashes in unrelated code (Packet::readPacket, LevelRenderer::updateDirtyChunks) after the first autosave, since that's when full chunks get compressed. Fix: dynamic allocation when worst-case RLE output (SrcSize * 2) exceeds the static buffer. Static buffer still used for small inputs (zero overhead). CompressRLE: moved LeaveCriticalSection after dynamic buffer cleanup. DecompressLZXRLE: now checks zlib return value (was completely ignored). On failure, bails out immediately with *pDestSize = 0. Added RLE input bounds checking (pucIn >= pucEnd before reading count/data bytes) and output bounds checking (pucOut + count > pucOutEnd). Same bounds checks applied to DecompressRLE. == Stream desync (Connection write thread) == The write thread had two output paths to the same TCP socket: bufferedDos (5KB buffered stream) and direct sos->writeWithFlags(). Chunk data sent via queueSend() used the direct path with shouldDelay=true, while other packets used bufferedDos. If bufferedDos had unflushed bytes, the direct write arrived at the client first, reordering the TCP stream and producing bad packet ID crashes. Fix: flush bufferedDos immediately before every direct sos->writeWithFlags(). == Chunk visibility race (empty first chunk after 30s) == BlockRegionUpdatePacket (direct socket write via queueSend) could arrive at the client before ChunkVisibilityAreaPacket (buffered). The client called getChunk() on a chunk that didn't exist yet in the cache, got EmptyLevelChunk (whose setBlocksAndData is a no-op), and silently lost the block data. On superflat this left one invisible chunk; on normal worlds it crashed the renderer. Fix: handleBlockRegionUpdate calls dimensionLevel->setChunkVisible() for full-chunk BRUPs before writing data, making it independent of packet ordering. Added post-write verification logging. CompressedTileStorage race: get() reads indicesAndData twice without a lock. compress() can swap the pointer between reads, producing indices from the old buffer paired with data from the new buffer. Fix: snapshot indicesAndData into a local variable before deriving both pointers. Same snapshot pattern applied to getData() (non-Vita path), isRenderChunkEmpty(), getHighestNonEmptyY(), getAllocatedSize(), and write(). All methods now also guard against NULL snapshots. == Window resize == ResizeD3D() destroys the old swap chain, creates a new one at the target size, then patches InternalRenderManager members directly via memory offsets (0x20=swap chain, 0x28=RTV, 0x50=SRV, 0x98=DSV, 0x5138/0x513C= backbuffer width/height). Offset verification cross-checks known pointers (device at 0x10, swap chain at 0x20) before patching. Old RTV/SRV are intentionally leaked (orphaned with the old swap chain) to avoid fighting unknown ref holders in the precompiled RenderManager. The flow: Suspend RenderManager, ClearState+Flush, release views, gdraw_D3D11_PreReset, destroy old swap chain, create new swap chain via IDXGIFactory, patch offsets, recreate RTV/SRV/DSV, rebind render targets, update UIController (updateRenderTargets + updateScreenSize), gdraw_D3D11_PostReset + SetRendertargetSize, IggyFlushInstalledFonts, Resume, PostProcesser::Init. WM_SIZE handling defers resize during window drag (WM_ENTERSIZEMOVE/ WM_EXITSIZEMOVE). Immediate resizes (maximize, programmatic) call ResizeD3D directly. Removed the old UpdateAspectRatio() function. CleanupDevice() was leaking g_pDepthStencilView and g_pDepthStencilBuffer. InitDevice: swap chain BufferUsage now includes DXGI_USAGE_SHADER_INPUT (needed for the SRV created from the backbuffer for CaptureThumbnail). New globals: g_rScreenWidth/g_rScreenHeight (real window dimensions, updated on resize) vs g_iScreenWidth/g_iScreenHeight (fixed logical resolution, stays 1920x1080). ComputeViewportForPlayer and getFovAndAspect now use g_rScreenWidth/ g_rScreenHeight instead of the fixed startup values, so 3D perspective and split-screen viewports adapt to window size. Main loop: rendering skipped when window is minimized (IsIconic check) to avoid 100% GPU usage on a hidden swap chain. Windows64_UIController: new updateRenderTargets(rtv, dsv) method updates cached D3D pointers used by gdraw_D3D11_SetTileOrigin every frame. UIController.h: new inline updateScreenSize(w, h) sets m_fScreenWidth/ m_fScreenHeight so all downstream UI code picks up the new size. == Bitmap font scaling == At small window sizes, dynamic text (scrollable list items, HowToPlay pages) showed overlapping characters. Static SWF text was unaffected because it uses embedded vector glyphs. Root cause in UIBitmapFont.cpp GetGlyphBitmap: when display scale is smaller than the bitmap's native scale (pixel_scale < truePixelScale, glyphScale stays at 1), Iggy displayed the glyph at native 1:1 pixel size but advanced the cursor by the smaller display-scale amount. At intermediate window sizes (e.g. 1678x756, scale factor ~0.7), a second bug appeared: some SWF font sizes produced pixel_scale just above truePixelScale (13 for Mojangles_11) while others fell just below, splitting glyphs across the small-display and normal cache branches. The normal branch cached all glyphs in a single [truePixelScale, 99] range, so the first glyph cached set pixel_scale_correct for every subsequent request regardless of font size. Different font sizes then got scaled by wrong ratios (e.g. 18.9/13.3 = 1.42x with point sampling), producing visibly inconsistent letter sizes. This only happened at specific window sizes where the display scale put some fonts above and others below the truePixelScale boundary. Full 1080p and very small windows were unaffected because all fonts landed in the same branch. Fix: on _WINDOWS64, always use pixel_scale_correct = truePixelScale so every cache entry is consistent regardless of which font size creates it first. Two cache ranges: downscale (pixel_scale < truePixelScale) uses bilinear for smooth reduction, upscale uses point_sample for crisp pixel-art rendering. At most two cache entries per glyph. The console code path (fixed resolution, integer-multiple scaling) is preserved behind #else. UIScene.cpp loadMovie: always load 1080.swf on _WINDOWS64 regardless of window size. The old height-based selection could pick 480 or 720 variants which either crashed or loaded the wrong skin library (skinHD.swf vs skin.swf). Display size is now set via Fit16x9 BEFORE the init tick so Iggy's ActionScript text field creation sees the same scale that render() will use. IggyFlushInstalledFonts() called after init tick to clear stale glyph cache entries from previous scenes. Font.cpp addCharacterQuad/renderCharacter: yOff was computed with m_charWidth instead of m_charHeight, producing wrong texture coordinates for non-square glyph cells. This is the world-rendering font (chat, signs, name tags), not the Iggy UI font. == XUID generation == Split-screen pad XUIDs derived by hashing baseXuid + iPad through Mix64 (DeriveXuidForPad in Windows64_Xuid.h) instead of simple addition. Pad 0 returns the base XUID unchanged for save compatibility. Includes validity fallbacks if the hash produces an invalid XUID. (Suggested by rtm516) == Misc == Packet::readPacket: thread-local ring buffer tracks last 8 good packet IDs. On bad packet ID, dumps the history plus next 32 bytes of stream for diagnosing TCP desynchronization. PendingConnection/PlayerList: debug logging for the reconnect flow (duplicate XUID handling, force-disconnect, handleAcceptedLogin, placeNewPlayer with smallId/entityId/dimension). ClientConnection::handleBlockRegionUpdate: warning log when a full chunk arrives with ys==0 (empty full chunk, data loss indicator). == Known issues / future work == SendOnSocket global lock (WinsockNetLayer.cpp): s_sendLock is a single CriticalSection serializing ALL TCP sends across ALL connections. If one client's send() blocks (TCP window full, slow network), every other write thread stalls — no data flows to any player until the slow send completes. Each PlayerConnection has its own write thread, so with 8+ players one slow client can cause latency spikes or timeout disconnects for healthy players. Fix: replace s_sendLock with per-socket locks indexed by smallId. The lock only needs to prevent header+payload interleaving on the SAME socket; sends to different sockets are independent. Deferred to a separate PR to keep this one focused. Textures::releaseTexture: early return for id <= 0, checks TextureGetTexture(id) != NULL before calling glDeleteTextures. Prevents crashes on stale texture IDs after RenderManager reset. UIController TextureSubstitutionDestroyCallback: null guard on Minecraft::GetInstance() and mc->textures before calling releaseTexture. Prevents crash during shutdown. StringTable: removed __debugbreak() on language load failure in debug builds.
4802 lines
123 KiB
C++
4802 lines
123 KiB
C++
#include "stdafx.h"
|
|
#include "System.h"
|
|
#include "BasicTypeContainers.h"
|
|
#include "File.h"
|
|
#include "ProgressListener.h"
|
|
#include "net.minecraft.h"
|
|
#include "net.minecraft.world.h"
|
|
#include "net.minecraft.world.entity.ai.village.h"
|
|
#include "net.minecraft.world.entity.h"
|
|
#include "net.minecraft.world.entity.global.h"
|
|
#include "net.minecraft.world.entity.player.h"
|
|
#include "net.minecraft.world.level.biome.h"
|
|
#include "net.minecraft.world.level.chunk.h"
|
|
#include "net.minecraft.world.level.dimension.h"
|
|
#include "net.minecraft.world.level.tile.h"
|
|
#include "net.minecraft.world.level.tile.entity.h"
|
|
#include "net.minecraft.world.level.h"
|
|
#include "net.minecraft.world.level.levelgen.h"
|
|
#include "net.minecraft.world.level.storage.h"
|
|
#include "net.minecraft.world.level.pathfinder.h"
|
|
#include "net.minecraft.world.level.redstone.h"
|
|
#include "net.minecraft.world.scores.h"
|
|
#include "net.minecraft.world.phys.h"
|
|
#include "Explosion.h"
|
|
#include "LevelListener.h"
|
|
#include "Level.h"
|
|
#include "ThreadName.h"
|
|
#include "WeighedRandom.h"
|
|
|
|
#include "ConsoleSaveFile.h"
|
|
#include <xuiapp.h>
|
|
#include "..\Minecraft.Client\Minecraft.h"
|
|
#include "..\Minecraft.Client\LevelRenderer.h"
|
|
#include "SoundTypes.h"
|
|
#include "SparseLightStorage.h"
|
|
#include "..\Minecraft.Client\Textures.h"
|
|
#include "..\Minecraft.Client\TexturePackRepository.h"
|
|
#include "..\Minecraft.Client\DLCTexturePack.h"
|
|
#include "..\Minecraft.Client\Common\DLC\DLCPack.h"
|
|
#include "..\Minecraft.Client\PS3\PS3Extras\ShutdownManager.h"
|
|
#include "..\Minecraft.Client\MinecraftServer.h"
|
|
|
|
|
|
DWORD Level::tlsIdx = TlsAlloc();
|
|
DWORD Level::tlsIdxLightCache = TlsAlloc();
|
|
|
|
// 4J : WESTY : Added for time played stats.
|
|
#include "net.minecraft.stats.h"
|
|
|
|
// 4J - Caching of lighting data added. This is implemented as a 16x16x16 cache of ints (ie 16K storage in total). The index of the element to be used in the array is determined by the lower
|
|
// four bits of each x/y/z position, and the upper 7/4/7 bits of the x/y/z positions are stored within the element itself along with the cached values etc. The cache can be enabled per thread by
|
|
// calling enableLightingCache, otherwise standard non-cached accesses are performed. General method for using caching if enabled on a thread is:
|
|
// (1) Call initCache, this invalidates any previous data in the cache
|
|
// (2) Use setBrightnessCached, getBrightnessCached, getEmissionCached, getBlockingCached methods to get and set data
|
|
// (3) Call flushCache, which writes through any dirty values in cache
|
|
|
|
#ifdef _LARGE_WORLDS
|
|
// Packing for cache entries in large worlds is as follows ( 64 bits per entry)
|
|
// Add the extra x and z data into the top 32 bits, to keep all the masks and code for everything else the same
|
|
// xxxxxxxxxxxxxxxxzzzzzzzzzzzzzzzzWEBLllllbbbbeeeexxxxxxyyyyzzzzzz
|
|
//
|
|
// xxxxxx - middle 6 bits of x position
|
|
// yyyy - top 4 bits of y position
|
|
// zzzzzz - middle 6 bits of z position
|
|
// eeee - light emission
|
|
// bbbb - light blocking
|
|
// llll - light level
|
|
// L - light value valid
|
|
// B - blocking value valid
|
|
// E - emission value valid
|
|
// W - lighting value requires write
|
|
// xxxxxxxxxxxxxxxx - top 16 bits of x position
|
|
// zzzzzzzzzzzzzzzz - top 16 bits of z position
|
|
#else
|
|
// Packing for cache entries is as follows ( 32 bits per entry)
|
|
// WEBLllllbbbbeeeexxxxxxyyyyzzzzzz
|
|
//
|
|
// xxxxxx - top 6 bits of x position
|
|
// yyyy - top 4 bits of y position
|
|
// zzzzzz - top 6 bits of z position
|
|
// eeee - light emission
|
|
// bbbb - light blocking
|
|
// llll - light level
|
|
// L - light value valid
|
|
// B - blocking value valid
|
|
// E - emission value valid
|
|
// W - lighting value requires write
|
|
#endif
|
|
|
|
|
|
void Level::enableLightingCache()
|
|
{
|
|
// Allocate 16K (needs 32K for large worlds) for a 16x16x16x4 byte cache of results, plus 128K required for toCheck array. Rounding up to 256 to keep as multiple of alignement - aligning to 128K boundary for possible cache locking.
|
|
void *cache = (unsigned char *)XPhysicalAlloc(256 * 1024, MAXULONG_PTR, 128 * 1024, PAGE_READWRITE | MEM_LARGE_PAGES);
|
|
TlsSetValue(tlsIdxLightCache,cache);
|
|
}
|
|
|
|
void Level::destroyLightingCache()
|
|
{
|
|
lightCache_t *cache = (lightCache_t *)TlsGetValue(tlsIdxLightCache);
|
|
XPhysicalFree(cache);
|
|
}
|
|
|
|
inline int GetIndex(int x, int y, int z)
|
|
{
|
|
return ( ( x & 15 ) << 8 ) | ( ( y & 15 ) << 4 ) | ( z & 15 );
|
|
}
|
|
|
|
void Level::initCachePartial(lightCache_t *cache, int xc, int yc, int zc)
|
|
{
|
|
cachewritten = false;
|
|
if( cache == NULL ) return;
|
|
|
|
int idx;
|
|
if( !(yc & 0xffffff00) )
|
|
{
|
|
idx = GetIndex(xc, yc, zc);
|
|
cache[idx] = 0;
|
|
idx = GetIndex(xc - 1, yc, zc);
|
|
cache[idx] = 0;
|
|
idx = GetIndex(xc + 1, yc, zc);
|
|
cache[idx] = 0;
|
|
idx = GetIndex(xc, yc, zc - 1);
|
|
cache[idx] = 0;
|
|
idx = GetIndex(xc, yc, zc + 1);
|
|
cache[idx] = 0;
|
|
}
|
|
if( !((yc-1) & 0xffffff00) )
|
|
{
|
|
idx = GetIndex(xc, yc - 1, zc);
|
|
cache[idx] = 0;
|
|
}
|
|
if( !((yc+1) & 0xffffff00) )
|
|
{
|
|
idx = GetIndex(xc, yc + 1, zc);
|
|
cache[idx] = 0;
|
|
}
|
|
}
|
|
|
|
void Level::initCacheComplete(lightCache_t *cache, int xc, int yc, int zc)
|
|
{
|
|
lightCache_t old[7];
|
|
if( !(yc & 0xffffff00) )
|
|
{
|
|
old[0] = cache[GetIndex(xc, yc, zc)];
|
|
old[1] = cache[GetIndex(xc - 1, yc, zc)];
|
|
old[2] = cache[GetIndex(xc + 1, yc, zc)];
|
|
old[5] = cache[GetIndex(xc, yc, zc - 1)];
|
|
old[6] = cache[GetIndex(xc, yc, zc + 1)];
|
|
}
|
|
if( !((yc-1) & 0xffffff00) )
|
|
{
|
|
old[3] = cache[GetIndex(xc, yc - 1, zc)];
|
|
}
|
|
if( !((yc+1) & 0xffffff00) )
|
|
{
|
|
old[4] = cache[GetIndex(xc, yc + 1, zc)];
|
|
}
|
|
|
|
XMemSet128(cache,0,16*16*16*sizeof(lightCache_t));
|
|
|
|
if( !(yc & 0xffffff00) )
|
|
{
|
|
cache[GetIndex(xc, yc, zc)] = old[0];
|
|
cache[GetIndex(xc - 1, yc, zc)] = old[1];
|
|
cache[GetIndex(xc + 1, yc, zc)] = old[2];
|
|
cache[GetIndex(xc, yc, zc - 1)] = old[5];
|
|
cache[GetIndex(xc, yc, zc + 1)] = old[6];
|
|
}
|
|
if( !((yc-1) & 0xffffff00) )
|
|
{
|
|
cache[GetIndex(xc, yc - 1, zc)] = old[3];
|
|
}
|
|
if( !((yc+1) & 0xffffff00) )
|
|
{
|
|
cache[GetIndex(xc, yc + 1, zc)] = old[4];
|
|
}
|
|
}
|
|
|
|
// Set a brightness value, going through the cache if enabled for this thread
|
|
void inline Level::setBrightnessCached(lightCache_t *cache, uint64_t *cacheUse, LightLayer::variety layer, int x, int y, int z, int brightness)
|
|
{
|
|
if( cache == NULL )
|
|
{
|
|
setBrightness(layer, x, y, z, brightness, true);
|
|
return;
|
|
}
|
|
if( y & 0xffffff00 ) return; // Eliminate -ve ys and values > 255
|
|
|
|
int idx = ( ( x & 15 ) << 8 ) |
|
|
( ( y & 15 ) << 4 ) |
|
|
( z & 15 );
|
|
lightCache_t posbits = ( ( x & 0x3f0 ) << 6 ) |
|
|
( ( y & 0x0f0 ) << 2 ) |
|
|
( ( z & 0x3f0 ) >> 4 );
|
|
#ifdef _LARGE_WORLDS
|
|
// Add in the higher bits for x and z
|
|
posbits |= ( ( ((uint64_t)x) & 0x3FFFC00L) << 38) |
|
|
( ( ((uint64_t)z) & 0x3FFFC00L) << 22);
|
|
#endif
|
|
|
|
lightCache_t cacheValue = cache[idx];
|
|
|
|
// If this cache entry doesn't refer to the same thing...
|
|
if( ( cacheValue & POSITION_MASK ) != posbits )
|
|
{
|
|
/// and it has been written to...
|
|
if( cacheValue & LIGHTING_WRITEBACK )
|
|
{
|
|
// Then we need to flush
|
|
int val = ( cacheValue >> LIGHTING_SHIFT ) & 15;
|
|
int xx = ( (cacheValue >> 6 ) & 0x3f0 ) | ( x & 15 );
|
|
#ifdef _LARGE_WORLDS
|
|
xx |= ( (cacheValue >> 38) & 0x3FFFC00);
|
|
xx = ( xx << 6 ) >> 6; // sign extend
|
|
#else
|
|
xx = ( xx << 22 ) >> 22; // sign extend
|
|
#endif
|
|
int yy = ( (cacheValue >> 2 ) & 0x0f0 ) | ( y & 15 );
|
|
int zz = ( (cacheValue << 4 ) & 0x3f0 ) | ( z & 15 );
|
|
#ifdef _LARGE_WORLDS
|
|
zz |= ( (cacheValue >> 22) & 0x3FFFC00);
|
|
zz = ( zz << 6 ) >> 6; // sign extend
|
|
#else
|
|
zz = ( zz << 22 ) >> 22; // sign extend
|
|
#endif
|
|
setBrightness(layer, xx, yy, zz, val, true);
|
|
}
|
|
cacheValue = posbits;
|
|
}
|
|
|
|
// Just written to it, so value is valid & requires writing back
|
|
cacheValue &= ~(15 << LIGHTING_SHIFT );
|
|
cacheValue |= brightness << LIGHTING_SHIFT;
|
|
cacheValue |= ( LIGHTING_WRITEBACK | LIGHTING_VALID );
|
|
|
|
// cacheUse has a single bit for each x, y and z to say whether anything with that x, y or z has been written to
|
|
(*cacheUse) |= ( ( 1LL << ( x & 15 ) ) | ( 0x10000LL << ( y & 15 ) ) | ( 0x100000000LL << ( z & 15 ) ) );
|
|
|
|
cache[idx] = cacheValue;
|
|
}
|
|
|
|
// Get a brightness value, going through the cache if enabled for this thread
|
|
inline int Level::getBrightnessCached(lightCache_t *cache, LightLayer::variety layer, int x, int y, int z)
|
|
{
|
|
if( cache == NULL ) return getBrightness(layer, x, y, z);
|
|
if( y & 0xffffff00 ) return getBrightness(layer, x, y, z); // Fall back on original method for out-of-bounds y
|
|
|
|
int idx = ( ( x & 15 ) << 8 ) |
|
|
( ( y & 15 ) << 4 ) |
|
|
( z & 15 );
|
|
lightCache_t posbits = ( ( x & 0x3f0 ) << 6 ) |
|
|
( ( y & 0x0f0 ) << 2 ) |
|
|
( ( z & 0x3f0 ) >> 4 );
|
|
#ifdef _LARGE_WORLDS
|
|
// Add in the higher bits for x and z
|
|
posbits |= ( ( ((uint64_t)x) & 0x3FFFC00L) << 38) |
|
|
( ( ((uint64_t)z) & 0x3FFFC00L) << 22);
|
|
#endif
|
|
|
|
lightCache_t cacheValue = cache[idx];
|
|
|
|
if( ( cacheValue & POSITION_MASK ) != posbits )
|
|
{
|
|
// Position differs - need to evict this cache entry
|
|
if( cacheValue & LIGHTING_WRITEBACK )
|
|
{
|
|
// Then we need to flush
|
|
int val = ( cacheValue >> LIGHTING_SHIFT ) & 15;
|
|
int xx = ( (cacheValue >> 6 ) & 0x3f0 ) | ( x & 15 );
|
|
#ifdef _LARGE_WORLDS
|
|
xx |= ( (cacheValue >> 38) & 0x3FFFC00);
|
|
xx = ( xx << 6 ) >> 6; // sign extend
|
|
#else
|
|
xx = ( xx << 22 ) >> 22; // sign extend
|
|
#endif
|
|
int yy = ( (cacheValue >> 2 ) & 0x0f0 ) | ( y & 15 );
|
|
int zz = ( (cacheValue << 4 ) & 0x3f0 ) | ( z & 15 );
|
|
#ifdef _LARGE_WORLDS
|
|
zz |= ( (cacheValue >> 22) & 0x3FFFC00);
|
|
zz = ( zz << 6 ) >> 6; // sign extend
|
|
#else
|
|
zz = ( zz << 22 ) >> 22; // sign extend
|
|
#endif
|
|
setBrightness(layer, xx, yy, zz, val, true);
|
|
}
|
|
cacheValue = posbits | LIGHTING_VALID;
|
|
int val = getBrightness(layer, x, y, z);
|
|
cacheValue |= val << LIGHTING_SHIFT;
|
|
}
|
|
else
|
|
{
|
|
// The position matches - will incurr a read miss if the lighting value isn't valid
|
|
if( ( cacheValue & LIGHTING_VALID ) == 0 )
|
|
{
|
|
int val = getBrightness(layer, x, y, z);
|
|
cacheValue |= val << LIGHTING_SHIFT;
|
|
cacheValue |= LIGHTING_VALID;
|
|
}
|
|
else
|
|
{
|
|
// All valid - just return value
|
|
return ( cacheValue >> LIGHTING_SHIFT ) & 15;
|
|
}
|
|
}
|
|
|
|
cache[idx] = cacheValue;
|
|
return ( cacheValue >> LIGHTING_SHIFT ) & 15;
|
|
}
|
|
|
|
// Get a block emission value, going through the cache if enabled for this thread
|
|
inline int Level::getEmissionCached(lightCache_t *cache, int ct, int x, int y, int z)
|
|
{
|
|
if( cache == NULL ) return Tile::lightEmission[ct];
|
|
|
|
int idx = ( ( x & 15 ) << 8 ) |
|
|
( ( y & 15 ) << 4 ) |
|
|
( z & 15 );
|
|
lightCache_t posbits = ( ( x & 0x3f0 ) << 6 ) |
|
|
( ( y & 0x0f0 ) << 2 ) |
|
|
( ( z & 0x3f0 ) >> 4 );
|
|
#ifdef _LARGE_WORLDS
|
|
// Add in the higher bits for x and z
|
|
posbits |= ( ( ((uint64_t)x) & 0x3FFFC00) << 38) |
|
|
( ( ((uint64_t)z) & 0x3FFFC00) << 22);
|
|
#endif
|
|
|
|
lightCache_t cacheValue = cache[idx];
|
|
|
|
if( ( cacheValue & POSITION_MASK ) != posbits )
|
|
{
|
|
// Position differs - need to evict this cache entry
|
|
if( cacheValue & LIGHTING_WRITEBACK )
|
|
{
|
|
// Then we need to flush
|
|
int val = ( cacheValue >> LIGHTING_SHIFT ) & 15;
|
|
int xx = ( (cacheValue >> 6 ) & 0x3f0 ) | ( x & 15 );
|
|
#ifdef _LARGE_WORLDS
|
|
xx |= ( (cacheValue >> 38) & 0x3FFFC00);
|
|
xx = ( xx << 6 ) >> 6; // sign extend
|
|
#else
|
|
xx = ( xx << 22 ) >> 22; // sign extend
|
|
#endif
|
|
int yy = ( (cacheValue >> 2 ) & 0x0f0 ) | ( y & 15 );
|
|
int zz = ( (cacheValue << 4 ) & 0x3f0 ) | ( z & 15 );
|
|
#ifdef _LARGE_WORLDS
|
|
zz |= ( (cacheValue >> 22) & 0x3FFFC00);
|
|
zz = ( zz << 6 ) >> 6; // sign extend
|
|
#else
|
|
zz = ( zz << 22 ) >> 22; // sign extend
|
|
#endif
|
|
setBrightness(LightLayer::Block, xx, yy, zz, val, true);
|
|
}
|
|
|
|
// Update both emission & blocking values whilst we are here
|
|
cacheValue = posbits | EMISSION_VALID | BLOCKING_VALID;
|
|
int t = getTile(x,y,z);
|
|
cacheValue |= ( Tile::lightEmission[t] & 15 ) << EMISSION_SHIFT;
|
|
cacheValue |= ( Tile::lightBlock[t] & 15 ) << BLOCKING_SHIFT;
|
|
}
|
|
else
|
|
{
|
|
// The position matches - will incurr a read miss if the lighting value isn't valid
|
|
if( ( cacheValue & EMISSION_VALID ) == 0 )
|
|
{
|
|
// Update both emission & blocking values whilst we are here
|
|
cacheValue |= EMISSION_VALID | BLOCKING_VALID;
|
|
int t = getTile(x,y,z);
|
|
cacheValue |= ( Tile::lightEmission[t] & 15 ) << EMISSION_SHIFT;
|
|
cacheValue |= ( Tile::lightBlock[t] & 15 ) << BLOCKING_SHIFT;
|
|
}
|
|
else
|
|
{
|
|
// All valid - just return value
|
|
return ( cacheValue >> EMISSION_SHIFT ) & 15;
|
|
}
|
|
}
|
|
cache[idx] = cacheValue;
|
|
return ( cacheValue >> EMISSION_SHIFT ) & 15;
|
|
}
|
|
|
|
// Get a tile light blocking value, going through cache if enabled for this thread
|
|
inline int Level::getBlockingCached(lightCache_t *cache, LightLayer::variety layer, int *ct, int x, int y, int z)
|
|
{
|
|
if( cache == NULL )
|
|
{
|
|
int t = getTile(x,y,z);
|
|
if(ct) *ct = t;
|
|
return Tile::lightBlock[t];
|
|
}
|
|
|
|
int idx = ( ( x & 15 ) << 8 ) |
|
|
( ( y & 15 ) << 4 ) |
|
|
( z & 15 );
|
|
lightCache_t posbits = ( ( x & 0x3f0 ) << 6 ) |
|
|
( ( y & 0x0f0 ) << 2 ) |
|
|
( ( z & 0x3f0 ) >> 4 );
|
|
#ifdef _LARGE_WORLDS
|
|
// Add in the higher bits for x and z
|
|
posbits |= ( ( ((uint64_t)x) & 0x3FFFC00L) << 38) |
|
|
( ( ((uint64_t)z) & 0x3FFFC00L) << 22);
|
|
#endif
|
|
|
|
lightCache_t cacheValue = cache[idx];
|
|
|
|
if( ( cacheValue & POSITION_MASK ) != posbits )
|
|
{
|
|
// Position differs - need to evict this cache entry
|
|
if( cacheValue & LIGHTING_WRITEBACK )
|
|
{
|
|
// Then we need to flush
|
|
int val = ( cacheValue >> LIGHTING_SHIFT ) & 15;
|
|
int xx = ( (cacheValue >> 6 ) & 0x3f0 ) | ( x & 15 );
|
|
#ifdef _LARGE_WORLDS
|
|
xx |= ( (cacheValue >> 38) & 0x3FFFC00);
|
|
xx = ( xx << 6 ) >> 6; // sign extend
|
|
#else
|
|
xx = ( xx << 22 ) >> 22; // sign extend
|
|
#endif
|
|
int yy = ( (cacheValue >> 2 ) & 0x0f0 ) | ( y & 15 );
|
|
int zz = ( (cacheValue << 4 ) & 0x3f0 ) | ( z & 15 );
|
|
#ifdef _LARGE_WORLDS
|
|
zz |= ( (cacheValue >> 22) & 0x3FFFC00);
|
|
zz = ( zz << 6 ) >> 6; // sign extend
|
|
#else
|
|
zz = ( zz << 22 ) >> 22; // sign extend
|
|
#endif
|
|
setBrightness(layer, xx, yy, zz, val, true);
|
|
}
|
|
|
|
// Update both emission & blocking values whilst we are here
|
|
cacheValue = posbits | EMISSION_VALID | BLOCKING_VALID;
|
|
int t = getTile(x,y,z);
|
|
cacheValue |= ( Tile::lightEmission[t] & 15 ) << EMISSION_SHIFT;
|
|
cacheValue |= ( Tile::lightBlock[t] & 15 ) << BLOCKING_SHIFT;
|
|
}
|
|
else
|
|
{
|
|
// The position matches - will incurr a read miss if the lighting value isn't valid
|
|
if( ( cacheValue & EMISSION_VALID ) == 0 )
|
|
{
|
|
// Update both emission & blocking values whilst we are here
|
|
cacheValue |= EMISSION_VALID | BLOCKING_VALID;
|
|
int t = getTile(x,y,z);
|
|
cacheValue |= ( Tile::lightEmission[t] & 15 ) << EMISSION_SHIFT;
|
|
cacheValue |= ( Tile::lightBlock[t] & 15 ) << BLOCKING_SHIFT;
|
|
}
|
|
else
|
|
{
|
|
// All valid - just return value
|
|
return ( cacheValue >> BLOCKING_SHIFT ) & 15;
|
|
}
|
|
}
|
|
|
|
cache[idx] = cacheValue;
|
|
return ( cacheValue >> BLOCKING_SHIFT ) & 15;
|
|
}
|
|
|
|
// Write back any dirty entries in the lighting cache. Also calls the setTilesDirty method on the region which has been updated during this lighting update, since
|
|
// this hasn't been updated (for client threads) for each individual lighting update as would have been the case with the non-cached lighting. There's two reasons for this
|
|
// (1) it's more efficient, since we aren't doing so many individual calls to the level listener to let the renderer know what has been updated
|
|
// (2) it lets the lighting actually complete before we get any visual representation of the update, otherwise we end up seeing some strange partial updates
|
|
void Level::flushCache(lightCache_t *cache, uint64_t cacheUse, LightLayer::variety layer)
|
|
{
|
|
// cacheUse has a single bit for each x, y and z to say whether anything with that x, y or z has been written to
|
|
if( cacheUse == 0 ) return;
|
|
if( cache )
|
|
{
|
|
lightCache_t *pcache = cache;
|
|
for( int x = 0; x < 16; x++ )
|
|
{
|
|
if( ( cacheUse & ( 1LL << x ) ) == 0 )
|
|
{
|
|
pcache += 16 * 16;
|
|
continue;
|
|
}
|
|
for( int y = 0; y < 16; y++ )
|
|
{
|
|
if( ( cacheUse & ( 0x10000LL << y ) ) == 0 )
|
|
{
|
|
pcache += 16;
|
|
continue;
|
|
}
|
|
for( int z = 0; z < 16; z++ )
|
|
{
|
|
if( ( cacheUse & ( 0x100000000LL << z ) ) == 0 )
|
|
{
|
|
pcache++;
|
|
continue;
|
|
}
|
|
lightCache_t cacheValue = *pcache++;
|
|
if( cacheValue & LIGHTING_WRITEBACK )
|
|
{
|
|
int val = ( cacheValue >> LIGHTING_SHIFT ) & 15;
|
|
int xx = ( (cacheValue >> 6 ) & 0x3f0 ) | ( x & 15 );
|
|
#ifdef _LARGE_WORLDS
|
|
xx |= ( (cacheValue >> 38) & 0x3FFFC00);
|
|
xx = ( xx << 6 ) >> 6; // sign extend
|
|
#else
|
|
xx = ( xx << 22 ) >> 22; // sign extend
|
|
#endif
|
|
int yy = ( (cacheValue >> 2 ) & 0x0f0 ) | ( y & 15 );
|
|
int zz = ( (cacheValue << 4 ) & 0x3f0 ) | ( z & 15 );
|
|
#ifdef _LARGE_WORLDS
|
|
zz |= ( (cacheValue >> 22) & 0x3FFFC00);
|
|
zz = ( zz << 6 ) >> 6; // sign extend
|
|
#else
|
|
zz = ( zz << 22 ) >> 22; // sign extend
|
|
#endif
|
|
setBrightness(layer, xx, yy, zz, val, true);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// For client side (which has the renderer attached) we haven't been updating with each individual update, but have been gathering them up.
|
|
// Let the renderer know now the region that has been updated.
|
|
if( isClientSide && cachewritten)
|
|
{
|
|
setTilesDirty(cacheminx, cacheminy, cacheminz,cachemaxx,cachemaxy,cachemaxz);
|
|
}
|
|
}
|
|
|
|
// 4J - added following 2 functions to move instaBuild flag from being a class member, to TLS
|
|
bool Level::getInstaTick()
|
|
{
|
|
return ((size_t)TlsGetValue(tlsIdx)) != 0;
|
|
}
|
|
|
|
void Level::setInstaTick(bool enable)
|
|
{
|
|
void *value = 0;
|
|
if( enable ) value = (void *)1;
|
|
TlsSetValue(tlsIdx,value);
|
|
}
|
|
|
|
// 4J - added
|
|
bool Level::hasEntitiesToRemove()
|
|
{
|
|
return !entitiesToRemove.empty();
|
|
}
|
|
|
|
void Level::_init()
|
|
{
|
|
cloudColor = 0xffffff;
|
|
|
|
skyDarken = 0;
|
|
|
|
randValue = (new Random())->nextInt();
|
|
|
|
addend = 1013904223;
|
|
|
|
oRainLevel = rainLevel = 0.0f;
|
|
|
|
oThunderLevel = thunderLevel = 0.0f;
|
|
|
|
skyFlashTime = 0;
|
|
|
|
difficulty = 0;
|
|
|
|
random = new Random();
|
|
isNew = false;
|
|
|
|
dimension = NULL;
|
|
|
|
chunkSource = NULL;
|
|
|
|
levelStorage = nullptr;
|
|
|
|
levelData = NULL;
|
|
|
|
isFindingSpawn = false;
|
|
|
|
savedDataStorage = NULL;
|
|
|
|
spawnEnemies = true;
|
|
|
|
spawnFriendlies = true;
|
|
|
|
delayUntilNextMoodSound = random->nextInt(20 * 60 * 10);
|
|
|
|
isClientSide = false;
|
|
|
|
InitializeCriticalSection(&m_entitiesCS);
|
|
InitializeCriticalSection(&m_tileEntityListCS);
|
|
|
|
updatingTileEntities = false;
|
|
|
|
villageSiege = new VillageSiege(this);
|
|
scoreboard = new Scoreboard();
|
|
|
|
toCheckLevel = new int[ 32 * 32 * 32]; // 4J - brought forward from 1.8.2
|
|
InitializeCriticalSectionAndSpinCount(&m_checkLightCS, 5120); // 4J - added for 1.8.2 lighting
|
|
|
|
// 4J Added
|
|
m_bDisableAddNewTileEntities = false;
|
|
m_iHighestY=-1000;
|
|
m_unsavedChunkCount = 0;
|
|
}
|
|
|
|
// 4J - brought forward from 1.8.2
|
|
Biome *Level::getBiome(int x, int z)
|
|
{
|
|
if (hasChunkAt(x, 0, z))
|
|
{
|
|
LevelChunk *lc = getChunkAt(x, z);
|
|
if (lc != NULL)
|
|
{
|
|
// Water chunks at the edge of the world return NULL for their biome as they can't store it, so should fall back on the normal method below
|
|
Biome *biome = lc->getBiome(x & 0xf, z & 0xf, dimension->biomeSource);
|
|
if( biome ) return biome;
|
|
}
|
|
}
|
|
return dimension->biomeSource->getBiome(x, z);
|
|
}
|
|
|
|
BiomeSource *Level::getBiomeSource()
|
|
{
|
|
return dimension->biomeSource;
|
|
}
|
|
|
|
Level::Level(shared_ptr<LevelStorage> levelStorage, const wstring& name, Dimension *dimension, LevelSettings *levelSettings, bool doCreateChunkSource)
|
|
: seaLevel(constSeaLevel)
|
|
{
|
|
_init();
|
|
this->levelStorage = levelStorage;//shared_ptr<LevelStorage>(levelStorage);
|
|
this->dimension = dimension;
|
|
levelData = new LevelData(levelSettings, name);
|
|
if( !this->levelData->useNewSeaLevel() ) seaLevel = Level::genDepth / 2; // 4J added - sea level is one unit lower since 1.8.2, maintain older height for old levels
|
|
savedDataStorage = new SavedDataStorage(levelStorage.get());
|
|
|
|
shared_ptr<Villages> savedVillages = dynamic_pointer_cast<Villages>(savedDataStorage->get(typeid(Villages), Villages::VILLAGE_FILE_ID));
|
|
if (savedVillages == NULL)
|
|
{
|
|
villages = shared_ptr<Villages>(new Villages(this));
|
|
savedDataStorage->set(Villages::VILLAGE_FILE_ID, villages);
|
|
}
|
|
else
|
|
{
|
|
villages = savedVillages;
|
|
villages->setLevel(this);
|
|
}
|
|
|
|
dimension->init(this);
|
|
chunkSource = NULL; // 4J - added flag so chunk source can be called from derived class instead
|
|
|
|
updateSkyBrightness();
|
|
prepareWeather();
|
|
}
|
|
|
|
Level::Level(shared_ptr<LevelStorage>levelStorage, const wstring& levelName, LevelSettings *levelSettings)
|
|
: seaLevel( constSeaLevel )
|
|
{
|
|
_init(levelStorage, levelName, levelSettings, NULL, true);
|
|
}
|
|
|
|
|
|
Level::Level(shared_ptr<LevelStorage>levelStorage, const wstring& levelName, LevelSettings *levelSettings, Dimension *fixedDimension, bool doCreateChunkSource)
|
|
: seaLevel( constSeaLevel )
|
|
{
|
|
_init( levelStorage, levelName, levelSettings, fixedDimension, doCreateChunkSource );
|
|
}
|
|
|
|
void Level::_init(shared_ptr<LevelStorage>levelStorage, const wstring& levelName, LevelSettings *levelSettings, Dimension *fixedDimension, bool doCreateChunkSource)
|
|
{
|
|
_init();
|
|
this->levelStorage = levelStorage;//shared_ptr<LevelStorage>(levelStorage);
|
|
savedDataStorage = new SavedDataStorage(levelStorage.get());
|
|
|
|
shared_ptr<Villages> savedVillages = dynamic_pointer_cast<Villages>(savedDataStorage->get(typeid(Villages), Villages::VILLAGE_FILE_ID));
|
|
if (savedVillages == NULL)
|
|
{
|
|
villages = shared_ptr<Villages>(new Villages(this));
|
|
savedDataStorage->set(Villages::VILLAGE_FILE_ID, villages);
|
|
}
|
|
else
|
|
{
|
|
villages = savedVillages;
|
|
villages->setLevel(this);
|
|
}
|
|
|
|
levelData = levelStorage->prepareLevel();
|
|
isNew = levelData == NULL;
|
|
|
|
if (fixedDimension != NULL)
|
|
{
|
|
dimension = fixedDimension;
|
|
}
|
|
// 4J Remove TU9 as getDimensions was never accurate. This path was never used anyway as we always set fixedDimension
|
|
//else if (levelData != NULL && levelData->getDimension() != 0)
|
|
//{
|
|
// dimension = Dimension::getNew(levelData->getDimension());
|
|
//}
|
|
else
|
|
{
|
|
dimension = Dimension::getNew(0);
|
|
}
|
|
|
|
if (levelData == NULL)
|
|
{
|
|
levelData = new LevelData(levelSettings, levelName);
|
|
}
|
|
else
|
|
{
|
|
levelData->setLevelName(levelName);
|
|
}
|
|
if( !this->levelData->useNewSeaLevel() ) seaLevel = Level::genDepth / 2; // 4J added - sea level is one unit lower since 1.8.2, maintain older height for old levels
|
|
|
|
((Dimension *) dimension)->init( this );
|
|
|
|
chunkSource = doCreateChunkSource ? createChunkSource() : NULL; // 4J - added flag so chunk source can be called from derived class instead
|
|
|
|
// 4J Stu- Moved to derived classes
|
|
//if (!levelData->isInitialized())
|
|
//{
|
|
// initializeLevel(levelSettings);
|
|
// levelData->setInitialized(true);
|
|
//}
|
|
|
|
updateSkyBrightness();
|
|
prepareWeather();
|
|
|
|
}
|
|
|
|
Level::~Level()
|
|
{
|
|
delete random;
|
|
delete dimension;
|
|
delete chunkSource;
|
|
delete levelData;
|
|
delete toCheckLevel;
|
|
delete scoreboard;
|
|
delete villageSiege;
|
|
|
|
if( !isClientSide )
|
|
{
|
|
NotGateTile::removeLevelReferences(this); // 4J added
|
|
}
|
|
|
|
DeleteCriticalSection(&m_checkLightCS);
|
|
|
|
// 4J-PB - savedDataStorage is shared between overworld and nether levels in the server, so it will already have been deleted on the first level delete
|
|
if(savedDataStorage!=NULL) delete savedDataStorage;
|
|
|
|
DeleteCriticalSection(&m_entitiesCS);
|
|
DeleteCriticalSection(&m_tileEntityListCS);
|
|
|
|
// 4J Stu - At least one of the listeners is something we cannot delete, the LevelRenderer
|
|
/*
|
|
for(int i = 0; i < listeners.size(); i++)
|
|
delete listeners[i];
|
|
*/
|
|
}
|
|
|
|
void Level::initializeLevel(LevelSettings *settings)
|
|
{
|
|
levelData->setInitialized(true);
|
|
}
|
|
|
|
void Level::validateSpawn()
|
|
{
|
|
setSpawnPos(8, 64, 8);
|
|
}
|
|
|
|
int Level::getTopTile(int x, int z)
|
|
{
|
|
// 4J added - was breaking spawning as not finding ground in superflat worlds
|
|
if( levelData->getGenerator() == LevelType::lvl_flat )
|
|
{
|
|
return Tile::grass_Id;
|
|
}
|
|
|
|
int y = seaLevel;
|
|
while (!isEmptyTile(x, y + 1, z))
|
|
{
|
|
y++;
|
|
}
|
|
return getTile(x, y, z);
|
|
}
|
|
int Level::getTile(int x, int y, int z)
|
|
{
|
|
if (x < -MAX_LEVEL_SIZE || z < -MAX_LEVEL_SIZE || x >= MAX_LEVEL_SIZE || z >= MAX_LEVEL_SIZE)
|
|
{
|
|
return 0;
|
|
}
|
|
if (y < minBuildHeight) return 0;
|
|
if (y >= maxBuildHeight) return 0;
|
|
return getChunk(x >> 4, z >> 4)->getTile(x & 15, y, z & 15);
|
|
}
|
|
|
|
int Level::getTileLightBlock(int x, int y, int z)
|
|
{
|
|
if (x < -MAX_LEVEL_SIZE || z < -MAX_LEVEL_SIZE || x >= MAX_LEVEL_SIZE || z >= MAX_LEVEL_SIZE)
|
|
{
|
|
return 0;
|
|
}
|
|
if (y < minBuildHeight) return 0;
|
|
if (y >= maxBuildHeight) return 0;
|
|
return getChunk(x >> 4, z >> 4)->getTileLightBlock(x & 15, y, z & 15);
|
|
}
|
|
|
|
bool Level::isEmptyTile(int x, int y, int z)
|
|
{
|
|
return getTile(x, y, z) == 0;
|
|
}
|
|
|
|
bool Level::isEntityTile(int x, int y, int z)
|
|
{
|
|
int t = getTile(x, y, z);
|
|
if (Tile::tiles[t] != NULL && Tile::tiles[t]->isEntityTile())
|
|
{
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
int Level::getTileRenderShape(int x, int y, int z)
|
|
{
|
|
int t = getTile(x, y, z);
|
|
if (Tile::tiles[t] != NULL)
|
|
{
|
|
return Tile::tiles[t]->getRenderShape();
|
|
}
|
|
return Tile::SHAPE_INVISIBLE;
|
|
}
|
|
|
|
// 4J Added to slightly optimise and avoid getTile call if we already know the tile
|
|
int Level::getTileRenderShape(int t)
|
|
{
|
|
if (Tile::tiles[t] != NULL)
|
|
{
|
|
return Tile::tiles[t]->getRenderShape();
|
|
}
|
|
return Tile::SHAPE_INVISIBLE;
|
|
}
|
|
|
|
bool Level::hasChunkAt(int x, int y, int z)
|
|
{
|
|
if (y < minBuildHeight || y >= maxBuildHeight) return false;
|
|
return hasChunk(x >> 4, z >> 4);
|
|
}
|
|
|
|
// 4J added
|
|
bool Level::reallyHasChunkAt(int x, int y, int z)
|
|
{
|
|
if (y < minBuildHeight || y >= maxBuildHeight) return false;
|
|
return reallyHasChunk(x >> 4, z >> 4);
|
|
}
|
|
|
|
bool Level::hasChunksAt(int x, int y, int z, int r)
|
|
{
|
|
return hasChunksAt(x - r, y - r, z - r, x + r, y + r, z + r);
|
|
}
|
|
|
|
// 4J added
|
|
bool Level::reallyHasChunksAt(int x, int y, int z, int r)
|
|
{
|
|
return reallyHasChunksAt(x - r, y - r, z - r, x + r, y + r, z + r);
|
|
}
|
|
|
|
|
|
bool Level::hasChunksAt(int x0, int y0, int z0, int x1, int y1, int z1)
|
|
{
|
|
if (y1 < minBuildHeight || y0 >= maxBuildHeight) return false;
|
|
|
|
x0 >>= 4;
|
|
z0 >>= 4;
|
|
x1 >>= 4;
|
|
z1 >>= 4;
|
|
|
|
for (int x = x0; x <= x1; x++)
|
|
for (int z = z0; z <= z1; z++)
|
|
if (!hasChunk(x, z)) return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
// 4J added
|
|
bool Level::reallyHasChunksAt(int x0, int y0, int z0, int x1, int y1, int z1)
|
|
{
|
|
x0 >>= 4;
|
|
z0 >>= 4;
|
|
x1 >>= 4;
|
|
z1 >>= 4;
|
|
|
|
for (int x = x0; x <= x1; x++)
|
|
for (int z = z0; z <= z1; z++)
|
|
if (!reallyHasChunk(x, z)) return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool Level::hasChunk(int x, int z)
|
|
{
|
|
return this->chunkSource->hasChunk(x, z);
|
|
}
|
|
|
|
// 4J added
|
|
bool Level::reallyHasChunk(int x, int z)
|
|
{
|
|
return this->chunkSource->reallyHasChunk(x, z);
|
|
}
|
|
|
|
|
|
LevelChunk *Level::getChunkAt(int x, int z)
|
|
{
|
|
return getChunk(x >> 4, z >> 4);
|
|
}
|
|
|
|
|
|
LevelChunk *Level::getChunk(int x, int z)
|
|
{
|
|
return this->chunkSource->getChunk(x, z);
|
|
}
|
|
|
|
bool Level::setTileAndData(int x, int y, int z, int tile, int data, int updateFlags)
|
|
{
|
|
if (x < -MAX_LEVEL_SIZE || z < -MAX_LEVEL_SIZE || x >= MAX_LEVEL_SIZE || z >= MAX_LEVEL_SIZE)
|
|
{
|
|
return false;
|
|
}
|
|
if (y < 0) return false;
|
|
if (y >= maxBuildHeight) return false;
|
|
LevelChunk *c = getChunk(x >> 4, z >> 4);
|
|
|
|
int oldTile = 0;
|
|
if ((updateFlags & Tile::UPDATE_NEIGHBORS) != 0)
|
|
{
|
|
oldTile = c->getTile(x & 15, y, z & 15);
|
|
}
|
|
bool result;
|
|
#ifndef _CONTENT_PACKAGE
|
|
int old = c->getTile(x & 15, y, z & 15);
|
|
int olddata = c->getData( x & 15, y, z & 15);
|
|
#endif
|
|
result = c->setTileAndData(x & 15, y, z & 15, tile, data);
|
|
if( updateFlags != Tile::UPDATE_INVISIBLE_NO_LIGHT)
|
|
{
|
|
#ifndef _CONTENT_PACKAGE
|
|
PIXBeginNamedEvent(0,"Checking light %d %d %d",x,y,z);
|
|
PIXBeginNamedEvent(0,"was %d, %d now %d, %d",old,olddata,tile,data);
|
|
#endif
|
|
checkLight(x, y, z);
|
|
PIXEndNamedEvent();
|
|
PIXEndNamedEvent();
|
|
}
|
|
if (result)
|
|
{
|
|
if ((updateFlags & Tile::UPDATE_CLIENTS) != 0 && !(isClientSide && (updateFlags & Tile::UPDATE_INVISIBLE) != 0))
|
|
{
|
|
sendTileUpdated(x, y, z);
|
|
}
|
|
if (!isClientSide && (updateFlags & Tile::UPDATE_NEIGHBORS) != 0)
|
|
{
|
|
tileUpdated(x, y, z, oldTile);
|
|
Tile *tobj = Tile::tiles[tile];
|
|
if (tobj != NULL && tobj->hasAnalogOutputSignal()) updateNeighbourForOutputSignal(x, y, z, tile);
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
Material *Level::getMaterial(int x, int y, int z)
|
|
{
|
|
int t = getTile(x, y, z);
|
|
if (t == 0) return Material::air;
|
|
return Tile::tiles[t]->material;
|
|
}
|
|
|
|
int Level::getData(int x, int y, int z)
|
|
{
|
|
if (x < -MAX_LEVEL_SIZE || z < -MAX_LEVEL_SIZE || x >= MAX_LEVEL_SIZE || z >= MAX_LEVEL_SIZE)
|
|
{
|
|
return 0;
|
|
}
|
|
if (y < 0) return 0;
|
|
if (y >= maxBuildHeight) return 0;
|
|
LevelChunk *c = getChunk(x >> 4, z >> 4);
|
|
x &= 15;
|
|
z &= 15;
|
|
return c->getData(x, y, z);
|
|
}
|
|
|
|
bool Level::setData(int x, int y, int z, int data, int updateFlags, bool forceUpdate/*=false*/) // 4J added forceUpdate)
|
|
{
|
|
if (x < -MAX_LEVEL_SIZE || z < -MAX_LEVEL_SIZE || x >= MAX_LEVEL_SIZE || z >= MAX_LEVEL_SIZE)
|
|
{
|
|
return false;
|
|
}
|
|
if (y < 0) return false;
|
|
if (y >= maxBuildHeight) return false;
|
|
LevelChunk *c = getChunk(x >> 4, z >> 4);
|
|
int cx = x & 15;
|
|
int cz = z & 15;
|
|
// 4J - have changed _sendTileData to encode a bitfield of which bits are important to be sent. This will be zero where the original flag was false, and non-zero where the original
|
|
// flag was true - hence recreating the original flag as sendTileData here. For nearly all tiles this will be 15 for the case where this used to be true (ie all bits are important) so
|
|
// there should be absolutely to change in behaviour. However, for leaf tiles, bits have been masked so we don't bother doing sendTileUpdated if a non-visual thing has changed in the data
|
|
unsigned char importantMask = Tile::_sendTileData[c->getTile(cx, y, cz) & Tile::TILE_NUM_MASK];
|
|
bool sendTileData = importantMask != 0;
|
|
|
|
bool maskedBitsChanged;
|
|
bool result = c->setData(cx, y, cz, data, importantMask, &maskedBitsChanged);
|
|
if (result || forceUpdate)
|
|
{
|
|
int tile = c->getTile(cx, y, cz);
|
|
if (forceUpdate || ((updateFlags & Tile::UPDATE_CLIENTS) != 0 && !(isClientSide && (updateFlags & Tile::UPDATE_INVISIBLE) != 0)))
|
|
{
|
|
sendTileUpdated(x, y, z);
|
|
}
|
|
if (!isClientSide && (forceUpdate || (updateFlags & Tile::UPDATE_NEIGHBORS) != 0) )
|
|
{
|
|
tileUpdated(x, y, z, tile);
|
|
Tile *tobj = Tile::tiles[tile];
|
|
if (tobj != NULL && tobj->hasAnalogOutputSignal()) updateNeighbourForOutputSignal(x, y, z, tile);
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
/**
|
|
* Sets a tile to air without dropping resources or showing any animation.
|
|
*
|
|
* @param x
|
|
* @param y
|
|
* @param z
|
|
* @return
|
|
*/
|
|
bool Level::removeTile(int x, int y, int z)
|
|
{
|
|
return setTileAndData(x, y, z, 0, 0, Tile::UPDATE_ALL);
|
|
}
|
|
|
|
/**
|
|
* Sets a tile to air and plays a destruction animation, with option to also
|
|
* drop resources.
|
|
*
|
|
* @param x
|
|
* @param y
|
|
* @param z
|
|
* @param dropResources
|
|
* @return True if anything was changed
|
|
*/
|
|
bool Level::destroyTile(int x, int y, int z, bool dropResources)
|
|
{
|
|
int tile = getTile(x, y, z);
|
|
if (tile > 0)
|
|
{
|
|
int data = getData(x, y, z);
|
|
levelEvent(LevelEvent::PARTICLES_DESTROY_BLOCK, x, y, z, tile + (data << Tile::TILE_NUM_SHIFT));
|
|
if (dropResources)
|
|
{
|
|
Tile::tiles[tile]->spawnResources(this, x, y, z, data, 0);
|
|
}
|
|
return setTileAndData(x, y, z, 0, 0, Tile::UPDATE_ALL);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool Level::setTileAndUpdate(int x, int y, int z, int tile)
|
|
{
|
|
return setTileAndData(x, y, z, tile, 0, Tile::UPDATE_ALL);
|
|
}
|
|
|
|
void Level::sendTileUpdated(int x, int y, int z)
|
|
{
|
|
for (auto& listener : listeners)
|
|
{
|
|
listener->tileChanged(x, y, z);
|
|
}
|
|
}
|
|
|
|
void Level::tileUpdated(int x, int y, int z, int tile)
|
|
{
|
|
updateNeighborsAt(x, y, z, tile);
|
|
}
|
|
|
|
void Level::lightColumnChanged(int x, int z, int y0, int y1)
|
|
{
|
|
PIXBeginNamedEvent(0,"LightColumnChanged (%d,%d) %d to %d",x,z,y0,y1);
|
|
if (y0 > y1)
|
|
{
|
|
int tmp = y1;
|
|
y1 = y0;
|
|
y0 = tmp;
|
|
}
|
|
|
|
if (!dimension->hasCeiling)
|
|
{
|
|
PIXBeginNamedEvent(0,"Checking lights");
|
|
for (int y = y0; y <= y1; y++)
|
|
{
|
|
PIXBeginNamedEvent(0,"Checking light %d", y);
|
|
checkLight(LightLayer::Sky, x, y, z);
|
|
PIXEndNamedEvent();
|
|
}
|
|
PIXEndNamedEvent();
|
|
}
|
|
PIXBeginNamedEvent(0,"Setting tiles dirty");
|
|
setTilesDirty(x, y0, z, x, y1, z);
|
|
PIXEndNamedEvent();
|
|
PIXEndNamedEvent();
|
|
}
|
|
|
|
|
|
void Level::setTileDirty(int x, int y, int z)
|
|
{
|
|
for (auto& listener : listeners)
|
|
{
|
|
listener->setTilesDirty(x, y, z, x, y, z, this);
|
|
}
|
|
}
|
|
|
|
|
|
void Level::setTilesDirty(int x0, int y0, int z0, int x1, int y1, int z1)
|
|
{
|
|
for (auto& listener : listeners)
|
|
{
|
|
listener->setTilesDirty(x0, y0, z0, x1, y1, z1, this);
|
|
}
|
|
}
|
|
|
|
void Level::updateNeighborsAt(int x, int y, int z, int tile)
|
|
{
|
|
neighborChanged(x - 1, y, z, tile);
|
|
neighborChanged(x + 1, y, z, tile);
|
|
neighborChanged(x, y - 1, z, tile);
|
|
neighborChanged(x, y + 1, z, tile);
|
|
neighborChanged(x, y, z - 1, tile);
|
|
neighborChanged(x, y, z + 1, tile);
|
|
}
|
|
|
|
void Level::updateNeighborsAtExceptFromFacing(int x, int y, int z, int tile, int skipFacing)
|
|
{
|
|
if (skipFacing != Facing::WEST) neighborChanged(x - 1, y, z, tile);
|
|
if (skipFacing != Facing::EAST) neighborChanged(x + 1, y, z, tile);
|
|
if (skipFacing != Facing::DOWN) neighborChanged(x, y - 1, z, tile);
|
|
if (skipFacing != Facing::UP) neighborChanged(x, y + 1, z, tile);
|
|
if (skipFacing != Facing::NORTH) neighborChanged(x, y, z - 1, tile);
|
|
if (skipFacing != Facing::SOUTH) neighborChanged(x, y, z + 1, tile);
|
|
}
|
|
|
|
void Level::neighborChanged(int x, int y, int z, int type)
|
|
{
|
|
if (isClientSide) return;
|
|
int id = getTile(x, y, z);
|
|
Tile *tile = Tile::tiles[id];
|
|
|
|
if (tile != NULL)
|
|
{
|
|
tile->neighborChanged(this, x, y, z, type);
|
|
}
|
|
}
|
|
|
|
bool Level::isTileToBeTickedAt(int x, int y, int z, int tileId)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool Level::canSeeSky(int x, int y, int z)
|
|
{
|
|
return getChunk(x >> 4, z >> 4)->isSkyLit(x & 15, y, z & 15);
|
|
}
|
|
|
|
|
|
int Level::getDaytimeRawBrightness(int x, int y, int z)
|
|
{
|
|
if (y < 0) return 0;
|
|
if (y >= maxBuildHeight) y = maxBuildHeight - 1;
|
|
return getChunk(x >> 4, z >> 4)->getRawBrightness(x & 15, y, z & 15, 0);
|
|
}
|
|
|
|
|
|
int Level::getRawBrightness(int x, int y, int z)
|
|
{
|
|
return getRawBrightness(x, y, z, true);
|
|
}
|
|
|
|
|
|
int Level::getRawBrightness(int x, int y, int z, bool propagate)
|
|
{
|
|
if (x < -MAX_LEVEL_SIZE || z < -MAX_LEVEL_SIZE || x >= MAX_LEVEL_SIZE || z >= MAX_LEVEL_SIZE)
|
|
{
|
|
return MAX_BRIGHTNESS;
|
|
}
|
|
|
|
if (propagate)
|
|
{
|
|
int id = getTile(x, y, z);
|
|
if (Tile::propagate[id])
|
|
{
|
|
int br = getRawBrightness(x, y + 1, z, false);
|
|
int br1 = getRawBrightness(x + 1, y, z, false);
|
|
int br2 = getRawBrightness(x - 1, y, z, false);
|
|
int br3 = getRawBrightness(x, y, z + 1, false);
|
|
int br4 = getRawBrightness(x, y, z - 1, false);
|
|
if (br1 > br) br = br1;
|
|
if (br2 > br) br = br2;
|
|
if (br3 > br) br = br3;
|
|
if (br4 > br) br = br4;
|
|
return br;
|
|
}
|
|
}
|
|
|
|
if (y < 0) return 0;
|
|
if (y >= maxBuildHeight) y = maxBuildHeight - 1;
|
|
|
|
LevelChunk *c = getChunk(x >> 4, z >> 4);
|
|
x &= 15;
|
|
z &= 15;
|
|
return c->getRawBrightness(x, y, z, skyDarken);
|
|
}
|
|
|
|
|
|
bool Level::isSkyLit(int x, int y, int z)
|
|
{
|
|
if (x < -MAX_LEVEL_SIZE || z < -MAX_LEVEL_SIZE || x >= MAX_LEVEL_SIZE || z >= MAX_LEVEL_SIZE)
|
|
{
|
|
return false;
|
|
}
|
|
if (dimension->hasCeiling) return false;
|
|
|
|
if (y < 0) return false;
|
|
if (y >= maxBuildHeight) return true;
|
|
if (!hasChunk(x >> 4, z >> 4)) return false;
|
|
|
|
LevelChunk *c = getChunk(x >> 4, z >> 4);
|
|
x &= 15;
|
|
z &= 15;
|
|
return c->isSkyLit(x, y, z);
|
|
}
|
|
|
|
|
|
int Level::getHeightmap(int x, int z)
|
|
{
|
|
if (x < -MAX_LEVEL_SIZE || z < -MAX_LEVEL_SIZE || x >= MAX_LEVEL_SIZE || z >= MAX_LEVEL_SIZE)
|
|
{
|
|
return 0;
|
|
}
|
|
if (!hasChunk(x >> 4, z >> 4)) return 0;
|
|
|
|
LevelChunk *c = getChunk(x >> 4, z >> 4);
|
|
return c->getHeightmap(x & 15, z & 15);
|
|
}
|
|
|
|
int Level::getLowestHeightmap(int x, int z)
|
|
{
|
|
if (x < -MAX_LEVEL_SIZE || z < -MAX_LEVEL_SIZE || x >= MAX_LEVEL_SIZE || z >= MAX_LEVEL_SIZE)
|
|
{
|
|
return 0;
|
|
}
|
|
if (!hasChunk(x >> 4, z >> 4)) return 0;
|
|
|
|
LevelChunk *c = getChunk(x >> 4, z >> 4);
|
|
return c->lowestHeightmap;
|
|
}
|
|
|
|
void Level::updateLightIfOtherThan(LightLayer::variety layer, int x, int y, int z, int expected)
|
|
{
|
|
if (dimension->hasCeiling && layer == LightLayer::Sky) return;
|
|
|
|
if (!hasChunkAt(x, y, z)) return;
|
|
|
|
if (layer == LightLayer::Sky)
|
|
{
|
|
if (isSkyLit(x, y, z)) expected = 15;
|
|
}
|
|
else if (layer == LightLayer::Block)
|
|
{
|
|
int t = getTile(x, y, z);
|
|
if (Tile::lightEmission[t] > expected) expected = Tile::lightEmission[t];
|
|
}
|
|
|
|
if (getBrightness(layer, x, y, z) != expected)
|
|
{
|
|
setBrightness(layer, x, y, z, expected);
|
|
}
|
|
}
|
|
|
|
// 4J - update brought forward from 1.8.2
|
|
int Level::getBrightnessPropagate(LightLayer::variety layer, int x, int y, int z, int tileId)
|
|
{
|
|
if (dimension->hasCeiling && layer == LightLayer::Sky) return 0;
|
|
|
|
if (y < 0) y = 0;
|
|
if (y >= maxBuildHeight && layer == LightLayer::Sky)
|
|
{
|
|
// 4J Stu - The java LightLayer was an enum class type with a member "surrounding" which is what we
|
|
// were returning here. Surrounding has the same value as the enum value in our C++ code, so just cast
|
|
// it to an int
|
|
return (int)layer;
|
|
}
|
|
if (x < -MAX_LEVEL_SIZE || z < -MAX_LEVEL_SIZE || x >= MAX_LEVEL_SIZE || z >= MAX_LEVEL_SIZE)
|
|
{
|
|
// 4J Stu - The java LightLayer was an enum class type with a member "surrounding" which is what we
|
|
// were returning here. Surrounding has the same value as the enum value in our C++ code, so just cast
|
|
// it to an int
|
|
return (int)layer;
|
|
}
|
|
int xc = x >> 4;
|
|
int zc = z >> 4;
|
|
if (!hasChunk(xc, zc)) return (int)layer;
|
|
|
|
{
|
|
int id = tileId > -1 ? tileId : getTile(x,y,z);
|
|
if (Tile::propagate[id])
|
|
{
|
|
int br = getBrightness(layer, x, y + 1, z);
|
|
int br1 = getBrightness(layer, x + 1, y, z);
|
|
int br2 = getBrightness(layer, x - 1, y, z);
|
|
int br3 = getBrightness(layer, x, y, z + 1);
|
|
int br4 = getBrightness(layer, x, y, z - 1);
|
|
if (br1 > br) br = br1;
|
|
if (br2 > br) br = br2;
|
|
if (br3 > br) br = br3;
|
|
if (br4 > br) br = br4;
|
|
return br;
|
|
}
|
|
}
|
|
|
|
LevelChunk *c = getChunk(xc, zc);
|
|
return c->getBrightness(layer, x & 15, y, z & 15);
|
|
}
|
|
|
|
int Level::getBrightness(LightLayer::variety layer, int x, int y, int z)
|
|
{
|
|
// 4J - optimised. Not doing checks on x/z that are no longer necessary, and directly checking the cache within
|
|
// the ServerChunkCache/MultiplayerChunkCache rather than going through wrappers & virtual functions.
|
|
int xc = x >> 4;
|
|
int zc = z >> 4;
|
|
|
|
int ix = xc + (chunkSourceXZSize/2);
|
|
int iz = zc + (chunkSourceXZSize/2);
|
|
|
|
if( ( ix < 0 ) || ( ix >= chunkSourceXZSize ) ) return 0;
|
|
if( ( iz < 0 ) || ( iz >= chunkSourceXZSize ) ) return 0;
|
|
int idx = ix * chunkSourceXZSize + iz;
|
|
LevelChunk *c = chunkSourceCache[idx];
|
|
|
|
if( c == NULL ) return (int)layer;
|
|
|
|
if (y < 0) y = 0;
|
|
if (y >= maxBuildHeight) y = maxBuildHeight - 1;
|
|
|
|
return c->getBrightness(layer, x & 15, y, z & 15);
|
|
}
|
|
|
|
// 4J added as optimisation - if all the neighbouring brightesses are going to be in the one chunk, just get
|
|
// the level chunk once
|
|
void Level::getNeighbourBrightnesses(int *brightnesses, LightLayer::variety layer, int x, int y, int z)
|
|
{
|
|
if( ( ( ( x & 15 ) == 0 ) || ( ( x & 15 ) == 15 ) ) ||
|
|
( ( ( z & 15 ) == 0 ) || ( ( z & 15 ) == 15 ) ) ||
|
|
( ( y <= 0 ) || ( y >= 127 ) ) )
|
|
{
|
|
// We're spanning more than one chunk, just fall back on original java method here
|
|
brightnesses[0] = getBrightness(layer, x - 1, y, z);
|
|
brightnesses[1] = getBrightness(layer, x + 1, y, z);
|
|
brightnesses[2] = getBrightness(layer, x, y - 1, z);
|
|
brightnesses[3] = getBrightness(layer, x, y + 1, z);
|
|
brightnesses[4] = getBrightness(layer, x, y, z - 1);
|
|
brightnesses[5] = getBrightness(layer, x, y, z + 1);
|
|
}
|
|
else
|
|
{
|
|
// All in one chunk - just get the chunk once, and do a single call to get the results
|
|
int xc = x >> 4;
|
|
int zc = z >> 4;
|
|
|
|
int ix = xc + (chunkSourceXZSize/2);
|
|
int iz = zc + (chunkSourceXZSize/2);
|
|
|
|
// 4J Stu - The java LightLayer was an enum class type with a member "surrounding" which is what we
|
|
// were returning here. Surrounding has the same value as the enum value in our C++ code, so just cast
|
|
// it to an int
|
|
if( ( ( ix < 0 ) || ( ix >= chunkSourceXZSize ) ) ||
|
|
( ( iz < 0 ) || ( iz >= chunkSourceXZSize ) ) )
|
|
{
|
|
for( int i = 0; i < 6; i++ )
|
|
{
|
|
brightnesses[i] = (int)layer;
|
|
}
|
|
return;
|
|
}
|
|
|
|
int idx = ix * chunkSourceXZSize + iz;
|
|
LevelChunk *c = chunkSourceCache[idx];
|
|
|
|
// 4J Stu - The java LightLayer was an enum class type with a member "surrounding" which is what we
|
|
// were returning here. Surrounding has the same value as the enum value in our C++ code, so just cast
|
|
// it to an int
|
|
if( c == NULL )
|
|
{
|
|
for( int i = 0; i < 6; i++ )
|
|
{
|
|
brightnesses[i] = (int)layer;
|
|
}
|
|
return;
|
|
}
|
|
|
|
// Single call to the levelchunk too to avoid overhead of virtual fn calls
|
|
c->getNeighbourBrightnesses(brightnesses, layer, x & 15, y, z & 15);
|
|
}
|
|
}
|
|
|
|
void Level::setBrightness(LightLayer::variety layer, int x, int y, int z, int brightness, bool noUpdateOnClient/*=false*/) // 4J added noUpdateOnClient
|
|
{
|
|
if (x < -MAX_LEVEL_SIZE || z < -MAX_LEVEL_SIZE || x >= MAX_LEVEL_SIZE || z >= MAX_LEVEL_SIZE)
|
|
{
|
|
return;
|
|
}
|
|
if (y < 0) return;
|
|
if (y >= maxBuildHeight) return;
|
|
if (!hasChunk(x >> 4, z >> 4)) return;
|
|
LevelChunk *c = getChunk(x >> 4, z >> 4);
|
|
|
|
c->setBrightness(layer, x & 15, y, z & 15, brightness);
|
|
|
|
// 4J added
|
|
if( isClientSide && noUpdateOnClient )
|
|
{
|
|
if( cachewritten )
|
|
{
|
|
if( x < cacheminx ) cacheminx = x;
|
|
if( x > cachemaxx ) cachemaxx = x;
|
|
if( y < cacheminy ) cacheminy = y;
|
|
if( y > cachemaxy ) cachemaxy = y;
|
|
if( z < cacheminz ) cacheminz = z;
|
|
if( z > cachemaxz ) cachemaxz = z;
|
|
}
|
|
else
|
|
{
|
|
cachewritten = true;
|
|
cacheminx = x;
|
|
cachemaxx = x;
|
|
cacheminy = y;
|
|
cachemaxy = y;
|
|
cacheminz = z;
|
|
cachemaxz = z;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
for (auto& listener : listeners)
|
|
{
|
|
listener->tileLightChanged(x, y, z);
|
|
}
|
|
}
|
|
}
|
|
|
|
void Level::setTileBrightnessChanged(int x, int y, int z)
|
|
{
|
|
for (auto& listener : listeners)
|
|
{
|
|
listener->tileLightChanged(x, y, z);
|
|
}
|
|
}
|
|
|
|
int Level::getLightColor(int x, int y, int z, int emitt, int tileId/*=-1*/)
|
|
{
|
|
int s = getBrightnessPropagate(LightLayer::Sky, x, y, z, tileId);
|
|
int b = getBrightnessPropagate(LightLayer::Block, x, y, z, tileId);
|
|
if (b < emitt) b = emitt;
|
|
return s << 20 | b << 4;
|
|
}
|
|
|
|
float Level::getBrightness(int x, int y, int z, int emitt)
|
|
{
|
|
int n = getRawBrightness(x, y, z);
|
|
if (n < emitt) n = emitt;
|
|
return dimension->brightnessRamp[n];
|
|
}
|
|
|
|
|
|
float Level::getBrightness(int x, int y, int z)
|
|
{
|
|
return dimension->brightnessRamp[getRawBrightness(x, y, z)];
|
|
}
|
|
|
|
|
|
bool Level::isDay()
|
|
{
|
|
return skyDarken < 4;
|
|
}
|
|
|
|
|
|
HitResult *Level::clip(Vec3 *a, Vec3 *b)
|
|
{
|
|
return clip(a, b, false, false);
|
|
}
|
|
|
|
|
|
HitResult *Level::clip(Vec3 *a, Vec3 *b, bool liquid)
|
|
{
|
|
return clip(a, b, liquid, false);
|
|
}
|
|
|
|
|
|
HitResult *Level::clip(Vec3 *a, Vec3 *b, bool liquid, bool solidOnly)
|
|
{
|
|
if (Double::isNaN(a->x) || Double::isNaN(a->y) || Double::isNaN(a->z)) return NULL;
|
|
if (Double::isNaN(b->x) || Double::isNaN(b->y) || Double::isNaN(b->z)) return NULL;
|
|
|
|
int xTile1 = Mth::floor(b->x);
|
|
int yTile1 = Mth::floor(b->y);
|
|
int zTile1 = Mth::floor(b->z);
|
|
|
|
int xTile0 = Mth::floor(a->x);
|
|
int yTile0 = Mth::floor(a->y);
|
|
int zTile0 = Mth::floor(a->z);
|
|
|
|
{
|
|
int t = getTile(xTile0, yTile0, zTile0);
|
|
int data = getData(xTile0, yTile0, zTile0);
|
|
Tile *tile = Tile::tiles[t];
|
|
if (solidOnly && tile != NULL && tile->getAABB(this, xTile0, yTile0, zTile0) == NULL)
|
|
{
|
|
// No collision
|
|
|
|
}
|
|
else if (t > 0 && tile->mayPick(data, liquid))
|
|
{
|
|
HitResult *r = tile->clip(this, xTile0, yTile0, zTile0, a, b);
|
|
if (r != NULL) return r;
|
|
}
|
|
}
|
|
|
|
int maxIterations = 200;
|
|
while (maxIterations-- >= 0)
|
|
{
|
|
if (Double::isNaN(a->x) || Double::isNaN(a->y) || Double::isNaN(a->z)) return NULL;
|
|
if (xTile0 == xTile1 && yTile0 == yTile1 && zTile0 == zTile1) return NULL;
|
|
|
|
bool xClipped = true;
|
|
bool yClipped = true;
|
|
bool zClipped = true;
|
|
|
|
double xClip = 999;
|
|
double yClip = 999;
|
|
double zClip = 999;
|
|
|
|
if (xTile1 > xTile0) xClip = xTile0 + 1.000;
|
|
else if (xTile1 < xTile0) xClip = xTile0 + 0.000;
|
|
else xClipped = false;
|
|
|
|
if (yTile1 > yTile0) yClip = yTile0 + 1.000;
|
|
else if (yTile1 < yTile0) yClip = yTile0 + 0.000;
|
|
else yClipped = false;
|
|
|
|
if (zTile1 > zTile0) zClip = zTile0 + 1.000;
|
|
else if (zTile1 < zTile0) zClip = zTile0 + 0.000;
|
|
else zClipped = false;
|
|
|
|
double xDist = 999;
|
|
double yDist = 999;
|
|
double zDist = 999;
|
|
|
|
double xd = b->x - a->x;
|
|
double yd = b->y - a->y;
|
|
double zd = b->z - a->z;
|
|
|
|
if (xClipped) xDist = (xClip - a->x) / xd;
|
|
if (yClipped) yDist = (yClip - a->y) / yd;
|
|
if (zClipped) zDist = (zClip - a->z) / zd;
|
|
|
|
int face = 0;
|
|
if (xDist < yDist && xDist < zDist)
|
|
{
|
|
if (xTile1 > xTile0) face = 4;
|
|
else face = 5;
|
|
|
|
a->x = xClip;
|
|
a->y += yd * xDist;
|
|
a->z += zd * xDist;
|
|
}
|
|
else if (yDist < zDist)
|
|
{
|
|
if (yTile1 > yTile0) face = 0;
|
|
else face = 1;
|
|
|
|
a->x += xd * yDist;
|
|
a->y = yClip;
|
|
a->z += zd * yDist;
|
|
}
|
|
else
|
|
{
|
|
if (zTile1 > zTile0) face = 2;
|
|
else face = 3;
|
|
|
|
a->x += xd * zDist;
|
|
a->y += yd * zDist;
|
|
a->z = zClip;
|
|
}
|
|
|
|
Vec3 *tPos = Vec3::newTemp(a->x, a->y, a->z);
|
|
xTile0 = (int) (tPos->x = floor(a->x));
|
|
if (face == 5)
|
|
{
|
|
xTile0--;
|
|
tPos->x++;
|
|
}
|
|
yTile0 = (int) (tPos->y = floor(a->y));
|
|
if (face == 1)
|
|
{
|
|
yTile0--;
|
|
tPos->y++;
|
|
}
|
|
zTile0 = (int) (tPos->z = floor(a->z));
|
|
if (face == 3)
|
|
{
|
|
zTile0--;
|
|
tPos->z++;
|
|
}
|
|
|
|
int t = getTile(xTile0, yTile0, zTile0);
|
|
int data = getData(xTile0, yTile0, zTile0);
|
|
Tile *tile = Tile::tiles[t];
|
|
if (solidOnly && tile != NULL && tile->getAABB(this, xTile0, yTile0, zTile0) == NULL)
|
|
{
|
|
// No collision
|
|
|
|
}
|
|
else if (t > 0 && tile->mayPick(data, liquid))
|
|
{
|
|
HitResult *r = tile->clip(this, xTile0, yTile0, zTile0, a, b);
|
|
if (r != NULL) return r;
|
|
}
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
|
|
void Level::playEntitySound(shared_ptr<Entity> entity, int iSound, float volume, float pitch)
|
|
{
|
|
if(entity == NULL) return;
|
|
for (auto& listener : listeners)
|
|
{
|
|
// 4J-PB - if the entity is a local player, don't play the sound
|
|
if(entity->GetType() == eTYPE_SERVERPLAYER)
|
|
{
|
|
//app.DebugPrintf("ENTITY is serverplayer\n");
|
|
|
|
listener->playSound(iSound, entity->x, entity->y - entity->heightOffset, entity->z, volume, pitch);
|
|
}
|
|
else
|
|
{
|
|
listener->playSound(iSound, entity->x, entity->y - entity->heightOffset, entity->z, volume, pitch);
|
|
}
|
|
}
|
|
}
|
|
|
|
void Level::playPlayerSound(shared_ptr<Player> entity, int iSound, float volume, float pitch)
|
|
{
|
|
if (entity == NULL) return;
|
|
for (auto& listener : listeners)
|
|
{
|
|
listener->playSoundExceptPlayer(entity, iSound, entity->x, entity->y - entity->heightOffset, entity->z, volume, pitch);
|
|
}
|
|
}
|
|
|
|
//void Level::playSound(double x, double y, double z, const wstring& name, float volume, float pitch)
|
|
void Level::playSound(double x, double y, double z, int iSound, float volume, float pitch, float fClipSoundDist)
|
|
{
|
|
for (auto& listener : listeners)
|
|
{
|
|
listener->playSound(iSound, x, y, z, volume, pitch, fClipSoundDist);
|
|
}
|
|
}
|
|
|
|
void Level::playLocalSound(double x, double y, double z, int iSound, float volume, float pitch, bool distanceDelay, float fClipSoundDist)
|
|
{
|
|
}
|
|
|
|
void Level::playStreamingMusic(const wstring& name, int x, int y, int z)
|
|
{
|
|
for (auto& listener : listeners)
|
|
{
|
|
listener->playStreamingMusic(name, x, y, z);
|
|
}
|
|
}
|
|
|
|
|
|
void Level::playMusic(double x, double y, double z, const wstring& string, float volume)
|
|
{
|
|
}
|
|
|
|
// 4J-PB added
|
|
void Level::addParticle(ePARTICLE_TYPE id, double x, double y, double z, double xd, double yd, double zd)
|
|
{
|
|
for (auto& listener : listeners)
|
|
listener->addParticle(id, x, y, z, xd, yd, zd);
|
|
}
|
|
|
|
bool Level::addGlobalEntity(shared_ptr<Entity> e)
|
|
{
|
|
globalEntities.push_back(e);
|
|
return true;
|
|
}
|
|
|
|
#pragma optimize( "", off )
|
|
|
|
bool Level::addEntity(shared_ptr<Entity> e)
|
|
{
|
|
int xc = Mth::floor(e->x / 16);
|
|
int zc = Mth::floor(e->z / 16);
|
|
|
|
if(e == NULL)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool forced = e->forcedLoading;
|
|
if (e->instanceof(eTYPE_PLAYER))
|
|
{
|
|
forced = true;
|
|
}
|
|
|
|
if (forced || hasChunk(xc, zc))
|
|
{
|
|
if (e->instanceof(eTYPE_PLAYER))
|
|
{
|
|
shared_ptr<Player> player = dynamic_pointer_cast<Player>(e);
|
|
|
|
// 4J Stu - Added so we don't continually add the player to the players list while they are dead
|
|
if( find( players.begin(), players.end(), e ) == players.end() )
|
|
{
|
|
players.push_back(player);
|
|
}
|
|
|
|
updateSleepingPlayerList();
|
|
}
|
|
MemSect(42);
|
|
getChunk(xc, zc)->addEntity(e);
|
|
MemSect(0);
|
|
EnterCriticalSection(&m_entitiesCS);
|
|
MemSect(43);
|
|
entities.push_back(e);
|
|
MemSect(0);
|
|
LeaveCriticalSection(&m_entitiesCS);
|
|
MemSect(44);
|
|
entityAdded(e);
|
|
MemSect(0);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
#pragma optimize( "", on )
|
|
|
|
void Level::entityAdded(shared_ptr<Entity> e)
|
|
{
|
|
for (auto& listener : listeners)
|
|
{
|
|
listener->entityAdded(e);
|
|
}
|
|
}
|
|
|
|
|
|
void Level::entityRemoved(shared_ptr<Entity> e)
|
|
{
|
|
for (auto& listener : listeners)
|
|
{
|
|
listener->entityRemoved(e);
|
|
}
|
|
}
|
|
|
|
// 4J added
|
|
void Level::playerRemoved(shared_ptr<Entity> e)
|
|
{
|
|
for (auto& listener : listeners)
|
|
{
|
|
listener->playerRemoved(e);
|
|
}
|
|
}
|
|
|
|
void Level::removeEntity(shared_ptr<Entity> e)
|
|
{
|
|
if (e->rider.lock())
|
|
{
|
|
e->rider.lock()->ride(nullptr);
|
|
}
|
|
if (e->riding)
|
|
{
|
|
e->ride(nullptr);
|
|
}
|
|
e->remove();
|
|
if (e->instanceof(eTYPE_PLAYER))
|
|
{
|
|
auto it = players.begin();
|
|
auto itEnd = players.end();
|
|
while( it != itEnd && *it != dynamic_pointer_cast<Player>(e) )
|
|
it++;
|
|
|
|
if( it != itEnd )
|
|
{
|
|
players.erase( it );
|
|
}
|
|
|
|
updateSleepingPlayerList();
|
|
playerRemoved(e); // 4J added - this will let the entity tracker know that we have actually removed the player from the level's player list
|
|
}
|
|
}
|
|
|
|
|
|
void Level::removeEntityImmediately(shared_ptr<Entity> e)
|
|
{
|
|
e->remove();
|
|
|
|
if (e->instanceof(eTYPE_PLAYER))
|
|
{
|
|
vector<shared_ptr<Player> >::iterator it = players.begin();
|
|
vector<shared_ptr<Player> >::iterator itEnd = players.end();
|
|
while( it != itEnd && *it != dynamic_pointer_cast<Player>(e) )
|
|
it++;
|
|
|
|
if( it != itEnd )
|
|
{
|
|
players.erase( it );
|
|
}
|
|
|
|
updateSleepingPlayerList();
|
|
playerRemoved(e); // 4J added - this will let the entity tracker know that we have actually removed the player from the level's player list
|
|
}
|
|
|
|
int xc = e->xChunk;
|
|
int zc = e->zChunk;
|
|
if (e->inChunk && hasChunk(xc, zc))
|
|
{
|
|
getChunk(xc, zc)->removeEntity(e);
|
|
}
|
|
|
|
EnterCriticalSection(&m_entitiesCS);
|
|
vector<shared_ptr<Entity> >::iterator it = entities.begin();
|
|
vector<shared_ptr<Entity> >::iterator endIt = entities.end();
|
|
while( it != endIt && *it != e)
|
|
it++;
|
|
|
|
if( it != endIt )
|
|
{
|
|
entities.erase( it );
|
|
}
|
|
LeaveCriticalSection(&m_entitiesCS);
|
|
entityRemoved(e);
|
|
}
|
|
|
|
|
|
void Level::addListener(LevelListener *listener)
|
|
{
|
|
listeners.push_back(listener);
|
|
}
|
|
|
|
|
|
void Level::removeListener(LevelListener *listener)
|
|
{
|
|
vector<LevelListener *>::iterator it = listeners.begin();
|
|
vector<LevelListener *>::iterator itEnd = listeners.end();
|
|
while( it != itEnd && *it != listener )
|
|
it++;
|
|
|
|
if( it != itEnd )
|
|
listeners.erase( it );
|
|
}
|
|
|
|
|
|
// 4J - added noEntities and blockAtEdge parameter
|
|
AABBList *Level::getCubes(shared_ptr<Entity> source, AABB *box, bool noEntities/* = false*/, bool blockAtEdge/* = false*/)
|
|
{
|
|
boxes.clear();
|
|
int x0 = Mth::floor(box->x0);
|
|
int x1 = Mth::floor(box->x1 + 1);
|
|
int y0 = Mth::floor(box->y0);
|
|
int y1 = Mth::floor(box->y1 + 1);
|
|
int z0 = Mth::floor(box->z0);
|
|
int z1 = Mth::floor(box->z1 + 1);
|
|
|
|
int maxxz = ( dimension->getXZSize() * 16 ) / 2;
|
|
int minxz = -maxxz;
|
|
for (int x = x0; x < x1; x++)
|
|
for (int z = z0; z < z1; z++)
|
|
{
|
|
// 4J - If we are outside the map, return solid AABBs (rock is a bit of an arbitrary choice here, just need a correct AABB)
|
|
if( blockAtEdge && ( ( x < minxz ) || ( x >= maxxz ) || ( z < minxz ) || ( z >= maxxz ) ) )
|
|
{
|
|
for (int y = y0 - 1; y < y1; y++)
|
|
{
|
|
Tile::stone->addAABBs(this, x, y, z, box, &boxes, source);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (hasChunkAt(x, 64, z))
|
|
{
|
|
for (int y = y0 - 1; y < y1; y++)
|
|
{
|
|
Tile *tile = Tile::tiles[getTile(x, y, z)];
|
|
if (tile != NULL)
|
|
{
|
|
tile->addAABBs(this, x, y, z, box, &boxes, source);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// 4J - also stop player falling out of the bottom of the map if blockAtEdge is true. Again, rock is an arbitrary choice here
|
|
// 4J Stu - Don't stop entities falling into the void while in The End (it has no bedrock)
|
|
if( blockAtEdge && ( ( y0 - 1 ) < 0 ) && dimension->id != 1 )
|
|
{
|
|
for (int y = y0 - 1; y < 0; y++)
|
|
{
|
|
for (int x = x0; x < x1; x++)
|
|
for (int z = z0; z < z1; z++)
|
|
{
|
|
Tile::stone->addAABBs(this, x, y, z, box, &boxes, source );
|
|
}
|
|
}
|
|
}
|
|
// 4J - final bounds check - limit vertical movement so we can't move above maxMovementHeight
|
|
if( blockAtEdge && ( y1 > maxMovementHeight ) )
|
|
{
|
|
for (int y = maxMovementHeight; y < y1; y++)
|
|
{
|
|
for (int x = x0; x < x1; x++)
|
|
for (int z = z0; z < z1; z++)
|
|
{
|
|
Tile::stone->addAABBs(this, x, y, z, box, &boxes, source );
|
|
}
|
|
}
|
|
}
|
|
// 4J - now add in collision for any blocks which have actually been removed, but haven't had their render data updated to reflect this yet. This is to stop the player
|
|
// being able to move the view position inside a tile which is (visually) still there, and see out of the world. This is particularly a problem when moving upwards in
|
|
// creative mode as the player can get very close to the edge of tiles whilst looking upwards and can therefore very quickly move inside one.
|
|
Minecraft::GetInstance()->levelRenderer->destroyedTileManager->addAABBs( this, box, &boxes);
|
|
|
|
// 4J - added
|
|
if( noEntities ) return &boxes;
|
|
|
|
double r = 0.25;
|
|
vector<shared_ptr<Entity> > *ee = getEntities(source, box->grow(r, r, r));
|
|
for (auto& it : *ee)
|
|
{
|
|
AABB *collideBox = it->getCollideBox();
|
|
if (collideBox != NULL && collideBox->intersects(box))
|
|
{
|
|
boxes.push_back(collideBox);
|
|
}
|
|
|
|
collideBox = source->getCollideAgainstBox(it);
|
|
if (collideBox != NULL && collideBox->intersects(box))
|
|
{
|
|
boxes.push_back(collideBox);
|
|
}
|
|
}
|
|
|
|
return &boxes;
|
|
}
|
|
|
|
// 4J Stu - Brought forward from 12w36 to fix #46282 - TU5: Gameplay: Exiting the minecart in a tight corridor damages the player
|
|
AABBList *Level::getTileCubes(AABB *box, bool blockAtEdge/* = false */)
|
|
{
|
|
return getCubes(nullptr, box, true, blockAtEdge);
|
|
//boxes.clear();
|
|
//int x0 = Mth::floor(box->x0);
|
|
//int x1 = Mth::floor(box->x1 + 1);
|
|
//int y0 = Mth::floor(box->y0);
|
|
//int y1 = Mth::floor(box->y1 + 1);
|
|
//int z0 = Mth::floor(box->z0);
|
|
//int z1 = Mth::floor(box->z1 + 1);
|
|
|
|
//for (int x = x0; x < x1; x++)
|
|
//{
|
|
// for (int z = z0; z < z1; z++)
|
|
// {
|
|
// if (hasChunkAt(x, 64, z))
|
|
// {
|
|
// for (int y = y0 - 1; y < y1; y++)
|
|
// {
|
|
// Tile *tile = Tile::tiles[getTile(x, y, z)];
|
|
|
|
// if (tile != NULL)
|
|
// {
|
|
// tile->addAABBs(this, x, y, z, box, &boxes);
|
|
// }
|
|
// }
|
|
// }
|
|
// }
|
|
//}
|
|
|
|
//return boxes;
|
|
}
|
|
|
|
//4J - change brought forward from 1.8.2
|
|
int Level::getOldSkyDarken(float a)
|
|
{
|
|
float td = getTimeOfDay(a);
|
|
|
|
float br = 1 - (Mth::cos(td * PI * 2) * 2 + 0.5f);
|
|
if (br < 0.0f) br = 0.0f;
|
|
if (br > 1.0f) br = 1.0f;
|
|
|
|
br = 1 - br;
|
|
|
|
br *= 1 - (getRainLevel(a) * 5 / 16.0f);
|
|
br *= 1 - (getThunderLevel(a) * 5 / 16.0f);
|
|
br = 1 - br;
|
|
return ((int) (br * 11));
|
|
}
|
|
|
|
//4J - change brought forward from 1.8.2
|
|
float Level::getSkyDarken(float a)
|
|
{
|
|
float td = getTimeOfDay(a);
|
|
|
|
float br = 1 - (Mth::cos(td * PI * 2) * 2 + 0.2f);
|
|
if (br < 0.0f) br = 0.0f;
|
|
if (br > 1.0f) br = 1.0f;
|
|
|
|
br = 1.0f - br;
|
|
|
|
br *= 1.0f - (getRainLevel(a) * 5.0f / 16.0f);
|
|
br *= 1.0f - (getThunderLevel(a) * 5.0f / 16.0f);
|
|
// return ((int) (br * 13));
|
|
|
|
return br * 0.8f + 0.2f;
|
|
}
|
|
|
|
|
|
|
|
Vec3 *Level::getSkyColor(shared_ptr<Entity> source, float a)
|
|
{
|
|
float td = getTimeOfDay(a);
|
|
|
|
float br = Mth::cos(td * PI * 2) * 2 + 0.5f;
|
|
if (br < 0.0f) br = 0.0f;
|
|
if (br > 1.0f) br = 1.0f;
|
|
|
|
int xx = Mth::floor(source->x);
|
|
int zz = Mth::floor(source->z);
|
|
Biome *biome = getBiome(xx, zz);
|
|
float temp = biome->getTemperature();
|
|
int skyColor = biome->getSkyColor(temp);
|
|
|
|
float r = ((skyColor >> 16) & 0xff) / 255.0f;
|
|
float g = ((skyColor >> 8) & 0xff) / 255.0f;
|
|
float b = ((skyColor) & 0xff) / 255.0f;
|
|
r *= br;
|
|
g *= br;
|
|
b *= br;
|
|
|
|
float rainLevel = getRainLevel(a);
|
|
if (rainLevel > 0)
|
|
{
|
|
float mid = (r * 0.30f + g * 0.59f + b * 0.11f) * 0.6f;
|
|
|
|
float ba = 1 - rainLevel * 0.75f;
|
|
r = r * ba + mid * (1 - ba);
|
|
g = g * ba + mid * (1 - ba);
|
|
b = b * ba + mid * (1 - ba);
|
|
}
|
|
float thunderLevel = getThunderLevel(a);
|
|
if (thunderLevel > 0)
|
|
{
|
|
float mid = (r * 0.30f + g * 0.59f + b * 0.11f) * 0.2f;
|
|
|
|
float ba = 1 - thunderLevel * 0.75f;
|
|
r = r * ba + mid * (1 - ba);
|
|
g = g * ba + mid * (1 - ba);
|
|
b = b * ba + mid * (1 - ba);
|
|
}
|
|
|
|
if (skyFlashTime > 0)
|
|
{
|
|
float f = (skyFlashTime - a);
|
|
if (f > 1) f = 1;
|
|
f = f * 0.45f;
|
|
r = r * (1 - f) + 0.8f * f;
|
|
g = g * (1 - f) + 0.8f * f;
|
|
b = b * (1 - f) + 1 * f;
|
|
}
|
|
|
|
return Vec3::newTemp(r, g, b);
|
|
}
|
|
|
|
|
|
float Level::getTimeOfDay(float a)
|
|
{
|
|
/*
|
|
* 4J-PB removed line below - notch committed 1.6.6 with the incorrect
|
|
* getTimeOfDay and changed it before releasing (without
|
|
* re-committing)... that should be the only difference // jeb
|
|
*/
|
|
/* if (this != NULL) return 0.5f; */
|
|
|
|
// 4J Added if so we can override timeOfDay without changing the time that affects ticking of things
|
|
return dimension->getTimeOfDay(levelData->getDayTime(), a);;
|
|
}
|
|
|
|
int Level::getMoonPhase()
|
|
{
|
|
return dimension->getMoonPhase(levelData->getDayTime());
|
|
}
|
|
|
|
float Level::getMoonBrightness()
|
|
{
|
|
return Dimension::MOON_BRIGHTNESS_PER_PHASE[dimension->getMoonPhase(levelData->getDayTime())];
|
|
}
|
|
|
|
float Level::getSunAngle(float a)
|
|
{
|
|
float td = getTimeOfDay(a);
|
|
return td * PI * 2;
|
|
}
|
|
|
|
|
|
Vec3 *Level::getCloudColor(float a)
|
|
{
|
|
float td = getTimeOfDay(a);
|
|
|
|
float br = Mth::cos(td * PI * 2) * 2.0f + 0.5f;
|
|
if (br < 0.0f) br = 0.0f;
|
|
if (br > 1.0f) br = 1.0f;
|
|
|
|
int baseCloudColour = Minecraft::GetInstance()->getColourTable()->getColor( eMinecraftColour_In_Cloud_Base_Colour );
|
|
|
|
float r = ((baseCloudColour >> 16) & 0xff) / 255.0f;
|
|
float g = ((baseCloudColour >> 8) & 0xff) / 255.0f;
|
|
float b = ((baseCloudColour) & 0xff) / 255.0f;
|
|
|
|
float rainLevel = getRainLevel(a);
|
|
if (rainLevel > 0)
|
|
{
|
|
float mid = (r * 0.30f + g * 0.59f + b * 0.11f) * 0.6f;
|
|
|
|
float ba = 1 - rainLevel * 0.95f;
|
|
r = r * ba + mid * (1 - ba);
|
|
g = g * ba + mid * (1 - ba);
|
|
b = b * ba + mid * (1 - ba);
|
|
}
|
|
|
|
r *= br * 0.90f + 0.10f;
|
|
g *= br * 0.90f + 0.10f;
|
|
b *= br * 0.85f + 0.15f;
|
|
|
|
float thunderLevel = getThunderLevel(a);
|
|
if (thunderLevel > 0)
|
|
{
|
|
float mid = (r * 0.30f + g * 0.59f + b * 0.11f) * 0.2f;
|
|
|
|
float ba = 1 - thunderLevel * 0.95f;
|
|
r = r * ba + mid * (1 - ba);
|
|
g = g * ba + mid * (1 - ba);
|
|
b = b * ba + mid * (1 - ba);
|
|
}
|
|
|
|
return Vec3::newTemp(r, g, b);
|
|
}
|
|
|
|
|
|
Vec3 *Level::getFogColor(float a)
|
|
{
|
|
float td = getTimeOfDay(a);
|
|
return dimension->getFogColor(td, a);
|
|
}
|
|
|
|
|
|
int Level::getTopRainBlock(int x, int z)
|
|
{
|
|
// 4J - optimisation brought forward from 1.8.2 - used to do full calculation here but result is now cached in LevelChunk
|
|
return getChunkAt(x, z)->getTopRainBlock(x & 15, z & 15);
|
|
}
|
|
|
|
// 4J added
|
|
bool Level::biomeHasRain(int x, int z)
|
|
{
|
|
return getChunkAt(x, z)->biomeHasRain(x & 15, z & 15);
|
|
}
|
|
|
|
// 4J added
|
|
bool Level::biomeHasSnow(int x, int z)
|
|
{
|
|
return getChunkAt(x, z)->biomeHasSnow(x & 15, z & 15);
|
|
}
|
|
|
|
int Level::getTopSolidBlock(int x, int z)
|
|
{
|
|
LevelChunk *levelChunk = getChunkAt(x, z);
|
|
|
|
int y = levelChunk->getHighestSectionPosition() + 15;
|
|
|
|
x &= 15;
|
|
z &= 15;
|
|
|
|
while (y > 0)
|
|
{
|
|
int t = levelChunk->getTile(x, y, z);
|
|
if (t == 0 || !(Tile::tiles[t]->material->blocksMotion()) || Tile::tiles[t]->material == Material::leaves)
|
|
{
|
|
y--;
|
|
}
|
|
else
|
|
{
|
|
return y + 1;
|
|
}
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
|
|
int Level::getLightDepth(int x, int z)
|
|
{
|
|
return getChunkAt(x, z)->getHeightmap(x & 15, z & 15);
|
|
}
|
|
|
|
|
|
float Level::getStarBrightness(float a)
|
|
{
|
|
float td = getTimeOfDay(a);
|
|
|
|
float br = 1 - (Mth::cos(td * PI * 2) * 2 + 0.25f);
|
|
if (br < 0.0f) br = 0.0f;
|
|
if (br > 1.0f) br = 1.0f;
|
|
|
|
return br * br * 0.5f;
|
|
}
|
|
|
|
void Level::addToTickNextTick(int x, int y, int z, int tileId, int tickDelay)
|
|
{
|
|
}
|
|
|
|
void Level::addToTickNextTick(int x, int y, int z, int tileId, int tickDelay, int priorityTilt)
|
|
{
|
|
}
|
|
|
|
void Level::forceAddTileTick(int x, int y, int z, int tileId, int tickDelay, int prioTilt)
|
|
{
|
|
}
|
|
|
|
void Level::tickEntities()
|
|
{
|
|
vector<shared_ptr<Entity> >::iterator itGE = globalEntities.begin();
|
|
while( itGE != globalEntities.end() )
|
|
{
|
|
shared_ptr<Entity> e = *itGE;
|
|
e->tickCount++;
|
|
e->tick();
|
|
if (e->removed)
|
|
{
|
|
itGE = globalEntities.erase( itGE );
|
|
}
|
|
else
|
|
{
|
|
itGE++;
|
|
}
|
|
}
|
|
|
|
EnterCriticalSection(&m_entitiesCS);
|
|
|
|
for (auto it = entities.begin(); it != entities.end();)
|
|
{
|
|
bool found = false;
|
|
for(auto& it2 : entitiesToRemove)
|
|
{
|
|
if( (*it) == it2 )
|
|
{
|
|
found = true;
|
|
break;
|
|
}
|
|
}
|
|
if( found )
|
|
{
|
|
it = entities.erase(it);
|
|
}
|
|
else
|
|
{
|
|
it++;
|
|
}
|
|
}
|
|
LeaveCriticalSection(&m_entitiesCS);
|
|
|
|
for (auto& e : entitiesToRemove)
|
|
{
|
|
int xc = e->xChunk;
|
|
int zc = e->zChunk;
|
|
if (e->inChunk && hasChunk(xc, zc))
|
|
{
|
|
getChunk(xc, zc)->removeEntity(e);
|
|
}
|
|
}
|
|
|
|
for (auto& it : entitiesToRemove)
|
|
{
|
|
entityRemoved(it);
|
|
}
|
|
//
|
|
entitiesToRemove.clear();
|
|
|
|
//for (int i = 0; i < entities.size(); i++)
|
|
|
|
/* 4J Jev, using an iterator causes problems here as
|
|
* the vector is modified from inside this loop.
|
|
*/
|
|
EnterCriticalSection(&m_entitiesCS);
|
|
|
|
for (unsigned int i = 0; i < entities.size(); )
|
|
{
|
|
shared_ptr<Entity> e = entities.at(i);
|
|
|
|
if (e->riding != NULL)
|
|
{
|
|
if (e->riding->removed || e->riding->rider.lock() != e)
|
|
{
|
|
e->riding->rider = weak_ptr<Entity>();
|
|
e->riding = nullptr;
|
|
}
|
|
else
|
|
{
|
|
i++;
|
|
continue;
|
|
}
|
|
}
|
|
|
|
if (!e->removed)
|
|
{
|
|
#ifndef _FINAL_BUILD
|
|
if ( !( app.DebugSettingsOn() && app.GetMobsDontTickEnabled() && e->instanceof(eTYPE_MOB) && !e->instanceof(eTYPE_PLAYER)) )
|
|
#endif
|
|
{
|
|
tick(e);
|
|
}
|
|
}
|
|
|
|
if (e->removed)
|
|
{
|
|
int xc = e->xChunk;
|
|
int zc = e->zChunk;
|
|
if (e->inChunk && hasChunk(xc, zc))
|
|
{
|
|
getChunk(xc, zc)->removeEntity(e);
|
|
}
|
|
//entities.remove(i--);
|
|
//itE = entities.erase( itE );
|
|
|
|
// 4J Find the entity again before deleting, as things might have moved in the entity array eg
|
|
// from the explosion created by tnt
|
|
auto it = find(entities.begin(), entities.end(), e);
|
|
if( it != entities.end() )
|
|
{
|
|
entities.erase(it);
|
|
}
|
|
|
|
entityRemoved(e);
|
|
}
|
|
else
|
|
{
|
|
i++;
|
|
}
|
|
}
|
|
LeaveCriticalSection(&m_entitiesCS);
|
|
|
|
EnterCriticalSection(&m_tileEntityListCS);
|
|
|
|
updatingTileEntities = true;
|
|
for (auto it = tileEntityList.begin(); it != tileEntityList.end();)
|
|
{
|
|
shared_ptr<TileEntity> te = *it;//tilevector<shared_ptr<Entity> >.at(i);
|
|
if( !te->isRemoved() && te->hasLevel() )
|
|
{
|
|
if (hasChunkAt(te->x, te->y, te->z))
|
|
{
|
|
#ifdef _LARGE_WORLDS
|
|
LevelChunk *lc = getChunk(te->x >> 4, te->z >> 4);
|
|
if(!isClientSide || !lc->isUnloaded())
|
|
#endif
|
|
{
|
|
te->tick();
|
|
}
|
|
}
|
|
}
|
|
|
|
if( te->isRemoved() )
|
|
{
|
|
it = tileEntityList.erase(it);
|
|
if (hasChunk(te->x >> 4, te->z >> 4))
|
|
{
|
|
LevelChunk *lc = getChunk(te->x >> 4, te->z >> 4);
|
|
if (lc != NULL) lc->removeTileEntity(te->x & 15, te->y, te->z & 15);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
it++;
|
|
}
|
|
}
|
|
updatingTileEntities = false;
|
|
|
|
// 4J-PB - Stuart - check this is correct here
|
|
|
|
if (!tileEntitiesToUnload.empty())
|
|
{
|
|
//tileEntityList.removeAll(tileEntitiesToUnload);
|
|
|
|
for (auto it = tileEntityList.begin(); it != tileEntityList.end();)
|
|
{
|
|
bool found = false;
|
|
for(auto& it2 : tileEntitiesToUnload)
|
|
{
|
|
if( (*it) == it2 )
|
|
{
|
|
found = true;
|
|
break;
|
|
}
|
|
}
|
|
if( found )
|
|
{
|
|
if(isClientSide)
|
|
{
|
|
__debugbreak();
|
|
}
|
|
it = tileEntityList.erase(it);
|
|
}
|
|
else
|
|
{
|
|
it++;
|
|
}
|
|
}
|
|
tileEntitiesToUnload.clear();
|
|
}
|
|
|
|
if( !pendingTileEntities.empty() )
|
|
{
|
|
for(auto& e : pendingTileEntities)
|
|
{
|
|
if( e && !e->isRemoved() )
|
|
{
|
|
if( find(tileEntityList.begin(),tileEntityList.end(),e) == tileEntityList.end() )
|
|
{
|
|
tileEntityList.push_back(e);
|
|
}
|
|
if (hasChunk(e->x >> 4, e->z >> 4))
|
|
{
|
|
LevelChunk *lc = getChunk(e->x >> 4, e->z >> 4);
|
|
if (lc != NULL) lc->setTileEntity(e->x & 15, e->y, e->z & 15, e);
|
|
}
|
|
|
|
sendTileUpdated(e->x, e->y, e->z);
|
|
}
|
|
}
|
|
pendingTileEntities.clear();
|
|
}
|
|
LeaveCriticalSection(&m_tileEntityListCS);
|
|
}
|
|
|
|
void Level::addAllPendingTileEntities(vector< shared_ptr<TileEntity> >& entities)
|
|
{
|
|
EnterCriticalSection(&m_tileEntityListCS);
|
|
if( updatingTileEntities )
|
|
{
|
|
for(auto& it : entities)
|
|
{
|
|
pendingTileEntities.push_back(it);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
for(auto& it : entities)
|
|
{
|
|
tileEntityList.push_back(it);
|
|
}
|
|
}
|
|
LeaveCriticalSection(&m_tileEntityListCS);
|
|
}
|
|
|
|
void Level::tick(shared_ptr<Entity> e)
|
|
{
|
|
tick(e, true);
|
|
}
|
|
|
|
|
|
void Level::tick(shared_ptr<Entity> e, bool actual)
|
|
{
|
|
int xc = Mth::floor(e->x);
|
|
int zc = Mth::floor(e->z);
|
|
int r = 32;
|
|
#ifdef __PSVITA__
|
|
// AP - make sure the dragon ticks all the time, even when there aren't any chunks.
|
|
if (actual && e->GetType() != eTYPE_ENDERDRAGON && !hasChunksAt(xc - r, 0, zc - r, xc + r, 0, zc + r))
|
|
#else
|
|
if (actual && !hasChunksAt(xc - r, 0, zc - r, xc + r, 0, zc + r))
|
|
#endif
|
|
{
|
|
return;
|
|
}
|
|
|
|
e->xOld = e->x;
|
|
e->yOld = e->y;
|
|
e->zOld = e->z;
|
|
e->yRotO = e->yRot;
|
|
e->xRotO = e->xRot;
|
|
|
|
#ifdef __PSVITA__
|
|
// AP - make sure the dragon ticks all the time, even when there aren't any chunks.
|
|
if (actual && (e->GetType() == eTYPE_ENDERDRAGON || e->inChunk) )
|
|
#else
|
|
if (actual && e->inChunk )
|
|
#endif
|
|
{
|
|
e->tickCount++;
|
|
if (e->riding != NULL)
|
|
{
|
|
e->rideTick();
|
|
}
|
|
else
|
|
{
|
|
e->tick();
|
|
}
|
|
}
|
|
|
|
// SANTITY!!
|
|
if (Double::isNaN(e->x) || Double::isInfinite(e->x)) e->x = e->xOld;
|
|
if (Double::isNaN(e->y) || Double::isInfinite(e->y)) e->y = e->yOld;
|
|
if (Double::isNaN(e->z) || Double::isInfinite(e->z)) e->z = e->zOld;
|
|
if (Double::isNaN(e->xRot) || Double::isInfinite(e->xRot)) e->xRot = e->xRotO;
|
|
if (Double::isNaN(e->yRot) || Double::isInfinite(e->yRot)) e->yRot = e->yRotO;
|
|
|
|
int xcn = Mth::floor(e->x / 16);
|
|
int ycn = Mth::floor(e->y / 16);
|
|
int zcn = Mth::floor(e->z / 16);
|
|
|
|
|
|
|
|
if (!e->inChunk || (e->xChunk != xcn || e->yChunk != ycn || e->zChunk != zcn))
|
|
{
|
|
if (e->inChunk && hasChunk(e->xChunk, e->zChunk))
|
|
{
|
|
getChunk(e->xChunk, e->zChunk)->removeEntity(e, e->yChunk);
|
|
}
|
|
|
|
if (hasChunk(xcn, zcn))
|
|
{
|
|
|
|
e->inChunk = true;
|
|
MemSect(39);
|
|
getChunk(xcn, zcn)->addEntity(e);
|
|
MemSect(0);
|
|
}
|
|
else
|
|
{
|
|
e->inChunk = false;
|
|
// e.remove();
|
|
}
|
|
}
|
|
|
|
if (actual && e->inChunk)
|
|
{
|
|
if (e->rider.lock() != NULL)
|
|
{
|
|
if (e->rider.lock()->removed || e->rider.lock()->riding != e)
|
|
{
|
|
e->rider.lock()->riding = nullptr;
|
|
e->rider = weak_ptr<Entity>();
|
|
}
|
|
else
|
|
{
|
|
tick(e->rider.lock());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
bool Level::isUnobstructed(AABB *aabb)
|
|
{
|
|
return isUnobstructed(aabb, nullptr);
|
|
}
|
|
|
|
bool Level::isUnobstructed(AABB *aabb, shared_ptr<Entity> ignore)
|
|
{
|
|
vector<shared_ptr<Entity> > *ents = getEntities(nullptr, aabb);
|
|
for (auto& e : *ents)
|
|
{
|
|
if (e && !e->removed && e->blocksBuilding && e != ignore) return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
|
|
bool Level::containsAnyBlocks(AABB *box)
|
|
{
|
|
int x0 = Mth::floor(box->x0);
|
|
int x1 = Mth::floor(box->x1 + 1);
|
|
int y0 = Mth::floor(box->y0);
|
|
int y1 = Mth::floor(box->y1 + 1);
|
|
int z0 = Mth::floor(box->z0);
|
|
int z1 = Mth::floor(box->z1 + 1);
|
|
|
|
if (box->x0 < 0) x0--;
|
|
if (box->y0 < 0) y0--;
|
|
if (box->z0 < 0) z0--;
|
|
|
|
for (int x = x0; x < x1; x++)
|
|
for (int y = y0; y < y1; y++)
|
|
for (int z = z0; z < z1; z++)
|
|
{
|
|
Tile *tile = Tile::tiles[getTile(x, y, z)];
|
|
if (tile != NULL)
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
|
|
bool Level::containsAnyLiquid(AABB *box)
|
|
{
|
|
int x0 = Mth::floor(box->x0);
|
|
int x1 = Mth::floor(box->x1 + 1);
|
|
int y0 = Mth::floor(box->y0);
|
|
int y1 = Mth::floor(box->y1 + 1);
|
|
int z0 = Mth::floor(box->z0);
|
|
int z1 = Mth::floor(box->z1 + 1);
|
|
|
|
if (box->x0 < 0) x0--;
|
|
if (box->y0 < 0) y0--;
|
|
if (box->z0 < 0) z0--;
|
|
|
|
for (int x = x0; x < x1; x++)
|
|
for (int y = y0; y < y1; y++)
|
|
for (int z = z0; z < z1; z++)
|
|
{
|
|
Tile *tile = Tile::tiles[getTile(x, y, z)];
|
|
if (tile != NULL && tile->material->isLiquid())
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
// 4J - added this to be used during mob spawning, and it returns true if there's any liquid in the bounding box, or might be because
|
|
// we don't have a loaded chunk that we'd need to determine whether it really did. The overall aim is to not load or create any chunk
|
|
// we haven't already got, and be cautious about placing the mob's.
|
|
bool Level::containsAnyLiquid_NoLoad(AABB *box)
|
|
{
|
|
int x0 = Mth::floor(box->x0);
|
|
int x1 = Mth::floor(box->x1 + 1);
|
|
int y0 = Mth::floor(box->y0);
|
|
int y1 = Mth::floor(box->y1 + 1);
|
|
int z0 = Mth::floor(box->z0);
|
|
int z1 = Mth::floor(box->z1 + 1);
|
|
|
|
if (box->x0 < 0) x0--;
|
|
if (box->y0 < 0) y0--;
|
|
if (box->z0 < 0) z0--;
|
|
|
|
for (int x = x0; x < x1; x++)
|
|
for (int y = y0; y < y1; y++)
|
|
for (int z = z0; z < z1; z++)
|
|
{
|
|
if( !hasChunkAt(x,y,z) ) return true; // If we don't have it, it might be liquid...
|
|
Tile *tile = Tile::tiles[getTile(x, y, z)];
|
|
if (tile != NULL && tile->material->isLiquid())
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
|
|
bool Level::containsFireTile(AABB *box)
|
|
{
|
|
int x0 = Mth::floor(box->x0);
|
|
int x1 = Mth::floor(box->x1 + 1);
|
|
int y0 = Mth::floor(box->y0);
|
|
int y1 = Mth::floor(box->y1 + 1);
|
|
int z0 = Mth::floor(box->z0);
|
|
int z1 = Mth::floor(box->z1 + 1);
|
|
|
|
if (hasChunksAt(x0, y0, z0, x1, y1, z1))
|
|
{
|
|
for (int x = x0; x < x1; x++)
|
|
for (int y = y0; y < y1; y++)
|
|
for (int z = z0; z < z1; z++)
|
|
{
|
|
int t = getTile(x, y, z);
|
|
|
|
if (t == Tile::fire_Id || t == Tile::lava_Id || t == Tile::calmLava_Id) return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
|
|
bool Level::checkAndHandleWater(AABB *box, Material *material, shared_ptr<Entity> e)
|
|
{
|
|
int x0 = Mth::floor(box->x0);
|
|
int x1 = Mth::floor(box->x1 + 1);
|
|
|
|
int y0 = Mth::floor(box->y0);
|
|
int y1 = Mth::floor(box->y1 + 1);
|
|
|
|
int z0 = Mth::floor(box->z0);
|
|
int z1 = Mth::floor(box->z1 + 1);
|
|
|
|
if (!hasChunksAt(x0, y0, z0, x1, y1, z1))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool ok = false;
|
|
Vec3 *current = Vec3::newTemp(0, 0, 0);
|
|
for (int x = x0; x < x1; x++)
|
|
{
|
|
for (int y = y0; y < y1; y++)
|
|
{
|
|
for (int z = z0; z < z1; z++)
|
|
{
|
|
Tile *tile = Tile::tiles[getTile(x, y, z)];
|
|
if (tile != NULL && tile->material == material)
|
|
{
|
|
double yt0 = y + 1 - LiquidTile::getHeight(getData(x, y, z));
|
|
if (y1 >= yt0)
|
|
{
|
|
ok = true;
|
|
tile->handleEntityInside(this, x, y, z, e, current);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (current->length() > 0 && e->isPushedByWater())
|
|
{
|
|
current = current->normalize();
|
|
double pow = 0.014;
|
|
e->xd += current->x * pow;
|
|
e->yd += current->y * pow;
|
|
e->zd += current->z * pow;
|
|
}
|
|
return ok;
|
|
}
|
|
|
|
|
|
bool Level::containsMaterial(AABB *box, Material *material)
|
|
{
|
|
int x0 = Mth::floor(box->x0);
|
|
int x1 = Mth::floor(box->x1 + 1);
|
|
int y0 = Mth::floor(box->y0);
|
|
int y1 = Mth::floor(box->y1 + 1);
|
|
int z0 = Mth::floor(box->z0);
|
|
int z1 = Mth::floor(box->z1 + 1);
|
|
|
|
for (int x = x0; x < x1; x++)
|
|
{
|
|
for (int y = y0; y < y1; y++)
|
|
{
|
|
for (int z = z0; z < z1; z++)
|
|
{
|
|
Tile *tile = Tile::tiles[getTile(x, y, z)];
|
|
if (tile != NULL && tile->material == material)
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
|
|
bool Level::containsLiquid(AABB *box, Material *material)
|
|
{
|
|
int x0 = Mth::floor(box->x0);
|
|
int x1 = Mth::floor(box->x1 + 1);
|
|
int y0 = Mth::floor(box->y0);
|
|
int y1 = Mth::floor(box->y1 + 1);
|
|
int z0 = Mth::floor(box->z0);
|
|
int z1 = Mth::floor(box->z1 + 1);
|
|
|
|
for (int x = x0; x < x1; x++)
|
|
{
|
|
for (int y = y0; y < y1; y++)
|
|
{
|
|
for (int z = z0; z < z1; z++)
|
|
{
|
|
Tile *tile = Tile::tiles[getTile(x, y, z)];
|
|
if (tile != NULL && tile->material == material)
|
|
{
|
|
int data = getData(x, y, z);
|
|
double yh1 = y + 1;
|
|
if (data < 8)
|
|
{
|
|
yh1 = y + 1 - data / 8.0;
|
|
}
|
|
if (yh1 >= box->y0)
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
|
|
shared_ptr<Explosion> Level::explode(shared_ptr<Entity> source, double x, double y, double z, float r, bool destroyBlocks)
|
|
{
|
|
return explode(source, x, y, z, r, false, destroyBlocks);
|
|
}
|
|
|
|
|
|
shared_ptr<Explosion> Level::explode(shared_ptr<Entity> source, double x, double y, double z, float r, bool fire, bool destroyBlocks)
|
|
{
|
|
shared_ptr<Explosion> explosion = shared_ptr<Explosion>( new Explosion(this, source, x, y, z, r) );
|
|
explosion->fire = fire;
|
|
explosion->destroyBlocks = destroyBlocks;
|
|
explosion->explode();
|
|
explosion->finalizeExplosion(true);
|
|
return explosion;
|
|
}
|
|
|
|
|
|
float Level::getSeenPercent(Vec3 *center, AABB *bb)
|
|
{
|
|
double xs = 1.0 / ((bb->x1 - bb->x0) * 2 + 1);
|
|
double ys = 1.0 / ((bb->y1 - bb->y0) * 2 + 1);
|
|
double zs = 1.0 / ((bb->z1 - bb->z0) * 2 + 1);
|
|
int hits = 0;
|
|
int count = 0;
|
|
for (double xx = 0; xx <= 1; xx += xs) // 4J Stu - xx, yy and zz were floats, made them doubles to remove warnings
|
|
for (double yy = 0; yy <= 1; yy += ys)
|
|
for (double zz = 0; zz <= 1; zz += zs)
|
|
{
|
|
double x = bb->x0 + (bb->x1 - bb->x0) * xx;
|
|
double y = bb->y0 + (bb->y1 - bb->y0) * yy;
|
|
double z = bb->z0 + (bb->z1 - bb->z0) * zz;
|
|
HitResult *res = clip(Vec3::newTemp(x, y, z), center);
|
|
if ( res == NULL) hits++;
|
|
delete res;
|
|
count++;
|
|
}
|
|
|
|
return hits / (float) count;
|
|
}
|
|
|
|
|
|
bool Level::extinguishFire(shared_ptr<Player> player, int x, int y, int z, int face)
|
|
{
|
|
if (face == 0) y--;
|
|
if (face == 1) y++;
|
|
if (face == 2) z--;
|
|
if (face == 3) z++;
|
|
if (face == 4) x--;
|
|
if (face == 5) x++;
|
|
|
|
if (getTile(x, y, z) == Tile::fire_Id)
|
|
{
|
|
levelEvent(player, LevelEvent::SOUND_FIZZ, x, y, z, 0);
|
|
removeTile(x, y, z);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/*
|
|
shared_ptr<Entity> Level::findSubclassOf(Entity::Class *entityClass)
|
|
{
|
|
return shared_ptr<Entity>();
|
|
}
|
|
*/
|
|
|
|
|
|
wstring Level::gatherStats()
|
|
{
|
|
wchar_t buf[64];
|
|
EnterCriticalSection(&m_entitiesCS);
|
|
swprintf(buf,64,L"All:%d",entities.size());
|
|
LeaveCriticalSection(&m_entitiesCS);
|
|
return wstring(buf);
|
|
}
|
|
|
|
|
|
wstring Level::gatherChunkSourceStats()
|
|
{
|
|
return chunkSource->gatherStats();
|
|
}
|
|
|
|
|
|
shared_ptr<TileEntity> Level::getTileEntity(int x, int y, int z)
|
|
{
|
|
if (y < minBuildHeight || y >= maxBuildHeight)
|
|
{
|
|
return nullptr;
|
|
}
|
|
shared_ptr<TileEntity> tileEntity = nullptr;
|
|
|
|
if (updatingTileEntities)
|
|
{
|
|
EnterCriticalSection(&m_tileEntityListCS);
|
|
for (int i = 0; i < pendingTileEntities.size(); i++)
|
|
{
|
|
shared_ptr<TileEntity> e = pendingTileEntities.at(i);
|
|
if (!e->isRemoved() && e->x == x && e->y == y && e->z == z)
|
|
{
|
|
tileEntity = e;
|
|
break;
|
|
}
|
|
}
|
|
LeaveCriticalSection(&m_tileEntityListCS);
|
|
}
|
|
|
|
if (tileEntity == NULL)
|
|
{
|
|
LevelChunk *lc = getChunk(x >> 4, z >> 4);
|
|
if (lc != NULL)
|
|
{
|
|
tileEntity = lc->getTileEntity(x & 15, y, z & 15);
|
|
}
|
|
}
|
|
|
|
if (tileEntity == NULL)
|
|
{
|
|
EnterCriticalSection(&m_tileEntityListCS);
|
|
for(auto& e : pendingTileEntities)
|
|
{
|
|
if ( e && !e->isRemoved() && e->x == x && e->y == y && e->z == z)
|
|
{
|
|
tileEntity = e;
|
|
break;
|
|
}
|
|
}
|
|
LeaveCriticalSection(&m_tileEntityListCS);
|
|
}
|
|
return tileEntity;
|
|
}
|
|
|
|
|
|
void Level::setTileEntity(int x, int y, int z, shared_ptr<TileEntity> tileEntity)
|
|
{
|
|
if (tileEntity != NULL && !tileEntity->isRemoved())
|
|
{
|
|
EnterCriticalSection(&m_tileEntityListCS);
|
|
if (updatingTileEntities)
|
|
{
|
|
tileEntity->x = x;
|
|
tileEntity->y = y;
|
|
tileEntity->z = z;
|
|
|
|
// avoid adding duplicates
|
|
for (auto it = pendingTileEntities.begin(); it != pendingTileEntities.end();)
|
|
{
|
|
shared_ptr<TileEntity> next = *it;
|
|
if (next->x == x && next->y == y && next->z == z)
|
|
{
|
|
next->setRemoved();
|
|
it = pendingTileEntities.erase(it);
|
|
}
|
|
else
|
|
{
|
|
++it;
|
|
}
|
|
}
|
|
|
|
pendingTileEntities.push_back(tileEntity);
|
|
}
|
|
else
|
|
{
|
|
tileEntityList.push_back(tileEntity);
|
|
|
|
LevelChunk *lc = getChunk(x >> 4, z >> 4);
|
|
if (lc != NULL) lc->setTileEntity(x & 15, y, z & 15, tileEntity);
|
|
}
|
|
LeaveCriticalSection(&m_tileEntityListCS);
|
|
}
|
|
}
|
|
|
|
void Level::removeTileEntity(int x, int y, int z)
|
|
{
|
|
EnterCriticalSection(&m_tileEntityListCS);
|
|
shared_ptr<TileEntity> te = getTileEntity(x, y, z);
|
|
if (te != NULL && updatingTileEntities)
|
|
{
|
|
te->setRemoved();
|
|
auto it = find(pendingTileEntities.begin(), pendingTileEntities.end(), te);
|
|
if( it != pendingTileEntities.end() )
|
|
{
|
|
pendingTileEntities.erase(it);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (te != NULL)
|
|
{
|
|
auto it = find(pendingTileEntities.begin(), pendingTileEntities.end(), te);
|
|
if( it != pendingTileEntities.end() )
|
|
{
|
|
pendingTileEntities.erase(it);
|
|
}
|
|
auto it2 = find(tileEntityList.begin(), tileEntityList.end(), te);
|
|
if( it2 != tileEntityList.end() )
|
|
{
|
|
tileEntityList.erase(it2);
|
|
}
|
|
}
|
|
LevelChunk *lc = getChunk(x >> 4, z >> 4);
|
|
if (lc != NULL) lc->removeTileEntity(x & 15, y, z & 15);
|
|
}
|
|
LeaveCriticalSection(&m_tileEntityListCS);
|
|
}
|
|
|
|
void Level::markForRemoval(shared_ptr<TileEntity> entity)
|
|
{
|
|
tileEntitiesToUnload.push_back(entity);
|
|
}
|
|
|
|
bool Level::isSolidRenderTile(int x, int y, int z)
|
|
{
|
|
Tile *tile = Tile::tiles[getTile(x, y, z)];
|
|
if (tile == NULL) return false;
|
|
|
|
// 4J - addition here to make rendering big blocks of leaves more efficient. Normally leaves never consider themselves as solid, so
|
|
// blocks of leaves will have all sides of each block completely visible. Changing to consider as solid if this block is surrounded by
|
|
// other leaves (or solid things). This is paired with another change in Tile::getTexture which makes such solid tiles actually visibly solid (these
|
|
// textures exist already for non-fancy graphics). Note: this tile-specific code is here rather than making some new virtual method in the tiles,
|
|
// for the sake of efficiency - I don't imagine we'll be doing much more of this sort of thing
|
|
|
|
if( tile->id == Tile::leaves_Id )
|
|
{
|
|
int axo[6] = { 1,-1, 0, 0, 0, 0};
|
|
int ayo[6] = { 0, 0, 1,-1, 0, 0};
|
|
int azo[6] = { 0, 0, 0, 0, 1,-1};
|
|
for( int i = 0; i < 6; i++ )
|
|
{
|
|
int t = getTile(x + axo[i], y + ayo[i] , z + azo[i]);
|
|
if( ( t != Tile::leaves_Id ) && ( ( Tile::tiles[t] == NULL ) || !Tile::tiles[t]->isSolidRender() ) )
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
return tile->isSolidRender(!isClientSide);
|
|
}
|
|
|
|
|
|
bool Level::isSolidBlockingTile(int x, int y, int z)
|
|
{
|
|
return Tile::isSolidBlockingTile(getTile(x, y, z));
|
|
}
|
|
|
|
/**
|
|
* This method does the same as isSolidBlockingTile, except it will not
|
|
* check the tile if the coordinates is in an unloaded or empty chunk. This
|
|
* is to help vs the problem of "popping" torches in SMP.
|
|
*/
|
|
|
|
bool Level::isSolidBlockingTileInLoadedChunk(int x, int y, int z, bool valueIfNotLoaded)
|
|
{
|
|
if (x < -MAX_LEVEL_SIZE || z < -MAX_LEVEL_SIZE || x >= MAX_LEVEL_SIZE || z >= MAX_LEVEL_SIZE)
|
|
{
|
|
return valueIfNotLoaded;
|
|
}
|
|
LevelChunk *chunk = chunkSource->getChunk(x >> 4, z >> 4);
|
|
if (chunk == NULL || chunk->isEmpty())
|
|
{
|
|
return valueIfNotLoaded;
|
|
}
|
|
|
|
Tile *tile = Tile::tiles[getTile(x, y, z)];
|
|
if (tile == NULL) return false;
|
|
return tile->material->isSolidBlocking() && tile->isCubeShaped();
|
|
}
|
|
|
|
bool Level::isFullAABBTile(int x, int y, int z)
|
|
{
|
|
int tile = getTile(x, y, z);
|
|
if (tile == 0 || Tile::tiles[tile] == NULL)
|
|
{
|
|
return false;
|
|
}
|
|
AABB *aabb = Tile::tiles[tile]->getAABB(this, x, y, z);
|
|
return aabb != NULL && aabb->getSize() >= 1;
|
|
}
|
|
|
|
bool Level::isTopSolidBlocking(int x, int y, int z)
|
|
{
|
|
// Temporary workaround until tahgs per-face solidity is finished
|
|
Tile *tile = Tile::tiles[getTile(x, y, z)];
|
|
return isTopSolidBlocking(tile, getData(x, y, z));
|
|
}
|
|
|
|
bool Level::isTopSolidBlocking(Tile *tile, int data)
|
|
{
|
|
if (tile == NULL) return false;
|
|
|
|
if (tile->material->isSolidBlocking() && tile->isCubeShaped()) return true;
|
|
if (dynamic_cast<StairTile *>(tile) != NULL)
|
|
{
|
|
return (data & StairTile::UPSIDEDOWN_BIT) == StairTile::UPSIDEDOWN_BIT;
|
|
}
|
|
if (dynamic_cast<HalfSlabTile *>(tile) != NULL)
|
|
{
|
|
return (data & HalfSlabTile::TOP_SLOT_BIT) == HalfSlabTile::TOP_SLOT_BIT;
|
|
}
|
|
if (dynamic_cast<HopperTile *>(tile) != NULL) return true;
|
|
if (dynamic_cast<TopSnowTile *>(tile) != NULL) return (data & TopSnowTile::HEIGHT_MASK) == TopSnowTile::MAX_HEIGHT + 1;
|
|
return false;
|
|
}
|
|
|
|
void Level::updateSkyBrightness()
|
|
{
|
|
int newDark = getOldSkyDarken(1);
|
|
if (newDark != skyDarken)
|
|
{
|
|
skyDarken = newDark;
|
|
}
|
|
}
|
|
|
|
void Level::setSpawnSettings(bool spawnEnemies, bool spawnFriendlies)
|
|
{
|
|
this->spawnEnemies = spawnEnemies;
|
|
this->spawnFriendlies = spawnFriendlies;
|
|
}
|
|
|
|
void Level::tick()
|
|
{
|
|
PIXBeginNamedEvent(0,"Weather tick");
|
|
tickWeather();
|
|
PIXEndNamedEvent();
|
|
}
|
|
|
|
void Level::prepareWeather()
|
|
{
|
|
if (levelData->isRaining())
|
|
{
|
|
rainLevel = 1;
|
|
if (levelData->isThundering())
|
|
{
|
|
thunderLevel = 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
void Level::tickWeather()
|
|
{
|
|
if (dimension->hasCeiling) return;
|
|
|
|
#ifndef _FINAL_BUILD
|
|
// debug setting added to disable weather
|
|
if(app.DebugSettingsOn())
|
|
{
|
|
if(app.GetGameSettingsDebugMask(ProfileManager.GetPrimaryPad())&(1L<<eDebugSetting_DisableWeather))
|
|
{
|
|
levelData->setThundering(false);
|
|
levelData->setThunderTime(random->nextInt(TICKS_PER_DAY * 7) + TICKS_PER_DAY / 2);
|
|
levelData->setRaining(false);
|
|
levelData->setRainTime(random->nextInt(TICKS_PER_DAY * 7) + TICKS_PER_DAY / 2);
|
|
}
|
|
}
|
|
#endif
|
|
|
|
int thunderTime = levelData->getThunderTime();
|
|
if (thunderTime <= 0)
|
|
{
|
|
if (levelData->isThundering())
|
|
{
|
|
levelData->setThunderTime(random->nextInt(20 * 60 * 10) + 20 * 60 * 3);
|
|
}
|
|
else
|
|
{
|
|
levelData->setThunderTime(random->nextInt(TICKS_PER_DAY * 7) + TICKS_PER_DAY / 2);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
thunderTime--;
|
|
levelData->setThunderTime(thunderTime);
|
|
if (thunderTime <= 0)
|
|
{
|
|
levelData->setThundering(!levelData->isThundering());
|
|
}
|
|
}
|
|
|
|
int rainTime = levelData->getRainTime();
|
|
if (rainTime <= 0)
|
|
{
|
|
if (levelData->isRaining())
|
|
{
|
|
levelData->setRainTime(random->nextInt(TICKS_PER_DAY / 2) + TICKS_PER_DAY / 2);
|
|
}
|
|
else
|
|
{
|
|
levelData->setRainTime(random->nextInt(TICKS_PER_DAY * 7) + TICKS_PER_DAY / 2);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
rainTime--;
|
|
levelData->setRainTime(rainTime);
|
|
if (rainTime <= 0)
|
|
{
|
|
levelData->setRaining(!levelData->isRaining());
|
|
}
|
|
/* if( !levelData->isRaining() )
|
|
{
|
|
levelData->setRaining(true);
|
|
}*/
|
|
}
|
|
|
|
oRainLevel = rainLevel;
|
|
if (levelData->isRaining())
|
|
{
|
|
rainLevel += 0.01;
|
|
}
|
|
else
|
|
{
|
|
rainLevel -= 0.01;
|
|
}
|
|
if (rainLevel < 0) rainLevel = 0;
|
|
if (rainLevel > 1) rainLevel = 1;
|
|
|
|
oThunderLevel = thunderLevel;
|
|
if (levelData->isThundering())
|
|
{
|
|
thunderLevel += 0.01;
|
|
}
|
|
else
|
|
{
|
|
thunderLevel -= 0.01;
|
|
}
|
|
if (thunderLevel < 0) thunderLevel = 0;
|
|
if (thunderLevel > 1) thunderLevel = 1;
|
|
}
|
|
|
|
void Level::toggleDownfall()
|
|
{
|
|
// this will trick the tickWeather method to toggle rain next tick
|
|
levelData->setRainTime(1);
|
|
}
|
|
|
|
void Level::buildAndPrepareChunksToPoll()
|
|
{
|
|
#if 0
|
|
for (auto& player : players)
|
|
{
|
|
int xx = Mth::floor(player->x / 16);
|
|
int zz = Mth::floor(player->z / 16);
|
|
|
|
int r = CHUNK_POLL_RANGE;
|
|
for (int x = -r; x <= r; x++)
|
|
for (int z = -r; z <= r; z++)
|
|
{
|
|
chunksToPoll.insert(ChunkPos(x + xx, z + zz));
|
|
}
|
|
}
|
|
#else
|
|
// 4J - rewritten to add chunks interleaved by player, and to add them from the centre outwards. We're going to be
|
|
// potentially adding less creatures than the original so that our count stays consistent with number of players added, so
|
|
// we want to make sure as best we can that the ones we do add are near the active players
|
|
int playerCount = (int)players.size();
|
|
int *xx = new int[playerCount];
|
|
int *zz = new int[playerCount];
|
|
for (size_t i = 0; i < playerCount; i++)
|
|
{
|
|
shared_ptr<Player> player = players[i];
|
|
xx[i] = Mth::floor(player->x / 16);
|
|
zz[i] = Mth::floor(player->z / 16);
|
|
chunksToPoll.insert(ChunkPos(xx[i], zz[i] ));
|
|
}
|
|
|
|
for( int r = 1; r <= 9; r++ )
|
|
{
|
|
for( int l = 0; l < ( r * 2 ) ; l++ )
|
|
{
|
|
for( int i = 0; i < playerCount; i++ )
|
|
{
|
|
chunksToPoll.insert(ChunkPos( ( xx[i] - r ) + l , ( zz[i] - r ) ) );
|
|
chunksToPoll.insert(ChunkPos( ( xx[i] + r ) , ( zz[i] - r ) + l ) );
|
|
chunksToPoll.insert(ChunkPos( ( xx[i] + r ) - l , ( zz[i] + r ) ) );
|
|
chunksToPoll.insert(ChunkPos( ( xx[i] - r ) , ( zz[i] + r ) - l ) );
|
|
}
|
|
}
|
|
}
|
|
delete [] xx;
|
|
delete [] zz;
|
|
#endif
|
|
|
|
if (delayUntilNextMoodSound > 0) delayUntilNextMoodSound--;
|
|
|
|
// 4J Stu - Added 1.2.3, but not sure if we want to do it
|
|
//util.Timer.push("playerCheckLight");
|
|
//// randomly check areas around the players
|
|
//if (!players.isEmpty()) {
|
|
// int select = random.nextInt(players.size());
|
|
// Player player = players.get(select);
|
|
// int px = Mth.floor(player.x) + random.nextInt(11) - 5;
|
|
// int py = Mth.floor(player.y) + random.nextInt(11) - 5;
|
|
// int pz = Mth.floor(player.z) + random.nextInt(11) - 5;
|
|
// checkLight(px, py, pz);
|
|
//}
|
|
//util.Timer.pop();
|
|
}
|
|
|
|
void Level::tickClientSideTiles(int xo, int zo, LevelChunk *lc)
|
|
{
|
|
//lc->tick(); // 4J - brought this lighting update forward from 1.8.2
|
|
|
|
if (delayUntilNextMoodSound == 0 && !isClientSide)
|
|
{
|
|
randValue = randValue * 3 + addend;
|
|
int val = (randValue >> 2);
|
|
int x = (val & 15);
|
|
int z = ((val >> 8) & 15);
|
|
int y = ((val >> 16) & genDepthMinusOne);
|
|
|
|
int id = lc->getTile(x, y, z);
|
|
x += xo;
|
|
z += zo;
|
|
if (id == 0 && this->getDaytimeRawBrightness(x, y, z) <= random->nextInt(8) && getBrightness(LightLayer::Sky, x, y, z) <= 0)
|
|
{
|
|
shared_ptr<Player> player = getNearestPlayer(x + 0.5, y + 0.5, z + 0.5, 8);
|
|
if (player != NULL && player->distanceToSqr(x + 0.5, y + 0.5, z + 0.5) > 2 * 2)
|
|
{
|
|
// 4J-PB - Fixed issue with cave audio event having 2 sounds at 192k
|
|
#ifdef _XBOX
|
|
this->playSound(x + 0.5, y + 0.5, z + 0.5,eSoundType_AMBIENT_CAVE_CAVE2, 0.7f, 0.8f + random->nextFloat() * 0.2f);
|
|
#else
|
|
this->playSound(x + 0.5, y + 0.5, z + 0.5,eSoundType_AMBIENT_CAVE_CAVE, 0.7f, 0.8f + random->nextFloat() * 0.2f);
|
|
#endif
|
|
delayUntilNextMoodSound = random->nextInt(SharedConstants::TICKS_PER_SECOND * 60 * 10) + SharedConstants::TICKS_PER_SECOND * 60 * 5;
|
|
}
|
|
}
|
|
}
|
|
|
|
// 4J Stu - Added 1.2.3, but do we need it?
|
|
//lc->checkNextLight();
|
|
}
|
|
|
|
void Level::tickTiles()
|
|
{
|
|
buildAndPrepareChunksToPoll();
|
|
}
|
|
|
|
bool Level::shouldFreezeIgnoreNeighbors(int x, int y, int z)
|
|
{
|
|
return shouldFreeze(x, y, z, false);
|
|
}
|
|
|
|
bool Level::shouldFreeze(int x, int y, int z)
|
|
{
|
|
return shouldFreeze(x, y, z, true);
|
|
}
|
|
|
|
bool Level::shouldFreeze(int x, int y, int z, bool checkNeighbors)
|
|
{
|
|
Biome *biome = getBiome(x, z);
|
|
float temp = biome->getTemperature();
|
|
if (temp > 0.15f) return false;
|
|
|
|
if (y >= 0 && y < maxBuildHeight && getBrightness(LightLayer::Block, x, y, z) < 10)
|
|
{
|
|
int current = getTile(x, y, z);
|
|
if ((current == Tile::calmWater_Id || current == Tile::water_Id) && getData(x, y, z) == 0)
|
|
{
|
|
if (!checkNeighbors) return true;
|
|
|
|
bool surroundedByWater = true;
|
|
if (surroundedByWater && getMaterial(x - 1, y, z) != Material::water) surroundedByWater = false;
|
|
if (surroundedByWater && getMaterial(x + 1, y, z) != Material::water) surroundedByWater = false;
|
|
if (surroundedByWater && getMaterial(x, y, z - 1) != Material::water) surroundedByWater = false;
|
|
if (surroundedByWater && getMaterial(x, y, z + 1) != Material::water) surroundedByWater = false;
|
|
if (!surroundedByWater) return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool Level::shouldSnow(int x, int y, int z)
|
|
{
|
|
Biome *biome = getBiome(x, z);
|
|
float temp = biome->getTemperature();
|
|
if (temp > 0.15f) return false;
|
|
|
|
|
|
if (y >= 0 && y < maxBuildHeight && getBrightness(LightLayer::Block, x, y, z) < 10)
|
|
{
|
|
int below = getTile(x, y - 1, z);
|
|
int current = getTile(x, y, z);
|
|
if (current == 0)
|
|
{
|
|
if (Tile::topSnow->mayPlace(this, x, y, z) && (below != 0 && below != Tile::ice_Id && Tile::tiles[below]->material->blocksMotion()))
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
void Level::checkLight(int x, int y, int z, bool force, bool rootOnlyEmissive) // 4J added force, rootOnlyEmissive parameters
|
|
{
|
|
if (!dimension->hasCeiling) checkLight(LightLayer::Sky, x, y, z, force, false);
|
|
checkLight(LightLayer::Block, x, y, z, force, rootOnlyEmissive);
|
|
}
|
|
|
|
int Level::getExpectedLight(lightCache_t *cache, int x, int y, int z, LightLayer::variety layer, bool propagatedOnly)
|
|
{
|
|
if (layer == LightLayer::Sky && canSeeSky(x, y, z)) return MAX_BRIGHTNESS;
|
|
int id = getTile(x, y, z);
|
|
int result = layer == LightLayer::Sky ? 0 : Tile::lightEmission[id];
|
|
int block = Tile::lightBlock[id];
|
|
if (block >= MAX_BRIGHTNESS && Tile::lightEmission[id] > 0) block = 1;
|
|
if (block < 1) block = 1;
|
|
if (block >= MAX_BRIGHTNESS)
|
|
{
|
|
return propagatedOnly ? 0 : getEmissionCached(cache, 0, x, y, z);
|
|
}
|
|
|
|
if (result >= MAX_BRIGHTNESS - 1) return result;
|
|
|
|
for (int face = 0; face < 6; face++)
|
|
{
|
|
int xx = x + Facing::STEP_X[face];
|
|
int yy = y + Facing::STEP_Y[face];
|
|
int zz = z + Facing::STEP_Z[face];
|
|
int brightness = getBrightnessCached(cache, layer, xx, yy, zz) - block;
|
|
|
|
if (brightness > result) result = brightness;
|
|
if (result >= MAX_BRIGHTNESS - 1) return result;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
// 4J - Made changes here so that lighting goes through a cache, if enabled for this thread
|
|
void Level::checkLight(LightLayer::variety layer, int xc, int yc, int zc, bool force, bool rootOnlyEmissive)
|
|
{
|
|
lightCache_t *cache = (lightCache_t *)TlsGetValue(tlsIdxLightCache);
|
|
uint64_t cacheUse = 0;
|
|
|
|
if( force )
|
|
{
|
|
// 4J - special mode added so we can do lava lighting updates without having all neighbouring chunks loaded in
|
|
if (!hasChunksAt(xc, yc, zc, 0)) return;
|
|
}
|
|
else
|
|
{
|
|
// 4J - this is normal java behaviour
|
|
if (!hasChunksAt(xc, yc, zc, 17)) return;
|
|
}
|
|
|
|
#if 0
|
|
/////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Get the frequency of the timer
|
|
LARGE_INTEGER qwTicksPerSec, qwTime, qwNewTime, qwDeltaTime1, qwDeltaTime2;
|
|
float fElapsedTime1 = 0.0f;
|
|
float fElapsedTime2 = 0.0f;
|
|
QueryPerformanceFrequency( &qwTicksPerSec );
|
|
float fSecsPerTick = 1.0f / (float)qwTicksPerSec.QuadPart;
|
|
|
|
QueryPerformanceCounter( &qwTime );
|
|
/////////////////////////////////////////////////////////////////////////////////////////////
|
|
#endif
|
|
|
|
EnterCriticalSection(&m_checkLightCS);
|
|
|
|
initCachePartial(cache, xc, yc, zc);
|
|
|
|
// If we're in cached mode, then use memory allocated after the cached data itself for the toCheck array, in an attempt to make both that & the other cached data sit on the CPU L2 cache better.
|
|
|
|
int *toCheck;
|
|
if( cache == NULL )
|
|
{
|
|
toCheck = toCheckLevel;
|
|
}
|
|
else
|
|
{
|
|
toCheck = (int *)(cache + (16*16*16));
|
|
}
|
|
|
|
int checkedPosition = 0;
|
|
int toCheckCount = 0;
|
|
//int darktcc = 0;
|
|
|
|
|
|
// 4J - added
|
|
int minXZ = - (dimension->getXZSize() * 16 ) / 2;
|
|
int maxXZ = (dimension->getXZSize() * 16 ) / 2 - 1;
|
|
if( ( xc > maxXZ ) || ( xc < minXZ ) || ( zc > maxXZ ) || ( zc < minXZ ) )
|
|
{
|
|
LeaveCriticalSection(&m_checkLightCS);
|
|
return;
|
|
}
|
|
|
|
// Lock 128K of cache (containing all the lighting cache + first 112K of toCheck array) on L2 to try and stop any cached data getting knocked out of L2 by other non-cached reads (or vice-versa)
|
|
// if( cache ) XLockL2(XLOCKL2_INDEX_TITLE, cache, 128 * 1024, XLOCKL2_LOCK_SIZE_1_WAY, 0 );
|
|
|
|
{
|
|
int centerCurrent = getBrightnessCached(cache, layer, xc, yc, zc);
|
|
int centerExpected = getExpectedLight(cache, xc, yc, zc, layer, false);
|
|
|
|
if( centerExpected != centerCurrent && cache )
|
|
{
|
|
initCacheComplete(cache, xc, yc, zc);
|
|
}
|
|
|
|
if (centerExpected > centerCurrent)
|
|
{
|
|
toCheck[toCheckCount++] = 32 | (32 << 6) | (32 << 12);
|
|
}
|
|
else if (centerExpected < centerCurrent)
|
|
{
|
|
// 4J - added tcn. This is the code that is run when checkLight has been called for a light source that has got darker / turned off.
|
|
// In the original version, after zeroing tiles brightnesses that are deemed to come from this light source, all the zeroed tiles are then passed to the next
|
|
// stage of the function to potentially have their brightnesses put back up again. We shouldn't need to consider All these tiles as starting points for this process, now just
|
|
// considering the edge tiles (defined as a tile where we have a neighbour that is brightner than can be explained by the original light source we are turning off)
|
|
int tcn = 0;
|
|
if (layer == LightLayer::Block || true)
|
|
{
|
|
toCheck[toCheckCount++] = 32 | (32 << 6) | (32 << 12) | (centerCurrent << 18);
|
|
while (checkedPosition < toCheckCount)
|
|
{
|
|
int p = toCheck[checkedPosition++];
|
|
int x = ((p) & 63) - 32 + xc;
|
|
int y = ((p >> 6) & 63) - 32 + yc;
|
|
int z = ((p >> 12) & 63) - 32 + zc;
|
|
int expected = ((p >> 18) & 15);
|
|
int current = getBrightnessCached(cache, layer, x, y, z);
|
|
if (current == expected)
|
|
{
|
|
setBrightnessCached(cache, &cacheUse, layer, x, y, z, 0);
|
|
// cexp--; // 4J - removed, change from 1.2.3
|
|
if (expected > 0)
|
|
{
|
|
int xd = Mth::abs(x - xc);
|
|
int yd = Mth::abs(y - yc);
|
|
int zd = Mth::abs(z - zc);
|
|
if (xd + yd + zd < 17)
|
|
{
|
|
bool edge = false;
|
|
for (int face = 0; face < 6; face++)
|
|
{
|
|
int xx = x + Facing::STEP_X[face];
|
|
int yy = y + Facing::STEP_Y[face];
|
|
int zz = z + Facing::STEP_Z[face];
|
|
|
|
// 4J - added - don't let this lighting creep out of the normal fixed world and into the infinite water chunks beyond
|
|
if( ( xx > maxXZ ) || ( xx < minXZ ) || ( zz > maxXZ ) || ( zz < minXZ ) ) continue;
|
|
if( ( yy < 0 ) || ( yy >= maxBuildHeight ) ) continue;
|
|
|
|
// 4J - some changes here brought forward from 1.2.3
|
|
int block = max(1, getBlockingCached(cache, layer, NULL, xx, yy, zz) );
|
|
current = getBrightnessCached(cache, layer, xx, yy, zz);
|
|
if ((current == expected - block) && (toCheckCount < (32 * 32 * 32))) // 4J - 32 * 32 * 32 was toCheck.length
|
|
{
|
|
toCheck[toCheckCount++] = (xx - xc + 32) | ((yy - yc + 32) << 6) | ((zz - zc + 32) << 12) | ((expected - block) << 18);
|
|
}
|
|
else
|
|
{
|
|
// 4J - added - keep track of which tiles form the edge of the region we are zeroing
|
|
if( current > ( expected - block ) )
|
|
{
|
|
edge = true;
|
|
}
|
|
}
|
|
}
|
|
// 4J - added - keep track of which tiles form the edge of the region we are zeroing - can store over the original elements in the array because tcn must be <= tcp
|
|
if( edge == true )
|
|
{
|
|
toCheck[tcn++] = p;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
checkedPosition = 0;
|
|
// darktcc = tcc; ///////////////////////////////////////////////////
|
|
toCheckCount = tcn; // 4J added - we've moved all the edge tiles to the start of the array, so only need to process these now. The original processes all tcc tiles again in the next section
|
|
}
|
|
}
|
|
|
|
while (checkedPosition < toCheckCount)
|
|
{
|
|
int p = toCheck[checkedPosition++];
|
|
int x = ((p) & 63) - 32 + xc;
|
|
int y = ((p >> 6) & 63) - 32 + yc;
|
|
int z = ((p >> 12) & 63) - 32 + zc;
|
|
|
|
// If force is set, then this is being used to in a special mode to try and light lava tiles as chunks are being loaded in. In this case, we
|
|
// don't want a lighting update to drag in any neighbouring chunks that aren't loaded yet.
|
|
if( force )
|
|
{
|
|
if( !hasChunkAt(x,y,z) )
|
|
{
|
|
continue;
|
|
}
|
|
}
|
|
int current = getBrightnessCached(cache, layer, x, y, z);
|
|
|
|
// If rootOnlyEmissive flag is set, then only consider the starting tile to be possibly emissive.
|
|
bool propagatedOnly = false;
|
|
if (layer == LightLayer::Block)
|
|
{
|
|
if( rootOnlyEmissive )
|
|
{
|
|
propagatedOnly = ( x != xc ) || ( y != yc ) || ( z != zc );
|
|
}
|
|
}
|
|
int expected = getExpectedLight(cache, x, y, z, layer, propagatedOnly);
|
|
|
|
if (expected != current)
|
|
{
|
|
setBrightnessCached(cache, &cacheUse, layer, x, y, z, expected);
|
|
|
|
if (expected > current)
|
|
{
|
|
int xd = abs(x - xc);
|
|
int yd = abs(y - yc);
|
|
int zd = abs(z - zc);
|
|
bool withinBounds = toCheckCount < (32 * 32 * 32) - 6; // 4J - 32 * 32 * 32 was toCheck.length
|
|
if (xd + yd + zd < 17 && withinBounds)
|
|
{
|
|
// 4J - added extra checks here to stop lighting updates moving out of the actual fixed world and into the infinite water chunks
|
|
if( ( x - 1 ) >= minXZ ) { if (getBrightnessCached(cache, layer, x - 1, y, z) < expected) toCheck[toCheckCount++] = (((x - 1 - xc) + 32)) + (((y - yc) + 32) << 6) + (((z - zc) + 32) << 12); }
|
|
if( ( x + 1 ) <= maxXZ ) { if (getBrightnessCached(cache, layer, x + 1, y, z) < expected) toCheck[toCheckCount++] = (((x + 1 - xc) + 32)) + (((y - yc) + 32) << 6) + (((z - zc) + 32) << 12); }
|
|
if( ( y - 1 ) >= 0 ) { if (getBrightnessCached(cache, layer, x, y - 1, z) < expected) toCheck[toCheckCount++] = (((x - xc) + 32)) + (((y - 1 - yc) + 32) << 6) + (((z - zc) + 32) << 12); }
|
|
if( ( y + 1 ) < maxBuildHeight ) { if (getBrightnessCached(cache, layer, x, y + 1, z) < expected) toCheck[toCheckCount++] = (((x - xc) + 32)) + (((y + 1 - yc) + 32) << 6) + (((z - zc) + 32) << 12); }
|
|
if( ( z - 1 ) >= minXZ ) { if (getBrightnessCached(cache, layer, x, y, z - 1) < expected) toCheck[toCheckCount++] = (((x - xc) + 32)) + (((y - yc) + 32) << 6) + (((z - 1 - zc) + 32) << 12); }
|
|
if( ( z + 1 ) <= maxXZ ) { if (getBrightnessCached(cache, layer, x, y, z + 1) < expected) toCheck[toCheckCount++] = (((x - xc) + 32)) + (((y - yc) + 32) << 6) + (((z + 1 - zc) + 32) << 12); }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// if( cache ) XUnlockL2(XLOCKL2_INDEX_TITLE);
|
|
#if 0
|
|
QueryPerformanceCounter( &qwNewTime );
|
|
qwDeltaTime1.QuadPart = qwNewTime.QuadPart - qwTime.QuadPart;
|
|
qwTime = qwNewTime;
|
|
#endif
|
|
|
|
flushCache(cache, cacheUse, layer);
|
|
#if 0
|
|
/////////////////////////////////////////////////////////////////
|
|
if( cache )
|
|
{
|
|
QueryPerformanceCounter( &qwNewTime );
|
|
qwDeltaTime2.QuadPart = qwNewTime.QuadPart - qwTime.QuadPart;
|
|
fElapsedTime1 = fSecsPerTick * ((FLOAT)(qwDeltaTime1.QuadPart));
|
|
fElapsedTime2 = fSecsPerTick * ((FLOAT)(qwDeltaTime2.QuadPart));
|
|
if( ( darktcc > 0 ) | ( tcc > 0 ) )
|
|
{
|
|
printf("%d %d %d %f + %f = %f\n", darktcc, tcc, darktcc + tcc, fElapsedTime1 * 1000.0f, fElapsedTime2 * 1000.0f, ( fElapsedTime1 + fElapsedTime2 ) * 1000.0f);
|
|
}
|
|
}
|
|
/////////////////////////////////////////////////////////////////
|
|
#endif
|
|
LeaveCriticalSection(&m_checkLightCS);
|
|
|
|
}
|
|
|
|
|
|
bool Level::tickPendingTicks(bool force)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
vector<TickNextTickData> *Level::fetchTicksInChunk(LevelChunk *chunk, bool remove)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
|
|
vector<shared_ptr<Entity> > *Level::getEntities(shared_ptr<Entity> except, AABB *bb)
|
|
{
|
|
return getEntities(except, bb, NULL);
|
|
}
|
|
|
|
vector<shared_ptr<Entity> > *Level::getEntities(shared_ptr<Entity> except, AABB *bb, const EntitySelector *selector)
|
|
{
|
|
MemSect(40);
|
|
es.clear();
|
|
int xc0 = Mth::floor((bb->x0 - 2) / 16);
|
|
int xc1 = Mth::floor((bb->x1 + 2) / 16);
|
|
int zc0 = Mth::floor((bb->z0 - 2) / 16);
|
|
int zc1 = Mth::floor((bb->z1 + 2) / 16);
|
|
|
|
#ifdef __PSVITA__
|
|
#ifdef _ENTITIES_RW_SECTION
|
|
// AP - RW critical sections are expensive so enter it here so we only have to call it once instead of X times
|
|
EnterCriticalRWSection(&LevelChunk::m_csEntities, false);
|
|
#else
|
|
EnterCriticalSection(&LevelChunk::m_csEntities);
|
|
#endif
|
|
#endif
|
|
|
|
for (int xc = xc0; xc <= xc1; xc++)
|
|
for (int zc = zc0; zc <= zc1; zc++)
|
|
{
|
|
if (hasChunk(xc, zc))
|
|
{
|
|
getChunk(xc, zc)->getEntities(except, bb, es, selector);
|
|
}
|
|
}
|
|
MemSect(0);
|
|
|
|
#ifdef __PSVITA__
|
|
#ifdef _ENTITIES_RW_SECTION
|
|
LeaveCriticalRWSection(&LevelChunk::m_csEntities, false);
|
|
#else
|
|
LeaveCriticalSection(&LevelChunk::m_csEntities);
|
|
#endif
|
|
#endif
|
|
|
|
return &es;
|
|
}
|
|
|
|
vector<shared_ptr<Entity> > *Level::getEntitiesOfClass(const type_info& baseClass, AABB *bb)
|
|
{
|
|
return getEntitiesOfClass(baseClass, bb, NULL);
|
|
}
|
|
|
|
vector<shared_ptr<Entity> > *Level::getEntitiesOfClass(const type_info& baseClass, AABB *bb, const EntitySelector *selector)
|
|
{
|
|
int xc0 = Mth::floor((bb->x0 - 2) / 16);
|
|
int xc1 = Mth::floor((bb->x1 + 2) / 16);
|
|
int zc0 = Mth::floor((bb->z0 - 2) / 16);
|
|
int zc1 = Mth::floor((bb->z1 + 2) / 16);
|
|
vector<shared_ptr<Entity> > *es = new vector<shared_ptr<Entity> >();
|
|
|
|
#ifdef __PSVITA__
|
|
#ifdef _ENTITIES_RW_SECTION
|
|
// AP - RW critical sections are expensive so enter it here so we only have to call it once instead of X times
|
|
EnterCriticalRWSection(&LevelChunk::m_csEntities, false);
|
|
#else
|
|
EnterCriticalSection(&LevelChunk::m_csEntities);
|
|
#endif
|
|
#endif
|
|
|
|
for (int xc = xc0; xc <= xc1; xc++)
|
|
{
|
|
for (int zc = zc0; zc <= zc1; zc++)
|
|
{
|
|
if (hasChunk(xc, zc))
|
|
{
|
|
getChunk(xc, zc)->getEntitiesOfClass(baseClass, bb, *es, selector);
|
|
}
|
|
}
|
|
}
|
|
|
|
#ifdef __PSVITA__
|
|
#ifdef _ENTITIES_RW_SECTION
|
|
LeaveCriticalRWSection(&LevelChunk::m_csEntities, false);
|
|
#else
|
|
LeaveCriticalSection(&LevelChunk::m_csEntities);
|
|
#endif
|
|
#endif
|
|
|
|
return es;
|
|
}
|
|
|
|
shared_ptr<Entity> Level::getClosestEntityOfClass(const type_info& baseClass, AABB *bb, shared_ptr<Entity> source)
|
|
{
|
|
vector<shared_ptr<Entity> > *entities = getEntitiesOfClass(baseClass, bb);
|
|
shared_ptr<Entity> closest = nullptr;
|
|
double closestDistSqr = Double::MAX_VALUE;
|
|
//for (Entity entity : entities)
|
|
for(auto& entity : *entities)
|
|
{
|
|
if (entity == source) continue;
|
|
double distSqr = source->distanceToSqr(entity);
|
|
if (distSqr > closestDistSqr) continue;
|
|
closest = entity;
|
|
closestDistSqr = distSqr;
|
|
}
|
|
delete entities;
|
|
return closest;
|
|
}
|
|
|
|
vector<shared_ptr<Entity> > Level::getAllEntities()
|
|
{
|
|
EnterCriticalSection(&m_entitiesCS);
|
|
vector<shared_ptr<Entity> > retVec = entities;
|
|
LeaveCriticalSection(&m_entitiesCS);
|
|
return retVec;
|
|
}
|
|
|
|
|
|
void Level::tileEntityChanged(int x, int y, int z, shared_ptr<TileEntity> te)
|
|
{
|
|
if (this->hasChunkAt(x, y, z))
|
|
{
|
|
getChunkAt(x, z)->markUnsaved();
|
|
}
|
|
}
|
|
|
|
#if 0
|
|
unsigned int Level::countInstanceOf(BaseObject::Class *clas)
|
|
{
|
|
unsigned int count = 0;
|
|
EnterCriticalSection(&m_entitiesCS);
|
|
for (auto& e : entities)
|
|
{
|
|
if (clas->isAssignableFrom(e->getClass())) count++;
|
|
}
|
|
LeaveCriticalSection(&m_entitiesCS);
|
|
|
|
return count;
|
|
}
|
|
#endif
|
|
|
|
// 4J - added - more limited (but faster) version of above, used to count water animals, animals, monsters for the mob spawner
|
|
// singleType flag should be true if we are just trying to match eINSTANCEOF exactly, and false if it is a eINSTANCEOF from a group (eTYPE_WATERANIMAL, eTYPE_ANIMAL, eTYPE_MONSTER)
|
|
unsigned int Level::countInstanceOf(eINSTANCEOF clas, bool singleType, unsigned int *protectedCount/* = NULL*/, unsigned int *couldWanderCount/* = NULL*/)
|
|
{
|
|
unsigned int count = 0;
|
|
if( protectedCount ) *protectedCount = 0;
|
|
if( couldWanderCount ) *couldWanderCount = 0;
|
|
EnterCriticalSection(&m_entitiesCS);
|
|
for (auto& e : entities)
|
|
{
|
|
if( singleType )
|
|
{
|
|
if (e->GetType() == clas)
|
|
{
|
|
if ( protectedCount && e->isDespawnProtected() )
|
|
{
|
|
(*protectedCount)++;
|
|
}
|
|
|
|
if ( couldWanderCount && e->couldWander() )
|
|
{
|
|
(*couldWanderCount)++;
|
|
}
|
|
|
|
count++;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (e->instanceof(clas)) count++;
|
|
}
|
|
}
|
|
LeaveCriticalSection(&m_entitiesCS);
|
|
|
|
return count;
|
|
}
|
|
|
|
unsigned int Level::countInstanceOfInRange(eINSTANCEOF clas, bool singleType, int range, int x, int y, int z)
|
|
{
|
|
unsigned int count = 0;
|
|
EnterCriticalSection(&m_entitiesCS);
|
|
for (auto& e : entities)
|
|
{
|
|
float sd = e->distanceTo(x,y,z);
|
|
if (sd * sd > range * range)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
if( singleType )
|
|
{
|
|
if (e->GetType() == clas)
|
|
{
|
|
count++;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (e->instanceof(clas)) count++;
|
|
}
|
|
}
|
|
LeaveCriticalSection(&m_entitiesCS);
|
|
|
|
return count;
|
|
}
|
|
|
|
void Level::addEntities(vector<shared_ptr<Entity> > *list)
|
|
{
|
|
//entities.addAll(list);
|
|
EnterCriticalSection(&m_entitiesCS);
|
|
entities.insert(entities.end(), list->begin(), list->end());
|
|
bool deleteDragons = false;
|
|
for (auto& it : *list)
|
|
{
|
|
entityAdded(it);
|
|
|
|
// 4J Stu - Special change to remove duplicate enderdragons that a previous bug might have produced
|
|
if( it->GetType() == eTYPE_ENDERDRAGON)
|
|
{
|
|
deleteDragons = true;
|
|
}
|
|
}
|
|
|
|
if(deleteDragons)
|
|
{
|
|
deleteDragons = false;
|
|
for(auto& it : entities)
|
|
{
|
|
// 4J Stu - Special change to remove duplicate enderdragons that a previous bug might have produced
|
|
if( it->GetType() == eTYPE_ENDERDRAGON)
|
|
{
|
|
if(deleteDragons)
|
|
{
|
|
it->remove();
|
|
}
|
|
else
|
|
{
|
|
deleteDragons = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
LeaveCriticalSection(&m_entitiesCS);
|
|
}
|
|
|
|
|
|
void Level::removeEntities(vector<shared_ptr<Entity> > *list)
|
|
{
|
|
//entitiesToRemove.addAll(list);
|
|
entitiesToRemove.insert(entitiesToRemove.end(), list->begin(), list->end());
|
|
}
|
|
|
|
bool Level::mayPlace(int tileId, int x, int y, int z, bool ignoreEntities, int face, shared_ptr<Entity> ignoreEntity, shared_ptr<ItemInstance> item)
|
|
{
|
|
int targetType = getTile(x, y, z);
|
|
Tile *targetTile = Tile::tiles[targetType];
|
|
|
|
Tile *tile = Tile::tiles[tileId];
|
|
|
|
AABB *aabb = tile->getAABB(this, x, y, z);
|
|
if (ignoreEntities) aabb = NULL;
|
|
if (aabb != NULL && !isUnobstructed(aabb, ignoreEntity)) return false;
|
|
if (targetTile != NULL &&
|
|
(targetTile == Tile::water || targetTile == Tile::calmWater || targetTile == Tile::lava ||
|
|
targetTile == Tile::calmLava || targetTile == Tile::fire || targetTile->material->isReplaceable()))
|
|
{
|
|
targetTile = NULL;
|
|
}
|
|
if (targetTile != NULL && targetTile->material == Material::decoration && tile == Tile::anvil) return true;
|
|
if (tileId > 0 && targetTile == NULL)
|
|
{
|
|
if (tile->mayPlace(this, x, y, z, face, item))
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
|
|
int Level::getSeaLevel()
|
|
{
|
|
return seaLevel;
|
|
}
|
|
|
|
|
|
Path *Level::findPath(shared_ptr<Entity> from, shared_ptr<Entity> to, float maxDist, bool canPassDoors, bool canOpenDoors, bool avoidWater, bool canFloat)
|
|
{
|
|
int x = Mth::floor(from->x);
|
|
int y = Mth::floor(from->y + 1);
|
|
int z = Mth::floor(from->z);
|
|
|
|
int r = (int) (maxDist + 16);
|
|
int x1 = x - r;
|
|
int y1 = y - r;
|
|
int z1 = z - r;
|
|
int x2 = x + r;
|
|
int y2 = y + r;
|
|
int z2 = z + r;
|
|
Region region = Region(this, x1, y1, z1, x2, y2, z2, 0);
|
|
Path *path = (PathFinder(®ion, canPassDoors, canOpenDoors, avoidWater, canFloat)).findPath(from.get(), to.get(), maxDist);
|
|
return path;
|
|
}
|
|
|
|
|
|
Path *Level::findPath(shared_ptr<Entity> from, int xBest, int yBest, int zBest, float maxDist, bool canPassDoors, bool canOpenDoors, bool avoidWater, bool canFloat)
|
|
{
|
|
int x = Mth::floor(from->x);
|
|
int y = Mth::floor(from->y);
|
|
int z = Mth::floor(from->z);
|
|
|
|
int r = (int) (maxDist + 8);
|
|
int x1 = x - r;
|
|
int y1 = y - r;
|
|
int z1 = z - r;
|
|
int x2 = x + r;
|
|
int y2 = y + r;
|
|
int z2 = z + r;
|
|
Region region = Region(this, x1, y1, z1, x2, y2, z2, 0);
|
|
Path *path = (PathFinder(®ion, canPassDoors, canOpenDoors, avoidWater, canFloat)).findPath(from.get(), xBest, yBest, zBest, maxDist);
|
|
return path;
|
|
}
|
|
|
|
|
|
int Level::getDirectSignal(int x, int y, int z, int dir)
|
|
{
|
|
int t = getTile(x, y, z);
|
|
if (t == 0) return Redstone::SIGNAL_NONE;
|
|
return Tile::tiles[t]->getDirectSignal(this, x, y, z, dir);
|
|
}
|
|
|
|
int Level::getDirectSignalTo(int x, int y, int z)
|
|
{
|
|
int result = Redstone::SIGNAL_NONE;
|
|
result = max(result, getDirectSignal(x, y - 1, z, 0));
|
|
if (result >= Redstone::SIGNAL_MAX) return result;
|
|
result = max(result, getDirectSignal(x, y + 1, z, 1));
|
|
if (result >= Redstone::SIGNAL_MAX) return result;
|
|
result = max(result, getDirectSignal(x, y, z - 1, 2));
|
|
if (result >= Redstone::SIGNAL_MAX) return result;
|
|
result = max(result, getDirectSignal(x, y, z + 1, 3));
|
|
if (result >= Redstone::SIGNAL_MAX) return result;
|
|
result = max(result, getDirectSignal(x - 1, y, z, 4));
|
|
if (result >= Redstone::SIGNAL_MAX) return result;
|
|
result = max(result, getDirectSignal(x + 1, y, z, 5));
|
|
if (result >= Redstone::SIGNAL_MAX) return result;
|
|
return result;
|
|
}
|
|
|
|
bool Level::hasSignal(int x, int y, int z, int dir)
|
|
{
|
|
return getSignal(x, y, z, dir) > Redstone::SIGNAL_NONE;
|
|
}
|
|
|
|
int Level::getSignal(int x, int y, int z, int dir)
|
|
{
|
|
if (isSolidBlockingTile(x, y, z))
|
|
{
|
|
return getDirectSignalTo(x, y, z);
|
|
}
|
|
int t = getTile(x, y, z);
|
|
if (t == 0) return Redstone::SIGNAL_NONE;
|
|
return Tile::tiles[t]->getSignal(this, x, y, z, dir);
|
|
}
|
|
|
|
bool Level::hasNeighborSignal(int x, int y, int z)
|
|
{
|
|
if (getSignal(x, y - 1, z, 0) > 0) return true;
|
|
if (getSignal(x, y + 1, z, 1) > 0) return true;
|
|
if (getSignal(x, y, z - 1, 2) > 0) return true;
|
|
if (getSignal(x, y, z + 1, 3) > 0) return true;
|
|
if (getSignal(x - 1, y, z, 4) > 0) return true;
|
|
if (getSignal(x + 1, y, z, 5) > 0) return true;
|
|
return false;
|
|
}
|
|
|
|
int Level::getBestNeighborSignal(int x, int y, int z)
|
|
{
|
|
int best = Redstone::SIGNAL_NONE;
|
|
|
|
for (int i = 0; i < 6; i++)
|
|
{
|
|
int signal = getSignal(x + Facing::STEP_X[i], y + Facing::STEP_Y[i], z + Facing::STEP_Z[i], i);
|
|
|
|
if (signal >= Redstone::SIGNAL_MAX) return Redstone::SIGNAL_MAX;
|
|
if (signal > best) best = signal;
|
|
}
|
|
|
|
return best;
|
|
}
|
|
|
|
// 4J Stu - Added maxYDist param
|
|
shared_ptr<Player> Level::getNearestPlayer(shared_ptr<Entity> source, double maxDist, double maxYDist /*= -1*/)
|
|
{
|
|
return getNearestPlayer(source->x, source->y, source->z, maxDist, maxYDist);
|
|
}
|
|
|
|
// 4J Stu - Added maxYDist param
|
|
shared_ptr<Player> Level::getNearestPlayer(double x, double y, double z, double maxDist, double maxYDist /*= -1*/)
|
|
{
|
|
MemSect(21);
|
|
double best = -1;
|
|
shared_ptr<Player> result = nullptr;
|
|
for (auto& p : players)
|
|
{
|
|
double dist = p->distanceToSqr(x, y, z);
|
|
|
|
// Allow specifying shorter distances in the vertical
|
|
if(maxYDist > 0 && abs(p->y - y) > maxYDist) continue;
|
|
|
|
// 4J Stu - Added check that this player is still alive
|
|
if ((maxDist < 0 || dist < maxDist * maxDist) && (best == -1 || dist < best) && p->isAlive() )
|
|
{
|
|
best = dist;
|
|
result = p;
|
|
}
|
|
}
|
|
MemSect(0);
|
|
return result;
|
|
}
|
|
|
|
shared_ptr<Player> Level::getNearestPlayer(double x, double z, double maxDist)
|
|
{
|
|
double best = -1;
|
|
shared_ptr<Player> result = nullptr;
|
|
for (auto& p : players)
|
|
{
|
|
double dist = p->distanceToSqr(x, p->y, z);
|
|
if ((maxDist < 0 || dist < maxDist * maxDist) && (best == -1 || dist < best))
|
|
{
|
|
best = dist;
|
|
result = p;
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
shared_ptr<Player> Level::getNearestAttackablePlayer(shared_ptr<Entity> source, double maxDist)
|
|
{
|
|
return getNearestAttackablePlayer(source->x, source->y, source->z, maxDist);
|
|
}
|
|
|
|
shared_ptr<Player> Level::getNearestAttackablePlayer(double x, double y, double z, double maxDist)
|
|
{
|
|
double best = -1;
|
|
|
|
shared_ptr<Player> result = nullptr;
|
|
for (auto& p : players)
|
|
{
|
|
// 4J Stu - Added privilege check
|
|
if (p->abilities.invulnerable || !p->isAlive() || p->hasInvisiblePrivilege() )
|
|
{
|
|
continue;
|
|
}
|
|
|
|
double dist = p->distanceToSqr(x, y, z);
|
|
double visibleDist = maxDist;
|
|
|
|
// decrease the max attackable distance if the target player
|
|
// is sneaking or invisible
|
|
if (p->isSneaking())
|
|
{
|
|
visibleDist *= .8f;
|
|
}
|
|
if (p->isInvisible())
|
|
{
|
|
float coverPercentage = p->getArmorCoverPercentage();
|
|
if (coverPercentage < .1f)
|
|
{
|
|
coverPercentage = .1f;
|
|
}
|
|
visibleDist *= (.7f * coverPercentage);
|
|
}
|
|
|
|
if ((visibleDist < 0 || dist < visibleDist * visibleDist) && (best == -1 || dist < best))
|
|
{
|
|
best = dist;
|
|
result = p;
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
shared_ptr<Player> Level::getPlayerByName(const wstring& name)
|
|
{
|
|
for (auto& player : players)
|
|
{
|
|
if (name.compare( player->getName()) == 0)
|
|
{
|
|
return player;
|
|
}
|
|
}
|
|
return {};
|
|
}
|
|
|
|
shared_ptr<Player> Level::getPlayerByUUID(const wstring& name)
|
|
{
|
|
for (auto& player : players)
|
|
{
|
|
if (name.compare( player->getUUID() ) == 0)
|
|
{
|
|
return player;
|
|
}
|
|
}
|
|
return {};
|
|
}
|
|
|
|
// 4J Stu - Removed in 1.2.3 ?
|
|
byteArray Level::getBlocksAndData(int x, int y, int z, int xs, int ys, int zs, bool includeLighting/* = true*/)
|
|
{
|
|
byteArray result( xs * ys * zs * 5 / 2 );
|
|
int xc0 = x >> 4;
|
|
int zc0 = z >> 4;
|
|
int xc1 = (x + xs - 1) >> 4;
|
|
int zc1 = (z + zs - 1) >> 4;
|
|
|
|
int p = 0;
|
|
|
|
int y0 = y;
|
|
int y1 = y + ys;
|
|
if (y0 < 0) y0 = 0;
|
|
if (y1 > Level::maxBuildHeight) y1 = Level::maxBuildHeight;
|
|
for (int xc = xc0; xc <= xc1; xc++)
|
|
{
|
|
int x0 = x - xc * 16;
|
|
int x1 = x + xs - xc * 16;
|
|
if (x0 < 0) x0 = 0;
|
|
if (x1 > 16) x1 = 16;
|
|
for (int zc = zc0; zc <= zc1; zc++)
|
|
{
|
|
int z0 = z - zc * 16;
|
|
int z1 = z + zs - zc * 16;
|
|
if (z0 < 0) z0 = 0;
|
|
if (z1 > 16) z1 = 16;
|
|
p = getChunk(xc, zc)->getBlocksAndData(&result, x0, y0, z0, x1, y1, z1, p, includeLighting);
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
// 4J Stu - Removed in 1.2.3 ?
|
|
void Level::setBlocksAndData(int x, int y, int z, int xs, int ys, int zs, byteArray data, bool includeLighting/* = true*/)
|
|
{
|
|
int xc0 = x >> 4;
|
|
int zc0 = z >> 4;
|
|
int xc1 = (x + xs - 1) >> 4;
|
|
int zc1 = (z + zs - 1) >> 4;
|
|
|
|
int p = 0;
|
|
|
|
int y0 = y;
|
|
int y1 = y + ys;
|
|
if (y0 < 0) y0 = 0;
|
|
if (y1 > Level::maxBuildHeight) y1 = Level::maxBuildHeight;
|
|
for (int xc = xc0; xc <= xc1; xc++)
|
|
{
|
|
int x0 = x - xc * 16;
|
|
int x1 = x + xs - xc * 16;
|
|
if (x0 < 0) x0 = 0;
|
|
if (x1 > 16) x1 = 16;
|
|
for (int zc = zc0; zc <= zc1; zc++)
|
|
{
|
|
int z0 = z - zc * 16;
|
|
int z1 = z + zs - zc * 16;
|
|
if (z0 < 0) z0 = 0;
|
|
if (z1 > 16) z1 = 16;
|
|
LevelChunk *lc = getChunk(xc, zc);
|
|
if(lc->isEmpty())
|
|
{
|
|
app.DebugPrintf("[SETBLOCKS-BUG] getChunk(%d,%d) returned EmptyLevelChunk! Data will be LOST\n", xc, zc);
|
|
}
|
|
// 4J Stu - Unshare before we make any changes incase the server is already another step ahead of us
|
|
// Fix for #7904 - Gameplay: Players can dupe torches by throwing them repeatedly into water.
|
|
// This is quite expensive so only actually do it if we are hosting, online, and the update will actually
|
|
// change something
|
|
bool forceUnshare = false;
|
|
if( g_NetworkManager.IsHost() && isClientSide )
|
|
{
|
|
forceUnshare = lc->testSetBlocksAndData(data, x0, y0, z0, x1, y1, z1, p);
|
|
}
|
|
if( forceUnshare )
|
|
{
|
|
int size = (x1 - x0 ) * ( y1 - y0 ) * ( z1 - z0 );
|
|
PIXBeginNamedEvent(0,"Chunk data unsharing %d\n", size);
|
|
lc->stopSharingTilesAndData();
|
|
PIXEndNamedEvent();
|
|
}
|
|
if(p < data.length) p = lc->setBlocksAndData(data, x0, y0, z0, x1, y1, z1, p, includeLighting);
|
|
setTilesDirty(xc * 16 + x0, y0, zc * 16 + z0, xc * 16 + x1, y1, zc * 16 + z1);
|
|
|
|
PIXBeginNamedEvent(0,"Chunk data sharing\n");
|
|
if( g_NetworkManager.IsHost() && isClientSide )
|
|
{
|
|
lc->startSharingTilesAndData();
|
|
}
|
|
PIXEndNamedEvent();
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
void Level::disconnect(bool sendDisconnect /*= true*/)
|
|
{
|
|
}
|
|
|
|
|
|
void Level::checkSession()
|
|
{
|
|
levelStorage->checkSession();
|
|
}
|
|
|
|
|
|
void Level::setGameTime(int64_t time)
|
|
{
|
|
// 4J : WESTY : Added to track game time played by players for other awards.
|
|
if (time != 0) // Ignore setting time to 0, done at level start and during tutorial.
|
|
{
|
|
// Determine step in time and ensure it is reasonable ( we only have an int to store the player stat).
|
|
int64_t timeDiff = time - levelData->getGameTime();
|
|
|
|
if (timeDiff < 0)
|
|
{
|
|
timeDiff = 0;
|
|
}
|
|
else if (timeDiff > 100)
|
|
{
|
|
// Time differences of more than ~5 seconds are generally not real time passing so ignore (moving dimensions does this)
|
|
app.DebugPrintf("Level::setTime: Massive time difference, ignoring for time passed stat (%lli)\n", timeDiff);
|
|
timeDiff = 0;
|
|
}
|
|
|
|
// Apply stat to each player.
|
|
if ( timeDiff > 0 && levelData->getGameTime() != -1 )
|
|
{
|
|
for (auto& player : players)
|
|
{
|
|
player->awardStat( GenericStats::timePlayed(), GenericStats::param_time(timeDiff) );
|
|
}
|
|
}
|
|
}
|
|
|
|
levelData->setGameTime(time);
|
|
}
|
|
|
|
int64_t Level::getSeed()
|
|
{
|
|
return levelData->getSeed();
|
|
}
|
|
|
|
int64_t Level::getGameTime()
|
|
{
|
|
return levelData->getGameTime();
|
|
}
|
|
|
|
int64_t Level::getDayTime()
|
|
{
|
|
return levelData->getDayTime();
|
|
}
|
|
|
|
void Level::setDayTime(int64_t newTime)
|
|
{
|
|
levelData->setDayTime(newTime);
|
|
}
|
|
|
|
Pos *Level::getSharedSpawnPos()
|
|
{
|
|
return new Pos(levelData->getXSpawn(), levelData->getYSpawn(), levelData->getZSpawn());
|
|
}
|
|
|
|
void Level::setSpawnPos(int x, int y, int z)
|
|
{
|
|
levelData->setSpawn(x, y, z);
|
|
}
|
|
|
|
void Level::setSpawnPos(Pos *spawnPos)
|
|
{
|
|
setSpawnPos(spawnPos->x, spawnPos->y, spawnPos->z);
|
|
}
|
|
|
|
void Level::ensureAdded(shared_ptr<Entity> entity)
|
|
{
|
|
int xc = Mth::floor(entity->x / 16);
|
|
int zc = Mth::floor(entity->z / 16);
|
|
int r = 2;
|
|
for (int x = xc - r; x <= xc + r; x++)
|
|
{
|
|
for (int z = zc - r; z <= zc + r; z++)
|
|
{
|
|
getChunk(x, z);
|
|
}
|
|
}
|
|
|
|
//if (!entities.contains(entity))
|
|
EnterCriticalSection(&m_entitiesCS);
|
|
if( find(entities.begin(), entities.end(), entity) == entities.end() )
|
|
{
|
|
entities.push_back(entity);
|
|
}
|
|
LeaveCriticalSection(&m_entitiesCS);
|
|
}
|
|
|
|
|
|
bool Level::mayInteract(shared_ptr<Player> player, int xt, int yt, int zt, int content)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
void Level::broadcastEntityEvent(shared_ptr<Entity> e, byte event)
|
|
{
|
|
}
|
|
|
|
ChunkSource *Level::getChunkSource()
|
|
{
|
|
return chunkSource;
|
|
}
|
|
|
|
|
|
void Level::tileEvent(int x, int y, int z, int tile, int b0, int b1)
|
|
{
|
|
if (tile > 0) Tile::tiles[tile]->triggerEvent(this, x, y, z, b0, b1);
|
|
}
|
|
|
|
|
|
LevelStorage *Level::getLevelStorage()
|
|
{
|
|
return levelStorage.get();
|
|
}
|
|
|
|
|
|
LevelData *Level::getLevelData()
|
|
{
|
|
return levelData;
|
|
}
|
|
|
|
GameRules *Level::getGameRules()
|
|
{
|
|
return levelData->getGameRules();
|
|
}
|
|
|
|
void Level::updateSleepingPlayerList()
|
|
{
|
|
}
|
|
|
|
float Level::getThunderLevel(float a)
|
|
{
|
|
return (oThunderLevel + (thunderLevel - oThunderLevel) * a) * getRainLevel(a);
|
|
}
|
|
|
|
|
|
float Level::getRainLevel(float a)
|
|
{
|
|
return oRainLevel + (rainLevel - oRainLevel) * a;
|
|
}
|
|
|
|
|
|
void Level::setRainLevel(float rainLevel)
|
|
{
|
|
oRainLevel = rainLevel;
|
|
this->rainLevel = rainLevel;
|
|
}
|
|
|
|
|
|
bool Level::isThundering()
|
|
{
|
|
return getThunderLevel(1) > 0.9;
|
|
}
|
|
|
|
|
|
bool Level::isRaining()
|
|
{
|
|
return getRainLevel(1) > 0.2;
|
|
}
|
|
|
|
|
|
bool Level::isRainingAt(int x, int y, int z)
|
|
{
|
|
if (!isRaining()) return false;
|
|
if (!canSeeSky(x, y, z)) return false;
|
|
if (getTopRainBlock(x, z) > y) return false;
|
|
|
|
// 4J - changed to use new method of getting biomedata that caches results of rain & snow
|
|
if (biomeHasSnow(x, z)) return false;
|
|
return biomeHasRain(x, z);
|
|
}
|
|
|
|
bool Level::isHumidAt(int x, int y, int z)
|
|
{
|
|
Biome *biome = getBiome(x, z);
|
|
return biome->isHumid();
|
|
}
|
|
|
|
|
|
void Level::setSavedData(const wstring& id, shared_ptr<SavedData> data)
|
|
{
|
|
savedDataStorage->set(id, data);
|
|
}
|
|
|
|
|
|
shared_ptr<SavedData> Level::getSavedData(const type_info& clazz, const wstring& id)
|
|
{
|
|
return savedDataStorage->get(clazz, id);
|
|
}
|
|
|
|
|
|
int Level::getFreeAuxValueFor(const wstring& id)
|
|
{
|
|
return savedDataStorage->getFreeAuxValueFor(id);
|
|
}
|
|
|
|
// 4J Added
|
|
int Level::getAuxValueForMap(PlayerUID xuid, int dimension, int centreXC, int centreZC, int scale)
|
|
{
|
|
return savedDataStorage->getAuxValueForMap(xuid, dimension, centreXC, centreZC, scale);
|
|
}
|
|
|
|
void Level::globalLevelEvent(int type, int sourceX, int sourceY, int sourceZ, int data)
|
|
{
|
|
for (auto& listener : listeners)
|
|
{
|
|
listener->globalLevelEvent(type, sourceX, sourceY, sourceZ, data);
|
|
}
|
|
}
|
|
|
|
void Level::levelEvent(int type, int x, int y, int z, int data)
|
|
{
|
|
levelEvent(nullptr, type, x, y, z, data);
|
|
}
|
|
|
|
|
|
void Level::levelEvent(shared_ptr<Player> source, int type, int x, int y, int z, int data)
|
|
{
|
|
for (auto& listener : listeners)
|
|
{
|
|
listener->levelEvent(source, type, x, y, z, data);
|
|
}
|
|
}
|
|
|
|
int Level::getMaxBuildHeight()
|
|
{
|
|
return maxBuildHeight;
|
|
}
|
|
|
|
int Level::getHeight()
|
|
{
|
|
return dimension->hasCeiling ? genDepth : maxBuildHeight;
|
|
}
|
|
|
|
Tickable *Level::makeSoundUpdater(shared_ptr<Minecart> minecart)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
Random *Level::getRandomFor(int x, int z, int blend)
|
|
{
|
|
int64_t seed = (x * 341873128712l + z * 132897987541l) + getLevelData()->getSeed() + blend;
|
|
random->setSeed(seed);
|
|
return random;
|
|
}
|
|
|
|
TilePos *Level::findNearestMapFeature(const wstring& featureName, int x, int y, int z)
|
|
{
|
|
return getChunkSource()->findNearestMapFeature(this, featureName, x, y, z);
|
|
}
|
|
|
|
bool Level::isAllEmpty()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
double Level::getHorizonHeight()
|
|
{
|
|
if (levelData->getGenerator() == LevelType::lvl_flat)
|
|
{
|
|
return 0.0;
|
|
}
|
|
return 63.0;
|
|
}
|
|
|
|
void Level::destroyTileProgress(int id, int x, int y, int z, int progress)
|
|
{
|
|
for (auto& listener : listeners)
|
|
{
|
|
listener->destroyTileProgress(id, x, y, z, progress);
|
|
}
|
|
}
|
|
|
|
void Level::createFireworks(double x, double y, double z, double xd, double yd, double zd, CompoundTag *infoTag)
|
|
{
|
|
|
|
}
|
|
|
|
Scoreboard *Level::getScoreboard()
|
|
{
|
|
return scoreboard;
|
|
}
|
|
|
|
void Level::updateNeighbourForOutputSignal(int x, int y, int z, int source)
|
|
{
|
|
for (int dir = 0; dir < 4; dir++)
|
|
{
|
|
int xx = x + Direction::STEP_X[dir];
|
|
int zz = z + Direction::STEP_Z[dir];
|
|
int id = getTile(xx, y, zz);
|
|
if (id == 0) continue;
|
|
Tile *tile = Tile::tiles[id];
|
|
|
|
if (Tile::comparator_off->isSameDiode(id))
|
|
{
|
|
tile->neighborChanged(this, xx, y, zz, source);
|
|
}
|
|
else if (Tile::isSolidBlockingTile(id))
|
|
{
|
|
xx += Direction::STEP_X[dir];
|
|
zz += Direction::STEP_Z[dir];
|
|
id = getTile(xx, y, zz);
|
|
tile = Tile::tiles[id];
|
|
|
|
if (Tile::comparator_off->isSameDiode(id))
|
|
{
|
|
tile->neighborChanged(this, xx, y, zz, source);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
float Level::getDifficulty(double x, double y, double z)
|
|
{
|
|
return getDifficulty(Mth::floor(x), Mth::floor(y), Mth::floor(z));
|
|
}
|
|
|
|
/**
|
|
* Returns a difficulty scaled from 0 (easiest) to 1 (normal), may overflow
|
|
* to 1.5 (hardest) if allowed by player.
|
|
*/
|
|
float Level::getDifficulty(int x, int y, int z)
|
|
{
|
|
float result = 0;
|
|
bool isHard = difficulty == Difficulty::HARD;
|
|
|
|
if (hasChunkAt(x, y, z))
|
|
{
|
|
float moonBrightness = getMoonBrightness();
|
|
|
|
result += Mth::clamp(getChunkAt(x, z)->inhabitedTime / (TICKS_PER_DAY * 150.0f), 0.0f, 1.0f) * (isHard ? 1.0f : 0.75f);
|
|
result += moonBrightness * 0.25f;
|
|
}
|
|
|
|
if (difficulty < Difficulty::NORMAL)
|
|
{
|
|
result *= difficulty / 2.0f;
|
|
}
|
|
|
|
return Mth::clamp(result, 0.0f, isHard ? 1.5f : 1.0f);;
|
|
}
|
|
|
|
bool Level::useNewSeaLevel()
|
|
{
|
|
return levelData->useNewSeaLevel();
|
|
}
|
|
|
|
bool Level::getHasBeenInCreative()
|
|
{
|
|
return levelData->getHasBeenInCreative();
|
|
}
|
|
|
|
bool Level::isGenerateMapFeatures()
|
|
{
|
|
return levelData->isGenerateMapFeatures();
|
|
}
|
|
|
|
int Level::getSaveVersion()
|
|
{
|
|
return getLevelStorage()->getSaveFile()->getSaveVersion();
|
|
}
|
|
|
|
int Level::getOriginalSaveVersion()
|
|
{
|
|
return getLevelStorage()->getSaveFile()->getOriginalSaveVersion();
|
|
}
|
|
|
|
// 4J - determine if a chunk has been done the post-post-processing stage. This happens when *its* neighbours have each been post-processed, and does some final lighting that can
|
|
// only really be done when the post-processing has placed all possible tiles into this chunk.
|
|
bool Level::isChunkPostPostProcessed(int x, int z)
|
|
{
|
|
if( !hasChunk(x, z) ) return false; // This will occur for non-loaded chunks, not for edge chunks
|
|
|
|
LevelChunk *lc = getChunk(x, z);
|
|
if( lc->isEmpty() ) return true; // Since we've already eliminated non-loaded chunks, this should only occur for edge chunks. Consider those as fully processed
|
|
|
|
return (( lc->terrainPopulated & LevelChunk::sTerrainPostPostProcessed ) == LevelChunk::sTerrainPostPostProcessed);
|
|
}
|
|
|
|
// 4J added - returns true if a chunk is fully, fully finalised - in that it can be sent to another machine. This is the case when all 8 neighbours of this chunk
|
|
// have not only been post-processed, but also had the post-post-processing done that they themselves can only do once Their 8 neighbours have been post-processed.
|
|
bool Level::isChunkFinalised(int x, int z)
|
|
{
|
|
for( int xo = -1; xo <= 1; xo++ )
|
|
for( int zo = -1; zo <= 1; zo++ )
|
|
{
|
|
if( !isChunkPostPostProcessed(x + xo, z + zo) ) return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
int Level::getUnsavedChunkCount()
|
|
{
|
|
return m_unsavedChunkCount;
|
|
}
|
|
|
|
void Level::incrementUnsavedChunkCount()
|
|
{
|
|
++m_unsavedChunkCount;
|
|
}
|
|
|
|
void Level::decrementUnsavedChunkCount()
|
|
{
|
|
--m_unsavedChunkCount;
|
|
}
|
|
|
|
bool Level::canCreateMore(eINSTANCEOF type, ESPAWN_TYPE spawnType)
|
|
{
|
|
int count = 0;
|
|
int max = 0;
|
|
if(spawnType == eSpawnType_Egg || spawnType == eSpawnType_Portal)
|
|
{
|
|
switch(type)
|
|
{
|
|
case eTYPE_VILLAGER:
|
|
count = countInstanceOf( eTYPE_VILLAGER, true);
|
|
max = MobCategory::MAX_XBOX_VILLAGERS_WITH_SPAWN_EGG;
|
|
break;
|
|
case eTYPE_CHICKEN:
|
|
count = countInstanceOf( eTYPE_CHICKEN, true);
|
|
max = MobCategory::MAX_XBOX_CHICKENS_WITH_SPAWN_EGG;
|
|
break;
|
|
case eTYPE_WOLF:
|
|
count = countInstanceOf( eTYPE_WOLF, true);
|
|
max = MobCategory::MAX_XBOX_WOLVES_WITH_SPAWN_EGG;
|
|
break;
|
|
case eTYPE_MUSHROOMCOW:
|
|
count = countInstanceOf( eTYPE_MUSHROOMCOW, true);
|
|
max = MobCategory::MAX_XBOX_MUSHROOMCOWS_WITH_SPAWN_EGG;
|
|
break;
|
|
case eTYPE_SQUID:
|
|
count = countInstanceOf( eTYPE_SQUID, true);
|
|
max = MobCategory::MAX_XBOX_SQUIDS_WITH_SPAWN_EGG;
|
|
break;
|
|
case eTYPE_SNOWMAN:
|
|
count = countInstanceOf( eTYPE_SNOWMAN, true);
|
|
max = MobCategory::MAX_XBOX_SNOWMEN;
|
|
break;
|
|
case eTYPE_VILLAGERGOLEM:
|
|
count = countInstanceOf( eTYPE_VILLAGERGOLEM, true);
|
|
max = MobCategory::MAX_XBOX_IRONGOLEM;
|
|
break;
|
|
case eTYPE_WITHERBOSS:
|
|
count = countInstanceOf(eTYPE_WITHERBOSS, true) + countInstanceOf(eTYPE_ENDERDRAGON, true);
|
|
max = MobCategory::MAX_CONSOLE_BOSS;
|
|
break;
|
|
default:
|
|
if((type & eTYPE_ANIMALS_SPAWN_LIMIT_CHECK) == eTYPE_ANIMALS_SPAWN_LIMIT_CHECK)
|
|
{
|
|
count = countInstanceOf( eTYPE_ANIMALS_SPAWN_LIMIT_CHECK, false);
|
|
max = MobCategory::MAX_XBOX_ANIMALS_WITH_SPAWN_EGG;
|
|
}
|
|
// 4J: Use eTYPE_ENEMY instead of monster (slimes and ghasts aren't monsters)
|
|
else if(Entity::instanceof(type, eTYPE_ENEMY))
|
|
{
|
|
count = countInstanceOf(eTYPE_ENEMY, false);
|
|
max = MobCategory::MAX_XBOX_MONSTERS_WITH_SPAWN_EGG;
|
|
}
|
|
else if( (type & eTYPE_AMBIENT) == eTYPE_AMBIENT)
|
|
{
|
|
count = countInstanceOf( eTYPE_AMBIENT, false);
|
|
max = MobCategory::MAX_AMBIENT_WITH_SPAWN_EGG;
|
|
}
|
|
// 4J: Added minecart and boats
|
|
else if (Entity::instanceof(type, eTYPE_MINECART))
|
|
{
|
|
count = countInstanceOf(eTYPE_MINECART, false);
|
|
max = Level::MAX_CONSOLE_MINECARTS;
|
|
}
|
|
else if (Entity::instanceof(type, eTYPE_BOAT))
|
|
{
|
|
count = countInstanceOf(eTYPE_BOAT, true);
|
|
max = Level::MAX_XBOX_BOATS;
|
|
}
|
|
};
|
|
}
|
|
else if(spawnType == eSpawnType_Breed)
|
|
{
|
|
switch(type)
|
|
{
|
|
case eTYPE_VILLAGER:
|
|
count = countInstanceOf( eTYPE_VILLAGER, true);
|
|
max = MobCategory::MAX_VILLAGERS_WITH_BREEDING;
|
|
break;
|
|
case eTYPE_CHICKEN:
|
|
count = countInstanceOf( eTYPE_CHICKEN, true);
|
|
max = MobCategory::MAX_XBOX_CHICKENS_WITH_BREEDING;
|
|
break;
|
|
case eTYPE_WOLF:
|
|
count = countInstanceOf( eTYPE_WOLF, true);
|
|
max = MobCategory::MAX_XBOX_WOLVES_WITH_BREEDING;
|
|
break;
|
|
case eTYPE_MUSHROOMCOW:
|
|
count = countInstanceOf( eTYPE_MUSHROOMCOW, true);
|
|
max = MobCategory::MAX_XBOX_MUSHROOMCOWS_WITH_BREEDING;
|
|
break;
|
|
default:
|
|
if((type & eTYPE_ANIMALS_SPAWN_LIMIT_CHECK) == eTYPE_ANIMALS_SPAWN_LIMIT_CHECK)
|
|
{
|
|
count = countInstanceOf( eTYPE_ANIMALS_SPAWN_LIMIT_CHECK, false);
|
|
max = MobCategory::MAX_XBOX_ANIMALS_WITH_BREEDING;
|
|
}
|
|
else if( (type & eTYPE_MONSTER) == eTYPE_MONSTER)
|
|
{
|
|
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
// 4J: Interpret 0 as no limit
|
|
return max == 0 || count < max;
|
|
} |