Remove deprecated DhApiScreenResizeEvent
This commit is contained in:
-77
@@ -1,77 +0,0 @@
|
||||
/*
|
||||
* This file is part of the Distant Horizons mod
|
||||
* licensed under the GNU LGPL v3 License.
|
||||
*
|
||||
* Copyright (C) 2020-2023 James Seibel
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation, version 3.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package com.seibel.distanthorizons.api.methods.events.abstractEvents;
|
||||
|
||||
import com.seibel.distanthorizons.api.methods.events.interfaces.IDhApiEvent;
|
||||
import com.seibel.distanthorizons.api.methods.events.sharedParameterObjects.DhApiEventParam;
|
||||
|
||||
/**
|
||||
* TODO remove
|
||||
*
|
||||
* @author James Seibel
|
||||
* @version 2023-1-23
|
||||
* @since API 1.1.0
|
||||
*/
|
||||
@Deprecated // TODO remove before stable release and write a merge request for Iris
|
||||
public abstract class DhApiScreenResizeEvent implements IDhApiEvent<DhApiScreenResizeEvent.EventParam>
|
||||
{
|
||||
/** Fired immediately before Distant Horizons handles the screen resize. */
|
||||
public abstract void onResize(DhApiEventParam<EventParam> event);
|
||||
|
||||
|
||||
//=========================//
|
||||
// internal DH API methods //
|
||||
//=========================//
|
||||
|
||||
@Override
|
||||
public final void fireEvent(DhApiEventParam<EventParam> event) { this.onResize(event); }
|
||||
|
||||
|
||||
//==================//
|
||||
// parameter object //
|
||||
//==================//
|
||||
|
||||
public static class EventParam
|
||||
{
|
||||
/** Measured in pixels */
|
||||
public final int previousWidth;
|
||||
/** Measured in pixels */
|
||||
public final int previousHeight;
|
||||
|
||||
/** Measured in pixels */
|
||||
public final int newWidth;
|
||||
/** Measured in pixels */
|
||||
public final int newHeight;
|
||||
|
||||
|
||||
public EventParam(
|
||||
int previousWidth, int previousHeight,
|
||||
int newWidth, int newHeight)
|
||||
{
|
||||
this.previousWidth = previousWidth;
|
||||
this.previousHeight = previousHeight;
|
||||
|
||||
this.newWidth = newWidth;
|
||||
this.newHeight = newHeight;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -744,19 +744,11 @@ public class LodRenderer
|
||||
this.cachedHeight = MC_RENDER.getTargetFrameBufferViewportHeight();
|
||||
|
||||
|
||||
// TODO add on texture (re)created event
|
||||
// https://discord.com/channels/881614130614767666/1211290858134052894/1211431000580554752
|
||||
ApiEventInjector.INSTANCE.fireAllEvents(DhApiColorDepthTextureCreatedEvent.class,
|
||||
new DhApiColorDepthTextureCreatedEvent.EventParam(
|
||||
oldWidth, oldHeight,
|
||||
this.cachedWidth, this.cachedHeight
|
||||
));
|
||||
|
||||
ApiEventInjector.INSTANCE.fireAllEvents(DhApiScreenResizeEvent.class,
|
||||
new DhApiScreenResizeEvent.EventParam(
|
||||
oldWidth, oldHeight,
|
||||
this.cachedWidth, this.cachedHeight
|
||||
));
|
||||
|
||||
|
||||
// also update the override if present
|
||||
|
||||
Reference in New Issue
Block a user