Skip to content

Commit c031848

Browse files
authored
Merge pull request #14 from vircon32/RemoveSDLImage
Remove SDL_image dependency
2 parents 5b4f609 + c3af526 commit c031848

23 files changed

+43
-243
lines changed

DesktopEmulator/CMakeLists.txt

+1-7
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ project("Vircon32" LANGUAGES C CXX)
2828
# Define version
2929
set(PROJECT_VERSION_MAJOR 25)
3030
set(PROJECT_VERSION_MINOR 2)
31-
set(PROJECT_VERSION_PATCH 2)
31+
set(PROJECT_VERSION_PATCH 3)
3232

3333
# Set names for final executables
3434
set(EMULATOR_BINARY_NAME "Vircon32")
@@ -140,7 +140,6 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/CMakeMod
140140
# For these depencencies, find everything they need too
141141
find_package(OpenGL REQUIRED)
142142
find_package(SDL2 REQUIRED)
143-
find_package(SDL2_image REQUIRED)
144143
find_package(OpenAL REQUIRED)
145144

146145
# On Linux we will need to find GTK too
@@ -185,7 +184,6 @@ endfunction()
185184
message(STATUS "System Dependencies:")
186185
show_dependency_status("OPENGL" OPENGL)
187186
show_dependency_status("SDL2" SDL2)
188-
show_dependency_status("SDL2_image" SDL2_image)
189187
show_dependency_status("OPENAL" OPENAL)
190188
show_dependency_status("PNG" PNG)
191189
show_dependency_status("FREEALUT" FREEALUT)
@@ -229,10 +227,8 @@ set(EMULATOR_LIBS
229227
imgui
230228
V32ConsoleLogic
231229
tinyxml2
232-
${PNG_LIBRARY}
233230
${OPENGL_LIBRARIES}
234231
${SDL2_LIBRARY}
235-
${SDL2_IMAGE_LIBRARY}
236232
${PNG_LIBRARY}
237233
glad
238234
${OPENAL_LIBRARY}
@@ -246,8 +242,6 @@ set(EDITCONTROLS_LIBS
246242
tinyxml2
247243
${OPENGL_LIBRARIES}
248244
${SDL2_LIBRARY}
249-
${SDL2_IMAGE_LIBRARY}
250-
${PNG_LIBRARY}
251245
glad
252246
${CMAKE_DL_LIBS})
253247

DesktopEmulator/ControlsEditor/LoadTexture.cpp

+13-11
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
// include SDL2 headers
1010
#define SDL_MAIN_HANDLED
1111
#include "SDL.h" // [ SDL2 ] Main header
12-
#include "SDL_image.h" // [ SDL2 ] SDL_Image
1312

1413
// declare used namespaces
1514
using namespace std;
@@ -31,16 +30,12 @@ GLuint LoadTexture( const string& FileName )
3130
SDL_Surface* LoadedImage = NULL;
3231

3332
// load image from file
34-
LoadedImage = IMG_Load( FileName.c_str() );
33+
LoadedImage = SDL_LoadBMP( FileName.c_str() );
3534

3635
// check errors
3736
if( !LoadedImage )
3837
THROW( "Could not load image into an SDL surface" );
3938

40-
// only 32bpp images are supported
41-
if( LoadedImage->format->BitsPerPixel < 24 )
42-
THROW( "Only true color images are supported (24 or 32 bits per pixel)" );
43-
4439
// read image dimensions
4540
int ImageWidth = LoadedImage->w;
4641
int ImageHeight = LoadedImage->h;
@@ -49,6 +44,16 @@ GLuint LoadTexture( const string& FileName )
4944
int TextureWidth = NextPowerOf2( ImageWidth );
5045
int TextureHeight = NextPowerOf2( ImageHeight );
5146

47+
// convert surface to 32-bit RGBA
48+
SDL_Surface* Aux = LoadedImage;
49+
SDL_Surface* ConvertedImage = SDL_ConvertSurfaceFormat( LoadedImage, SDL_PIXELFORMAT_RGBA32, 0 );
50+
51+
if( !ConvertedImage )
52+
THROW( "SDL failed to convert texture to RGBA" );
53+
54+
LoadedImage = ConvertedImage;
55+
SDL_FreeSurface( Aux );
56+
5257
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
5358
// STEP 2: CREATE OPENGL TEXTURE FROM LOADED IMAGE
5459
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -65,9 +70,6 @@ GLuint LoadTexture( const string& FileName )
6570
// clear OpenGL errors
6671
glGetError();
6772

68-
// format configuration to build the OpenGL texture from the SDL surface
69-
GLenum ImageType = (LoadedImage->format->BytesPerPixel == 4)? GL_RGBA : GL_RGB;
70-
7173
// (1) first we build an empty texture of the extented size
7274
glTexImage2D
7375
(
@@ -77,7 +79,7 @@ GLuint LoadTexture( const string& FileName )
7779
TextureWidth, // texture width in pixels
7880
TextureHeight, // texture height in pixels
7981
0, // border width (must be 0 or 1)
80-
ImageType, // color components in the source
82+
GL_RGBA, // color components in the source
8183
GL_UNSIGNED_BYTE, // each color component is a byte
8284
nullptr // buffer storing the texture data
8385
);
@@ -95,7 +97,7 @@ GLuint LoadTexture( const string& FileName )
9597
0, // y offset
9698
ImageWidth, // image width in pixels
9799
ImageHeight, // image height in pixels
98-
ImageType, // color components in the source
100+
GL_RGBA, // color components in the source
99101
GL_UNSIGNED_BYTE, // each color component is a byte
100102
LoadedImage->pixels // buffer storing the texture data
101103
);

