view orpg/map/_text.py @ 111:0c936d98f9eb alpha

Traipse Alpha 'OpenRPG' {091008-01} Traipse is a distribution of OpenRPG that is designed to be easy to setup and go. Traipse also makes it easy for developers to work on code without fear of sacrifice. 'Ornery-Orc' continues the trend of 'Grumpy' and adds fixes to the code. 'Ornery-Orc's main goal is to offer more advanced features and enhance the productivity of the user. Update Summary: {091006} 00: Adds Bookmarks (Alpha) with cool Smiley Star and Plus Symbol images! 03: Changes made to the map for increased portability. SnowDog has changes planned in Core, though. Added an initial push to the BCG. Not much to see, just shows off how it is re-writing Main code. {091007} 00: New images added to Plugin Control Panel for Auto Start. 01: Attempting to fix Deprecation warning from Main. 02: Second attempt, problem in gsclient with "s. 03: Fail. {091008} 00: Fix to remote admin commands 01: Minor fix to texted based server, works in /System/ folder Some Core changes to gametree to correctly disply Pretty Print, thanks David!
author sirebral
date Thu, 08 Oct 2009 09:10:55 -0500
parents 4385a7d0efd1
children
line wrap: on
line source

from math import sqrt

import wx

import orpg.dirpath
from orpg.orpgCore import *

from _object import MapObject

class MapText(MapObject):
    def __init__(self, canvas, start=wx.Point(0,0), text='', size=12, weight=wx.NORMAL, style=wx.NORMAL, color="#000000"):
        MapObject.__init__(self, canvas=canvas)
        self.start = start
        self.color = color
        self.text = text
        self.weight = weight
        self.style = style
        self.size = size

        r, g, b = self.RGBHex.rgb_tuple(self.color)
        self.hcolor = self.RGBHex.hexstring(r^255, g^255, b^255)

        self.id = 'text-' + self.canvas.GetNewObjectId()


    def Draw(self, dc):
        if not self.highlighed:
            c = self.color
        else:
            c = self.hcolor

        font = wx.Font(self.size, wx.DEFAULT, self.weight, self.style)
        dc.SetFont(font, c)
        w, h = dc.GetTextExtent(self.text)


        if self.IsShown():
            dc.DrawText(self.text, self.start.x-(w/2), self.start.y-(h/2))
        elif self.canvas.toolWnd.gmToolBar.IsShown():
            r, g, b = self.RGBHex.rgb_tuple(c)
            dc.SetFont(font, wx.Color(r, g, b, 40))
            dc.DrawText(self.text, self.start.x-(w/2), self.start.y-(h/2))


        if self.selected:
            self.DrawSelection(dc)

    def DrawSelection(self, dc):
        w, h = dc.GetTextExtent(self.text)
        dc.SetBrush(wx.GREEN_BRUSH)
        dc.SetPen(wx.GREEN_PEN)
        path = dc.CreatePath()

        path.AddRectangle(self.start.x-((w/2)+1), self.start.y-((h/2)+1), 5, 5)
        path.AddRectangle(self.start.x-((w/2)+1), self.start.y+((h/2)+1), 5, 5)
        path.AddRectangle(self.start.x+((w/2)+1), self.start.y-((h/2)+1), 5, 5)
        path.AddRectangle(self.start.x+((w/2)+1), self.start.y+((h/2)+1), 5, 5)

        dc.DrawPath(path)

        dc.SetBrush(wx.NullBrush)
        dc.SetPen(wx.NullPen)

    def InObject(self, pos):
        dc = wx.ClientDC(self.canvas)
        self.canvas.PrepareDC(dc)
        font = wx.Font(self.size, wx.DEFAULT, self.weight, self.style)
        w, h = dc.GetTextExtent(self.text)
        rgn = wx.RegionFromPoints([(self.start.x-(w/2), self.start.y-(h/2)), (self.start.x-(w/2), self.start.y+(h/2)), (self.start.x+(w/2), self.start.y-(h/2)), (self.start.x+(w/2), self.start.y+(h/2))])

        if rgn.Contains(pos.x, pos.y):
            return True

        return False

    def GetName(self):
        return self.text + ' Color:' + self.color

    def ShowProperties(self, event):
        dlg = wx.Dialog(self.canvas, wx.ID_ANY, "Circle Properties")
        sizer = wx.BoxSizer(wx.HORIZONTAL)

        text = wx.TextCtrl(dlg, wx.ID_ANY)
        text.SetValue(self.text)

        colorbtn = wx.Button(dlg, wx.ID_ANY, "Color")
        colorbtn.SetForegroundColour(self.color)

        size = wx.SpinCtrl(dlg, wx.ID_ANY, value=str(self.size), min=7, initial=12, name="Font Size: ")

        weight = wx.Choice(dlg, wx.ID_ANY, choices=["Normal", "Bold"])
        if self.weight == wx.NORMAL:
            weight.SetSelection(0)
        else:
            weight.SetSelection(1)

        style = wx.Choice(dlg, wx.ID_ANY, choices=["Normal", "Italic"])
        if self.weight == wx.NORMAL:
            style.SetSelection(0)
        else:
            style.SetSelection(1)

        def ColorBtn(event):
            newcolor = self.RGBHex.do_hex_color_dlg(self.canvas)
            if newcolor == None:
                return

            colorbtn.SetForegroundColour(newcolor)
            dlg.Unbind(wx.EVT_BUTTON)

        dlg.Bind(wx.EVT_BUTTON, ColorBtn, colorbtn)

        sizer.Add(wx.StaticText(dlg, wx.ID_ANY, "Text:"), 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 2)
        sizer.Add(text, 0, wx.EXPAND|wx.ALL, 3)
        sizer.Add(size, 0, wx.ALL, 2)
        sizer.Add(weight, 0, wx.ALL, 3)
        sizer.Add(style, 0, wx.ALL, 2)
        sizer.Add(colorbtn, 0, wx.ALL, 3)
        sizer.Add(wx.Button(dlg, wx.ID_OK), 0, wx.ALL, 2)

        dlg.SetSizer(sizer)
        dlg.SetAutoLayout(True)
        dlg.Fit()
        dlg.Show()

        if dlg.ShowModal() == wx.ID_OK:
            self.text = text.GetValue()
            r,g,b = colorbtn.GetForegroundColour().Get()
            self.color = self.RGBHex.hexstring(r, g, b)
            self.hcolor = self.RGBHex.hexstring(r^255, g^255, b^255)
            self.size = int(size.GetValue())
            if weight.GetSelection() == 0:
                self.weight = wx.NORMAL
            else:
                self.weight = wx.BOLD

            if style.GetSelection() == 0:
                self.style = wx.NORMAL
            else:
                self.style = wx.ITALIC

            if event != None:
                self.Update(send=True, action="update")


    def OnLeftDown(self, pos):
        self.ShowProperties(None)
        self.color = self.canvas.whiteboardColor
        if self.text != '':
            self.canvas.zOrder['front'].append(MapText(self.canvas, pos, self.text, self.size, self.weight, self.style, self.color))
            self.Update(send=True, action='new')

        self.text = ''
        self.weight = wx.NORMAL
        self.size = 12
        self.style = wx.NORMAL
        self.color = self.canvas.whiteboardColor
        self.hcolor = self.canvas.whiteboardColor

    def _toxml(self, action="update"):
        return ''