mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
120 lines
4.5 KiB
Python
Executable file
120 lines
4.5 KiB
Python
Executable file
from pandac.PandaModules import *
|
|
|
|
|
|
class ChatBalloon(NodePath):
|
|
TEXT_X_OFFSET = -0.05
|
|
TEXT_Y_OFFSET = -0.05
|
|
|
|
# Proportion of the Z offset based on the default line height, and the new
|
|
# line height:
|
|
TEXT_Z_OFFSET = -(4.0/33.0)
|
|
|
|
TEXT_MIN_WIDTH = 1.75
|
|
TEXT_MIN_HEIGHT = 1
|
|
TEXT_GLYPH_SCALE = 1.05
|
|
TEXT_GLYPH_SHIFT = -0.05
|
|
|
|
BALLOON_X_PADDING = 0.65
|
|
BALLOON_Z_PADDING = 0.65
|
|
|
|
BUTTON_SCALE = 6
|
|
BUTTON_SHIFT = (0, 0, 0.6)
|
|
|
|
def __init__(self, model, modelWidth, modelHeight, textNode,
|
|
foreground=VBase4(0, 0, 0, 1), background=VBase4(1, 1, 1, 1),
|
|
reversed=False, button=None):
|
|
NodePath.__init__(self, 'chatBalloon')
|
|
|
|
self.model = model
|
|
self.modelWidth = modelWidth
|
|
self.modelHeight = modelHeight
|
|
self.textNode = textNode
|
|
self.foreground = foreground
|
|
self.background = background
|
|
self.button = button
|
|
|
|
# Set the TextNode color:
|
|
self.textNode.setTextColor(self.foreground)
|
|
|
|
# Create a balloon:
|
|
self.balloon = self.model.copyTo(self)
|
|
self.balloon.setColor(self.background)
|
|
self.balloon.setTransparency(self.background[3] < 1)
|
|
|
|
# Attach the TextNode:
|
|
self.textNodePath = self.attachNewNode(self.textNode)
|
|
self.textNodePath.setTransparency(self.foreground[3] < 1)
|
|
self.textNodePath.setAttrib(DepthWriteAttrib.make(0))
|
|
|
|
# Resize the balloon as necessary:
|
|
middle = self.balloon.find('**/middle')
|
|
top = self.balloon.find('**/top')
|
|
self.textWidth = self.textNode.getWidth()
|
|
if self.textWidth < self.TEXT_MIN_WIDTH:
|
|
self.textWidth = self.TEXT_MIN_WIDTH
|
|
paddedWidth = self.textWidth + (self.BALLOON_X_PADDING*2)
|
|
self.balloon.setSx(paddedWidth / modelWidth)
|
|
self.textHeight = textNode.getHeight()
|
|
if self.textHeight < self.TEXT_MIN_HEIGHT:
|
|
self.textHeight = self.TEXT_MIN_HEIGHT
|
|
paddedHeight = self.textHeight + (self.BALLOON_Z_PADDING*2)
|
|
middle.setSz(paddedHeight - 1.5) # Compensate for the top, as well.
|
|
top.setZ(middle, 1)
|
|
|
|
if reversed:
|
|
self.balloon.setSx(-self.balloon.getSx())
|
|
self.balloon.setTwoSided(True) # Render the backface of the balloon.
|
|
|
|
self.width = paddedWidth
|
|
self.height = paddedHeight
|
|
|
|
# Position the TextNode:
|
|
self.center = self.balloon.getBounds().getCenter()
|
|
self.textNodePath.setPos(self.center)
|
|
self.textNodePath.setY(self.TEXT_Y_OFFSET)
|
|
self.textNodePath.setX(self.textNodePath, -(self.textWidth/2))
|
|
if self.textWidth == self.TEXT_MIN_WIDTH:
|
|
centerX = (self.TEXT_MIN_WIDTH-self.textNode.getWidth()) / 2.0
|
|
self.textNodePath.setX(self.textNodePath, centerX)
|
|
self.textNodePath.setZ(top, -self.BALLOON_Z_PADDING + self.TEXT_Z_OFFSET)
|
|
if self.textHeight == self.TEXT_MIN_HEIGHT:
|
|
centerZ = (ChatBalloon.TEXT_MIN_HEIGHT-self.textNode.getHeight()) / 2.0
|
|
self.textNodePath.setZ(self.textNodePath, -centerZ)
|
|
self.textNodePath.setX(self.textNodePath, self.TEXT_X_OFFSET)
|
|
|
|
# Add a button if one is given:
|
|
if self.button is not None:
|
|
self.buttonNodePath = button.copyTo(self)
|
|
self.buttonNodePath.setPos(self.textNodePath, self.textWidth, 0, -self.textHeight)
|
|
self.buttonNodePath.setPos(self.buttonNodePath, ChatBalloon.BUTTON_SHIFT)
|
|
self.buttonNodePath.setScale(ChatBalloon.BUTTON_SCALE)
|
|
else:
|
|
self.buttonNodePath = None
|
|
|
|
# Finally, enable anti-aliasing:
|
|
self.setAntialias(AntialiasAttrib.MMultisample)
|
|
|
|
def setForeground(self, foreground):
|
|
self.foreground = foreground
|
|
self.textNode.setTextColor(self.foreground)
|
|
|
|
def getForeground(self):
|
|
return self.foreground
|
|
|
|
def setBackground(self, background):
|
|
self.background = background
|
|
self.balloon.setColor(self.background)
|
|
|
|
def getBackground(self):
|
|
return self.background
|
|
|
|
def setButton(self, button):
|
|
if self.buttonNodePath is not None:
|
|
self.buttonNodePath.removeNode()
|
|
self.buttonNodePath = None
|
|
|
|
if button is not None:
|
|
self.buttonNodePath = button.copyTo(self)
|
|
self.buttonNodePath.setPos(self.textNodePath, self.textWidth, 0, -self.textHeight)
|
|
self.buttonNodePath.setPos(self.buttonNodePath, ChatBalloon.BUTTON_SHIFT)
|
|
self.buttonNodePath.setScale(ChatBalloon.BUTTON_SCALE)
|