Skip to content
Snippets Groups Projects
Commit 0ce9333c authored by dg's avatar dg
Browse files

can also handle non TTF fonts if needed

git-svn-id: http://svn.net-core.org/repos/t-engine4@52 51575b47-30f0-44d4-a5cc-537603b46e54
parent ec2d6351
No related branches found
No related tags found
No related merge requests found
File added
File added
......@@ -24,10 +24,12 @@ rememberDisplayOrder = { TERRAIN }
-- @param h height
-- @param tile_w width of a single tile
-- @param tile_h height of a single tile
function _M:setViewPort(x, y, w, h, tile_w, tile_h)
-- @param fontname font parameters, can be nil
-- @param fontsize font parameters, can be nil
function _M:setViewPort(x, y, w, h, tile_w, tile_h, fontname, fontsize)
self.display_x, self.display_y = x, y
self.viewport = {width=w, height=h, mwidth=math.floor(w/tile_w), mheight=math.floor(h/tile_h)}
self.tiles = Tiles.new(tile_w, tile_h)
self.tiles = Tiles.new(tile_w, tile_h, fontname, fontsize)
self.tile_w, self.tile_h = tile_w, tile_h
end
......
......@@ -58,6 +58,7 @@ end
function _M:loaded()
Zone:setup{npc_class="mod.class.NPC", grid_class="mod.class.Grid", object_class="engine.Entity"}
-- Map:setViewPort(0, 0, self.w, math.floor(self.h * 0.80), 20, 20, "/data/font/10X20.FON", 20)
Map:setViewPort(0, 0, self.w, math.floor(self.h * 0.80), 16, 16)
engine.GameTurnBased.loaded(self)
self.key = engine.KeyCommand.new()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment