2023-11-21 00:50:28 -06:00
# pragma region License
/*
License ( OLC - 3 )
~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
2024-01-02 00:46:32 -06:00
Copyright 2024 Joshua Sigona < sigonasr2 @ gmail . com >
2023-11-21 00:50:28 -06:00
Redistribution and use in source and binary forms , with or without modification ,
are permitted provided that the following conditions are met :
1. Redistributions or derivations of source code must retain the above copyright
notice , this list of conditions and the following disclaimer .
2. Redistributions or derivative works in binary form must reproduce the above
copyright notice . This list of conditions and the following disclaimer must be
reproduced in the documentation and / or other materials provided with the distribution .
3. Neither the name of the copyright holder nor the names of its contributors may
be used to endorse or promote products derived from this software without specific
prior written permission .
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS " AS IS " AND ANY
EXPRESS OR IMPLIED WARRANTIES , INCLUDING , BUT NOT LIMITED TO , THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED . IN NO EVENT
SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT , INDIRECT ,
INCIDENTAL , SPECIAL , EXEMPLARY , OR CONSEQUENTIAL DAMAGES ( INCLUDING , BUT NOT LIMITED
TO , PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES ; LOSS OF USE , DATA , OR PROFITS ; OR
BUSINESS INTERRUPTION ) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY , WHETHER IN
CONTRACT , STRICT LIABILITY , OR TORT ( INCLUDING NEGLIGENCE OR OTHERWISE ) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE , EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE .
2023-11-29 00:50:00 -06:00
Portions of this software are copyright © 2023 The FreeType
Project ( www . freetype . org ) . Please see LICENSE_FT . txt for more information .
All rights reserved .
2023-11-21 00:50:28 -06:00
*/
# pragma endregion
# pragma once
# include "MenuLabel.h"
# include "DEFINES.h"
2024-01-04 05:21:56 -06:00
# include "AdventuresInLestoria.h"
2023-11-21 00:50:28 -06:00
# include "util.h"
INCLUDE_game
class PopupMenuLabel : public MenuLabel {
private :
2023-12-01 22:55:33 -06:00
vf2d scale ;
2023-11-21 00:50:28 -06:00
public :
2023-12-10 19:14:37 -06:00
inline PopupMenuLabel ( geom2d : : rect < float > rect , std : : string label , float scale = 1 , ComponentAttr attributes = ComponentAttr : : NONE )
: MenuLabel ( rect , label , 1 , attributes ) , scale ( { scale , scale } ) {
2023-12-01 22:55:33 -06:00
}
2023-12-10 19:14:37 -06:00
inline PopupMenuLabel ( geom2d : : rect < float > rect , std : : string label , vf2d scale = { 1 , 1 } , ComponentAttr attributes = ComponentAttr : : NONE )
: MenuLabel ( rect , label , 1 , attributes ) , scale ( scale ) {
2023-11-21 00:50:28 -06:00
}
protected :
2024-01-04 05:21:56 -06:00
virtual void inline Update ( AiL * game ) override {
2023-11-21 00:50:28 -06:00
MenuLabel : : Update ( game ) ;
}
2023-12-15 23:57:09 -06:00
virtual void inline DrawDecal ( ViewPort & window , bool focused ) override {
2023-11-21 00:50:28 -06:00
if ( label . length ( ) > 0 ) {
2023-12-21 14:09:19 -06:00
vf2d drawPos = rect . middle ( ) - vf2d { game - > GetWrappedTextSizeProp ( label , int ( rect . size . x - 1 ) , scale ) } * scale / 2 ; //Assume centered.
2023-11-21 00:50:28 -06:00
if ( ! centered ) {
2023-12-21 14:09:19 -06:00
drawPos = vf2d { rect . pos . x + 2 , rect . middle ( ) . y - game - > GetWrappedTextSizeProp ( label , int ( rect . size . x - 1 ) , scale ) . y / 2 } ; //We should at least vertically align here.
2023-11-21 00:50:28 -06:00
}
if ( background ) {
2023-12-15 23:57:09 -06:00
window . FillRectDecal ( rect . pos , rect . size , PixelLerp ( Menu : : themes [ Menu : : themeSelection ] . GetButtonCol ( ) , Menu : : themes [ Menu : : themeSelection ] . GetHighlightCol ( ) , hoverEffect / " ThemeGlobal.HighlightTime " _F ) ) ;
2023-11-21 00:50:28 -06:00
}
if ( border ) {
2023-12-15 23:57:09 -06:00
window . DrawRectDecal ( rect . pos , rect . size ) ;
2023-11-21 00:50:28 -06:00
}
if ( showDefaultLabel ) {
2023-12-21 14:09:19 -06:00
window . DrawStringPropDecal ( rect . pos + rect . size / 2 - game - > GetWrappedTextSizeProp ( label , int ( rect . size . x - 1 ) , scale ) / 2 , label , WHITE , { 1 , 1 } , int ( rect . size . x - 1 ) ) ;
2023-11-21 00:50:28 -06:00
}
2023-11-21 21:35:21 -06:00
if ( shadow ) {
2023-12-21 14:09:19 -06:00
window . DrawShadowStringPropDecal ( drawPos , label , WHITE , BLACK , scale , int ( rect . size . x - 1 ) ) ;
2023-11-21 21:35:21 -06:00
} else {
2023-12-21 14:09:19 -06:00
window . DrawStringPropDecal ( drawPos , label , WHITE , scale , int ( rect . size . x - 1 ) ) ;
2023-11-21 21:35:21 -06:00
}
2023-11-21 00:50:28 -06:00
}
}
} ;