DesktopEmulator/ControlsEditor/Main.cpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
#include "SDL.h" // [ SDL2 ] Main header
2424
#include "SDL_opengl.h" // [ SDL2 ] OpenGL interface
2525
#include "SDL_joystick.h" // [ SDL2 ] Joystick functions
26-
#include "SDL_image.h" // [ SDL2 ] SDL_Image
2726

2827
// detection of Windows
2928
#if defined(__WIN32__) || defined(_WIN32) || defined(_WIN64)
@@ -358,7 +357,7 @@ int main()
358357
Languages[ "Spanish" ] = LanguageSpanish;
359358

360359
// load our gamepad texture
361-
GamepadTextureID = LoadTexture( ProgramFolder + "Images" + PathSeparator + "GamepadMapping.png" );
360+
GamepadTextureID = LoadTexture( ProgramFolder + "Images" + PathSeparator + "GamepadMapping.bmp" );
362361

363362
// load our configuration from XML file
364363
LoadControls( ProgramFolder + "Config-Controls.xml" );
@@ -373,8 +372,8 @@ int main()
373372
#if !defined(WINDOWS_OS)
374373
try
375374
{
376-
string IconPath = string(ProgramFolder) + "Images" + PathSeparator + "EditControlsMultisize.ico";
377-
SDL_Surface* WindowIcon = IMG_Load( IconPath.c_str() );
375+
string IconPath = string(ProgramFolder) + "Images" + PathSeparator + "EditControlsWindowIcon.bmp";
376+
SDL_Surface* WindowIcon = SDL_LoadBMP( IconPath.c_str() );
378377
SDL_SetWindowIcon( OpenGL2D.Window, WindowIcon );
379378
LOG( "Loaded program icon" );
380379
}
Binary file not shown.
10.1 KB
Binary file not shown.
-5.23 KB
Binary file not shown.
4.86 KB
Binary file not shown.
-2.31 KB
Binary file not shown.
Binary file not shown.

DesktopEmulator/Emulator/Main.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
// include SDL2 headers
2626
#define SDL_MAIN_HANDLED
27-
#include "SDL_image.h" // [ SDL2 ] SDL_Image
27+
#include "SDL.h" // [ SDL2 ] Main header
2828

2929
// include imgui headers
3030
#include <imgui/imgui.h> // [ Dear ImGui ] Main header
@@ -254,14 +254,14 @@ int main( int NumberOfArguments, char* Arguments[] )
254254
// on non-windows systems load and set the window icon
255255
// (not needed on Windows: already packed in the executable)
256256
#if !defined(WINDOWS_OS)
257-
string IconPath = string(EmulatorFolder) + "Images" + PathSeparator + "Vircon32Multisize.ico";
258-
SDL_Surface* WindowIcon = IMG_Load( IconPath.c_str() );
257+
string IconPath = string(EmulatorFolder) + "Images" + PathSeparator + "Vircon32WindowIcon.bmp";
258+
SDL_Surface* WindowIcon = SDL_LoadBMP( IconPath.c_str() );
259259
SDL_SetWindowIcon( Video.GetWindow(), WindowIcon );
260260
LOG( "Loaded program icon" );
261261
#endif
262262

263263
// load the no signal image
264-
NoSignalTexture.Load( string(EmulatorFolder) + "Images" + PathSeparator + "NoSignal.png" );
264+
NoSignalTexture.Load( string(EmulatorFolder) + "Images" + PathSeparator + "NoSignal.bmp" );
265265
}
266266
catch( exception& e )
267267
{

DesktopEmulator/Emulator/Texture.cpp

+13-11
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
// include SDL2 headers
1212
#define SDL_MAIN_HANDLED
1313
#include "SDL.h" // [ SDL2 ] Main header
14-
#include "SDL_image.h" // [ SDL2 ] SDL_Image
1514

1615
// declare used namespaces
1716
using namespace std;
@@ -62,16 +61,12 @@ void Texture::Load( const string& FileName )
6261
SDL_Surface* LoadedImage = NULL;
6362

6463
// load image from file
65-
LoadedImage = IMG_Load( FileName.c_str() );
64+
LoadedImage = SDL_LoadBMP( FileName.c_str() );
6665

6766
// check errors
6867
if( !LoadedImage )
6968
THROW( "Could not load image into an SDL surface" );
7069

71-
// only 32bpp images are supported
72-
if( LoadedImage->format->BitsPerPixel < 24 )
73-
THROW( "Only true color images are supported (24 or 32 bits per pixel)" );
74-
7570
// read image dimensions
7671
ImageWidth = LoadedImage->w;
7772
ImageHeight = LoadedImage->h;
@@ -80,6 +75,16 @@ void Texture::Load( const string& FileName )
8075
TextureWidth = NextPowerOf2( ImageWidth );
8176
TextureHeight = NextPowerOf2( ImageHeight );
8277

78+
// convert surface to 32-bit RGBA
79+
SDL_Surface* Aux = LoadedImage;
80+
SDL_Surface* ConvertedImage = SDL_ConvertSurfaceFormat( LoadedImage, SDL_PIXELFORMAT_RGBA32, 0 );
81+
82+
if( !ConvertedImage )
83+
THROW( "SDL failed to convert texture to RGBA" );
84+
85+
LoadedImage = ConvertedImage;
86+
SDL_FreeSurface( Aux );
87+
8388
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
8489
// STEP 2: CREATE OPENGL TEXTURE FROM LOADED IMAGE
8590
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -95,9 +100,6 @@ void Texture::Load( const string& FileName )
95100
// clear OpenGL errors
96101
glGetError();
97102

98-
// format configuration to build the OpenGL texture from the SDL surface
99-
GLenum ImageType = (LoadedImage->format->BytesPerPixel == 4)? GL_RGBA : GL_RGB;
100-
101103
// (1) first we build an empty texture of the extented size
102104
glTexImage2D
103105
(
@@ -107,7 +109,7 @@ void Texture::Load( const string& FileName )
107109
TextureWidth, // texture width in pixels
108110
TextureHeight, // texture height in pixels
109111
0, // border width (must be 0 or 1)
110-
ImageType, // color components in the source
112+
GL_RGBA, // color components in the source
111113
GL_UNSIGNED_BYTE, // each color component is a byte
112114
nullptr // buffer storing the texture data
113115
);
@@ -125,7 +127,7 @@ void Texture::Load( const string& FileName )
125127
0, // y offset
126128
ImageWidth, // image width in pixels
127129
ImageHeight, // image height in pixels
128-
ImageType, // color components in the source
130+
GL_RGBA, // color components in the source
129131
GL_UNSIGNED_BYTE, // each color component is a byte
130132
LoadedImage->pixels // buffer storing the texture data
131133
);

DesktopEmulator/ExternalLibraries/CMakeLists.txt

+3-5
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ else()
2929
osdialog/osdialog_${OSDIALOG_TARGET}.c)
3030
endif()
3131

32-
# source files to compile XML library tinyxml2
33-
# (ignore the original CMake script)
34-
add_library(tinyxml2 STATIC
35-
tinyxml2/tinyxml2.cpp)
36-
32+
# XML library tinyxml2
33+
# (use the modified CMake script in its folder)
34+
add_subdirectory(tinyxml2)
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
cmake_minimum_required(VERSION 3.15)
2-
project(tinyxml2 VERSION 10.0.0)
3-
4-
include(CTest)
5-
option(tinyxml2_BUILD_TESTING "Build tests for tinyxml2" "${BUILD_TESTING}")
6-
71
##
82
## Honor tinyxml2_SHARED_LIBS to match install interface
93
##
@@ -19,7 +13,7 @@ endif ()
1913
set(CMAKE_CXX_VISIBILITY_PRESET hidden)
2014
set(CMAKE_VISIBILITY_INLINES_HIDDEN YES)
2115

22-
add_library(tinyxml2 tinyxml2.cpp tinyxml2.h)
16+
add_library(tinyxml2 STATIC tinyxml2.cpp tinyxml2.h)
2317
add_library(tinyxml2::tinyxml2 ALIAS tinyxml2)
2418

