diff --git a/game/engine/ButtonList.lua b/game/engine/ButtonList.lua index 1ceb2ae0345c2a7816b6c3cf02c13d52a36a3b08..944ed5490256a1184223d8187e5f4b93de800d02 100644 --- a/game/engine/ButtonList.lua +++ b/game/engine/ButtonList.lua @@ -30,9 +30,9 @@ tiles = engine.Tiles.new(16, 16) --- Create a buttons list function _M:init(list, x, y, w, h, font, separator) self.separator = separator or 20 - self.w, self.h = w, h - self.display_x = x or (game.w - self.w) / 2 - self.display_y = y or (game.h - self.h) / 2 + self.w, self.h = math.floor(w), math.floor(h) + self.display_x = math.floor(x or (game.w - self.w) / 2) + self.display_y = math.floor(y or (game.h - self.h) / 2) self.font = font self.list = list if not font then self.font = core.display.newFont("/data/font/VeraBd.ttf", 16) end diff --git a/game/engine/Dialog.lua b/game/engine/Dialog.lua index 882b86114834b963f8bd6b9b11c676eb05c4bd25..fedcaba11ddf5843498bbcf84be9a0b1250b74b3 100644 --- a/game/engine/Dialog.lua +++ b/game/engine/Dialog.lua @@ -48,9 +48,9 @@ end --- Create a Dialog function _M:init(title, w, h, x, y, alpha, font) self.title = title - self.w, self.h = w, h - self.display_x = x or (game.w - self.w) / 2 - self.display_y = y or (game.h - self.h) / 2 + self.w, self.h = math.floor(w), math.floor(h) + self.display_x = math.floor(x or (game.w - self.w) / 2) + self.display_y = math.floor(y or (game.h - self.h) / 2) self.font = font if not font then self.font = core.display.newFont("/data/font/Vera.ttf", 12) end self.font_h = self.font:lineSkip() diff --git a/game/engine/Game.lua b/game/engine/Game.lua index af67ec261e66f42db78ac15ba9ebd28aa69f9902..c5bda52248d7a8bdb6e1971139db5e5b488b1ce3 100644 --- a/game/engine/Game.lua +++ b/game/engine/Game.lua @@ -200,6 +200,7 @@ end --- Called when screen resolution changes function _M:onResolutionChange() + self.w, self.h = core.display.size() end --- Requests the game to save diff --git a/game/engine/HotkeysDisplay.lua b/game/engine/HotkeysDisplay.lua index ac9fa9ad94ea8be3999714985b3de2e5fda97d52..4b19dc348674aab79bac2008dd6c91cd370e1732 100644 --- a/game/engine/HotkeysDisplay.lua +++ b/game/engine/HotkeysDisplay.lua @@ -32,14 +32,14 @@ end --- Resize the display area function _M:resize(x, y, w, h) - self.display_x, self.display_y = x, y - self.w, self.h = w, h + self.display_x, self.display_y = math.floor(x), math.floor(y) + self.w, self.h = math.floor(w), math.floor(h) self.surface = core.display.newSurface(w, h) if self.actor then self.actor.changed = true end local cw, ch = self.font:size(" ") self.font_w = cw - self.max_char_w = math.floor(w / self.font_w) + self.max_char_w = math.min(127, math.floor(w / self.font_w)) end local page_to_hotkey = {"", "SECOND_", "THIRD_"} diff --git a/game/engine/LogDisplay.lua b/game/engine/LogDisplay.lua index 9eef165474fddefcbfa8c8d0163e2573ea439113..0b556c2f748c7262e9dde9bfdc7abda0da8a2f02 100644 --- a/game/engine/LogDisplay.lua +++ b/game/engine/LogDisplay.lua @@ -26,8 +26,8 @@ module(..., package.seeall, class.make) function _M:init(x, y, w, h, max, fontname, fontsize, color, bgcolor) self.color = color or {255,255,255} self.bgcolor = bgcolor or {0,0,0} - self.display_x, self.display_y = x, y - self.w, self.h = w, h + self.display_x, self.display_y = math.floor(x), math.floor(y) + self.w, self.h = math.floor(w), math.floor(h) self.font = core.display.newFont(fontname or "/data/font/Vera.ttf", fontsize or 12) self.font_h = self.font:lineSkip() self.surface = core.display.newSurface(w, h) @@ -40,8 +40,8 @@ end --- Resize the display area function _M:resize(x, y, w, h) - self.display_x, self.display_y = x, y - self.w, self.h = w, h + self.display_x, self.display_y = math.floor(x), math.floor(y) + self.w, self.h = math.floor(w), math.floor(h) self.surface = core.display.newSurface(w, h) self.changed = true end diff --git a/game/engine/LogFlasher.lua b/game/engine/LogFlasher.lua index 374c49c14104998dc7dd227a5df3ad6fe0c259d1..b955130b11d8fdaf71ab93cab53deef568e63c19 100644 --- a/game/engine/LogFlasher.lua +++ b/game/engine/LogFlasher.lua @@ -30,8 +30,8 @@ BAD = 3 function _M:init(x, y, w, h, max, fontname, fontsize, color, bgcolor) self.color = color or {255,255,255} self.bgcolor = bgcolor or {0,0,0} - self.display_x, self.display_y = x, y - self.w, self.h = w, h + self.display_x, self.display_y = math.floor(x), math.floor(y) + self.w, self.h = math.floor(w), math.floor(h) self.font = core.display.newFont(fontname or "/data/font/Vera.ttf", fontsize or 16) self.font_h = self.font:lineSkip() self.surface = core.display.newSurface(w, h) @@ -44,8 +44,8 @@ end --- Resize the display area function _M:resize(x, y, w, h) - self.display_x, self.display_y = x, y - self.w, self.h = w, h + self.display_x, self.display_y = math.floor(x), math.floor(y) + self.w, self.h = math.floor(w), math.floor(h) self.surface = core.display.newSurface(w, h) self.changed = true end diff --git a/game/engine/Map.lua b/game/engine/Map.lua index 1a1974731ece40e3d4411ba9ae7aba1eafa95420..f60314fd3c4e16ca4c29452dbde2520a3ea533d3 100644 --- a/game/engine/Map.lua +++ b/game/engine/Map.lua @@ -53,8 +53,8 @@ color_obscure = { 0.6, 0.6, 0.6, 1 } -- @param fontsize font parameters, can be nil function _M:setViewPort(x, y, w, h, tile_w, tile_h, fontname, fontsize, multidisplay) self.multidisplay = multidisplay - 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.display_x, self.display_y = math.floor(x), math.floor(y) + self.viewport = {width=math.floor(w), height=math.floor(h), mwidth=math.floor(w/tile_w), mheight=math.floor(h/tile_h)} self.tile_w, self.tile_h = tile_w, tile_h self.fontname, self.fontsize = fontname, fontsize self:resetTiles() diff --git a/src/core_lua.c b/src/core_lua.c index 053f0be9aae59eeb0ad8bdddf2851ef3098da96d..62748ea0a27ae19940bde0a6f144b3ff5056c963 100644 --- a/src/core_lua.c +++ b/src/core_lua.c @@ -843,17 +843,8 @@ static int sdl_set_window_size(lua_State *L) int w = luaL_checknumber(L, 1); int h = luaL_checknumber(L, 2); bool fullscreen = lua_toboolean(L, 3); - int flags = SDL_OPENGL | SDL_GL_DOUBLEBUFFER | SDL_HWPALETTE | SDL_HWSURFACE; - if (fullscreen) flags = SDL_OPENGL | SDL_GL_DOUBLEBUFFER | SDL_HWPALETTE | SDL_HWSURFACE | SDL_FULLSCREEN; - - screen = SDL_SetVideoMode(w, h, 32, flags); - if (screen==NULL) { - printf("error opening screen: %s\n", SDL_GetError()); - return 0; - } - - resizeWindow(screen->w, screen->h); + do_resize(w, h, fullscreen); lua_pushboolean(L, TRUE); return 1; diff --git a/src/main.c b/src/main.c index 551093b4a086176467ccadaae0b9ef5e249129f9..b9c97098ce61bc3e55e354c88d9968f4464c7f1e 100644 --- a/src/main.c +++ b/src/main.c @@ -386,6 +386,21 @@ int resizeWindow(int width, int height) return( TRUE ); } +void do_resize(int w, int h, bool fullscreen) +{ + int flags = SDL_OPENGL | SDL_GL_DOUBLEBUFFER | SDL_HWPALETTE | SDL_HWSURFACE | SDL_RESIZABLE; + + if (fullscreen) flags = SDL_OPENGL | SDL_GL_DOUBLEBUFFER | SDL_HWPALETTE | SDL_HWSURFACE | SDL_FULLSCREEN; + + screen = SDL_SetVideoMode(w, h, 32, flags); + if (screen==NULL) { + printf("error opening screen: %s\n", SDL_GetError()); + return 0; + } + + resizeWindow(screen->w, screen->h); +} + /** * Program entry point. */ @@ -467,7 +482,8 @@ int main(int argc, char *argv[]) SDL_WM_SetIcon(IMG_Load_RW(PHYSFSRWOPS_openRead("/data/gfx/te4-icon.png"), TRUE), NULL); - screen = SDL_SetVideoMode(WIDTH, HEIGHT, 32, SDL_OPENGL | SDL_GL_DOUBLEBUFFER | SDL_HWPALETTE | SDL_HWSURFACE); +// screen = SDL_SetVideoMode(WIDTH, HEIGHT, 32, SDL_OPENGL | SDL_GL_DOUBLEBUFFER | SDL_HWPALETTE | SDL_HWSURFACE | SDL_RESIZABLE); + do_resize(WIDTH, HEIGHT, FALSE); if (screen==NULL) { printf("error opening screen: %s\n", SDL_GetError()); return; @@ -509,6 +525,22 @@ int main(int argc, char *argv[]) { switch(event.type) { + case SDL_VIDEORESIZE: + printf("resize %d x %d\n", event.resize.w, event.resize.h); + do_resize(event.resize.w, event.resize.h, FALSE); + + if (current_game != LUA_NOREF) + { + lua_rawgeti(L, LUA_REGISTRYINDEX, current_game); + lua_pushstring(L, "onResolutionChange"); + lua_gettable(L, -2); + lua_remove(L, -2); + lua_rawgeti(L, LUA_REGISTRYINDEX, current_game); + docall(L, 1, 0); + } + + break; + case SDL_MOUSEMOTION: case SDL_MOUSEBUTTONUP: case SDL_KEYDOWN: diff --git a/src/main.h b/src/main.h index 10965152c778062bf4d755bd76ec751305830b69..7e7e2ce8e9a0c9676d057988b503978509e724c5 100644 --- a/src/main.h +++ b/src/main.h @@ -22,6 +22,7 @@ #define _MAIN_H_ extern int resizeWindow(int width, int height); +extern void do_resize(int w, int h, bool fullscreen); #endif