summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2012-08-01Merge branch 'master' into lpc2012Erik Schilling1-2/+1
Conflicts: src/resources/image.cpp
2012-08-01Themed the npc dialogErik Schilling2-14/+14
2012-08-01Modify the NPC Dialog to be more RPG-LikeChuck Miller11-240/+167
2012-07-31Removed the emote shortcut windowThorbjørn Lindeijer3-9/+0
We have no emotes for now, and we will never trigger them from such an ugly shortcut window anyway.
2012-07-31Removed ImageLoader and ProxyImage classesThorbjørn Lindeijer9-200/+0
They allowed using gcn::Image, which in turns allows using gcn::Icon and gcn::ImageFont, but none of this is actually used anymore.
2012-07-31Removed 'virtual' from methods of ImageThorbjørn Lindeijer4-26/+15
Maybe it used to be necessary for these methods to be virtual, but this is no longer the case. Hence we can avoid wasting CPU ticks searching through virtual function tables, especially for frequently used methods like getWidth, getHeight and setAlpha. MapLayer::getTile was inlined.
2012-07-31Fixed drawing issues with tiles that don't match the gridThorbjørn Lindeijer2-2/+7
An optimization in the tile layer rendering code meant for drawing repeated tiles faster was not taking into account the case where the tile width does not match the width of the tile grid.
2012-07-30Hacked away the sliders in the character create dialog. Better not try ↵Erik Schilling2-11/+4
connecting to tmwAthena server.
2012-07-30Defining a branding for lpc2012.Stefan Beller1-0/+18
It makes life easier for the judges of the lpc2012.
2012-07-26Removed player box from the equipment windowThorbjørn Lindeijer1-9/+0
2012-07-26Fixed height of item popup that shows no itemThorbjørn Lindeijer1-1/+1
2012-07-26Removed UI to manually increase skillsThorbjørn Lindeijer2-19/+1
2012-07-26Fixed the dimensions of the popup/tooltipThorbjørn Lindeijer4-29/+21
2012-07-25Revert "Leave the default values for OpenGL texture filters"Thorbjørn Lindeijer1-0/+2
This reverts commit 137ade7226af37d073a5755b90181275664dd65c. Turns out that when leaving the default values, the textures won't actually work since they are incomplete unless the mipmaps are generated (since GL_TEXTURE_MIN_FILTER is GL_NEAREST_MIPMAP_LINEAR by default). For now we don't want to generate mipmaps anyway since we're going for a pixely look, so revert the filters back to GL_NEAREST. The reason this had worked for me is because on my system the texture type GL_TEXTURE_RECTANGLE_ARB is used instead of GL_TEXTURE_2D and this texture type does not support mipmaps.
2012-07-25Fixed plural format of Ukranian translationThorbjørn Lindeijer1-2/+1
msgfmt didn't like it the way it was written down.
2012-07-25Reduced the height of the Setup windowThorbjørn Lindeijer20-83/+66
Also removed all the hardcoded sizes of the various setup tabs. Instead, support for dynamically adjusting layout was added to the Container class. Various other places were also adapted to use the new layout support in Container.
2012-07-25Fixed UI layout after changing resolution in Setup dialogThorbjørn Lindeijer1-1/+2
It was doing the relayout using the unscaled screen dimensions.
2012-07-25Added an option to reduce input lagThorbjørn Lindeijer2-1/+31
Always enabled at the moment.
2012-07-25Corrected the minimum height shown in the video optionsThorbjørn Lindeijer1-1/+1
Actually for me it doesn't list 640x360 anyway, but it might for some people I guess.
2012-07-25Merge branch 'master' into lpc2012Erik Schilling4-2/+24
2012-07-25Prevented crash with nonexisting particle sprite.Erik Schilling1-2/+10
2012-07-25Added handler to display text particles sent by serverErik Schilling3-0/+14
Change is tested. Reviewed-by: bjorn.
2012-07-23Avoid copying surfaces unnecessarily for upload to textureThorbjørn Lindeijer2-26/+36
When uploading an SDL surface to an OpenGL texture, it was always making a copy that had the desired size and pixel format. Now this copy is no longer being made when the existing surface already has the target size and pixel format. In fact most images are already in 32-bit RGBA format after loading them.
2012-07-23Specify a more specific image format when uploading texturesThorbjørn Lindeijer1-1/+1
While simply specifying "4 components" works, it is preferred to specify the actual image format like GL_RGBA8 in our case. http://www.opengl.org/wiki/Common_Mistakes#Image_precision
2012-07-23Removed manual calling of glFlush / glFinishThorbjørn Lindeijer1-2/+0
This should never be needed [1]. [1] http://www.opengl.org/wiki/Common_Mistakes#glFinish_and_glFlush
2012-07-23Added support for ARB_texture_non_power_of_two extensionThorbjørn Lindeijer3-2/+7
If the graphics driver supports this, there is no need to create textures with power-of-two dimensions. It is then also preferred to use regular textures than relying on the older GL_ARB_texture_rectangle extension.
2012-07-23Some cleanups in OpenGL codeThorbjørn Lindeijer2-49/+1
* Removed empty and unused function `setTargetPlane` * Removed duplicated enabling of `GL_VERTEX_ARRAY` * Removed strange smoothing code from `drawRescaledImage`
2012-07-23Fixed mixup of parameter types in OpenGL codeThorbjørn Lindeijer1-4/+4
Textures were not rendering correctly on cards that did not support the GL_ARB_texture_rectangle extension, since the alternative code path was passing ints as floats and floats as ints to OpenGL.
2012-07-23Fixed indentation of Image::_GLloadThorbjørn Lindeijer1-75/+75
2012-07-23Revert "Leave the default values for OpenGL texture filters"Thorbjørn Lindeijer1-0/+1
This reverts commit 137ade7226af37d073a5755b90181275664dd65c. Turns out that when leaving the default values, the textures won't actually work since they are incomplete unless the mipmaps are generated (since GL_TEXTURE_MIN_FILTER is GL_NEAREST_MIPMAP_LINEAR by default). For now we don't want to generate mipmaps anyway since we're going for a pixely look, so revert the filters back to GL_NEAREST. The reason this had worked for me is because on my system the texture type GL_TEXTURE_RECTANGLE_ARB is used instead of GL_TEXTURE_2D and this texture type does not support mipmaps.
2012-07-22Replaced font with DejaVu Serif CondensedThorbjørn Lindeijer7-6/+6
Looks nicer in the game in my opinion.
2012-07-20Themed the remaining ui for the lpcErik Schilling26-0/+29
2012-07-20Removed options to configure particle and ambient effectsErik Schilling2-128/+4
As discussed on IRC we agreed to remove the particle and ambients effects options. They are important for the game play and should stay enabled. Also moved the remaining options right to the resolution selection since there is enough space for them now. Change is tested. Reviewed-by: bjorn.
2012-07-17Fixed pixel alignment drawing glitches in OpenGL modeThorbjørn Lindeijer1-1/+1
At some window sizes, lines would flicker in between the tiles. This happened when the window size was not dividable by the scaling factor. Fixed by setting a slightly smaller viewport in this case (which will hopefully not cause other issues).
2012-07-17Fill the window also in software rendering modeThorbjørn Lindeijer2-8/+9
Mouse handling is broken when the game only fills a subset of the screen, and this doesn't look very nice either. Do the same as done in OpenGL mode for now.
2012-07-17Enabled specials window by defaultErik Schilling1-2/+1
2012-07-17Added lpc window theme image to CMakeListsjurkan1-0/+1
Reviewed-by: Ablu.
2012-07-15Implemented client scaling in SDL modejurkan3-16/+48
2012-07-13Small optimization in OpenGL clip area codeThorbjørn Lindeijer1-11/+8
I added mScale later and forgot to make the clip area code use it.
2012-07-12Removed debug outputThorbjørn Lindeijer1-2/+0
2012-07-12Implemented scaling in OpenGL modeThorbjørn Lindeijer9-32/+72
The screen will be scaled up as much as possible, while keeping a minimum 'virtual' resolution of 640x360.
2012-07-09Fixed gender to male onlyjurkan1-0/+3
2012-07-06LPC gui theming (replaced windows through scrolls)jurkan5-19/+19
2012-06-26add option to use system enet headershasufell1-1/+10
Reviewed-by: Ablu.
2012-06-26don't overwrite system/environment CXXFLAGShasufell1-1/+1
Reviewed-by: Ablu.
2012-06-26make datadir an bindir paths modifiablehasufell1-2/+2
Reviewed-by: Ablu.
2012-06-08Made error on imageset loading a bit more informativeErik Schilling1-1/+2
Reviewed-by: bjorn.
2012-05-25Fixed skill display for manaservErik Schilling3-5/+12
- shows manaserv skills at all - shows the progress bar for manaserv skills again - shows the level for this skills (server side patch needed) TODO: URGENT: Fix attributes and skills getting stored in same list. Reviewed-by: Bertram.
2012-05-21Merge branch '0.6'Erik Schilling2-3/+3
2012-05-21Made pickup notifications to appear as particle instead of text by default0.6Erik Schilling1-2/+2
Reviewed-by: bjorn.