2519
# Uncomment the following line to require C++11 (or greater) to use tinyxml2
@@ -41,94 +35,3 @@ set_target_properties(
4135
VERSION "${tinyxml2_VERSION}"
4236
SOVERSION "${tinyxml2_VERSION_MAJOR}"
4337
)
44-
45-
if (tinyxml2_BUILD_TESTING)
46-
add_executable(xmltest xmltest.cpp)
47-
target_link_libraries(xmltest PRIVATE tinyxml2::tinyxml2)
48-
49-
add_test(
50-
NAME xmltest
51-
COMMAND xmltest
52-
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
53-
)
54-
55-
set_tests_properties(xmltest PROPERTIES PASS_REGULAR_EXPRESSION ", Fail 0")
56-
endif ()
57-
58-
##
59-
## Installation
60-
##
61-
62-
## Standard modules
63-
include(GNUInstallDirs)
64-
include(CMakePackageConfigHelpers)
65-
66-
## Custom settings
67-
option(tinyxml2_INSTALL_PKGCONFIG "Create and install pkgconfig files" ON)
68-
69-
set(tinyxml2_INSTALL_PKGCONFIGDIR "${CMAKE_INSTALL_LIBDIR}/pkgconfig"
70-
CACHE PATH "Directory for pkgconfig files")
71-
72-
set(tinyxml2_INSTALL_CMAKEDIR "${CMAKE_INSTALL_LIBDIR}/cmake/tinyxml2"
73-
CACHE STRING "Path to tinyxml2 CMake files")
74-
75-
## CMake targets and export scripts
76-
77-
install(
78-
TARGETS tinyxml2 EXPORT tinyxml2-targets
79-
RUNTIME COMPONENT tinyxml2_runtime
80-
LIBRARY COMPONENT tinyxml2_runtime
81-
NAMELINK_COMPONENT tinyxml2_development
82-
ARCHIVE COMPONENT tinyxml2_development
83-
INCLUDES DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}"
84-
)
85-
86-
# Type-specific targets
87-
88-
if (BUILD_SHARED_LIBS)
89-
set(type shared)
90-
else ()
91-
set(type static)
92-
endif ()
93-
94-
install(
95-
EXPORT tinyxml2-targets
96-
DESTINATION "${tinyxml2_INSTALL_CMAKEDIR}"
97-
NAMESPACE tinyxml2::
98-
FILE tinyxml2-${type}-targets.cmake
99-
COMPONENT tinyxml2_development
100-
)
101-
102-
# Auto-generated version compatibility file
103-
write_basic_package_version_file(
104-
tinyxml2-config-version.cmake
105-
COMPATIBILITY SameMajorVersion
106-
)
107-
108-
install(
109-
FILES
110-
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/tinyxml2-config.cmake"
111-
"${CMAKE_CURRENT_BINARY_DIR}/tinyxml2-config-version.cmake"
112-
DESTINATION "${tinyxml2_INSTALL_CMAKEDIR}"
113-
COMPONENT tinyxml2_development
114-
)
115-
116-
## Headers
117-
118-
install(
119-
FILES tinyxml2.h
120-
TYPE INCLUDE
121-
COMPONENT tinyxml2_development
122-
)
123-
124-
## pkg-config
125-
126-
if (tinyxml2_INSTALL_PKGCONFIG)
127-
configure_file(cmake/tinyxml2.pc.in tinyxml2.pc.gen @ONLY)
128-
file(GENERATE OUTPUT tinyxml2.pc INPUT "${CMAKE_CURRENT_BINARY_DIR}/tinyxml2.pc.gen")
129-
install(
130-
FILES "${CMAKE_CURRENT_BINARY_DIR}/tinyxml2.pc"
131-
DESTINATION "${tinyxml2_INSTALL_PKGCONFIGDIR}"
132-
COMPONENT tinyxml2_development
133-
)
134-
endif ()
-131 KB
Binary file not shown.
-60.8 KB
Binary file not shown.

DesktopEmulator/Runtime/libjpeg-8.dll

-633 KB
Binary file not shown.

DesktopEmulator/Runtime/liblzma-5.dll

-169 KB
Binary file not shown.

DesktopEmulator/Runtime/libtiff-5.dll

-554 KB
Binary file not shown.

DesktopEmulator/Runtime/libwebp-7.dll

-452 KB
Binary file not shown.

DesktopEmulator/Runtime/libzstd.dll

-722 KB
Binary file not shown.

DevelopmentTools/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ project("Vircon32")
7070
# Define version
7171
set(PROJECT_VERSION_MAJOR 25)
7272
set(PROJECT_VERSION_MINOR 2)
73-
set(PROJECT_VERSION_PATCH 2)
73+
set(PROJECT_VERSION_PATCH 3)
7474

7575
# Set names for final executables
7676
set(C_COMPILER_BINARY_NAME "compile")
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# source files to compile XML library tinyxml2
2-
# (ignore the original CMake script)
3-
add_library(tinyxml2 STATIC
4-
tinyxml2/tinyxml2.cpp)
1+
# XML library tinyxml2
2+
# (use the modified CMake script in its folder)
3+
add_subdirectory(tinyxml2)

0 commit comments

Comments
 (0)