├── .gitattributes ├── .gitignore ├── .gitmodules ├── .travis.yml ├── 3rdparty ├── freetype │ ├── x32 │ │ ├── FTL.TXT │ │ ├── GPL.TXT │ │ ├── bin │ │ │ ├── freetype-config │ │ │ ├── freetype6.dll │ │ │ ├── pcre3.dll │ │ │ ├── regex2.dll │ │ │ └── zlib1.dll │ │ ├── include │ │ │ ├── freetype2 │ │ │ │ └── freetype │ │ │ │ │ ├── config │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ ├── ftheader.h │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ ├── ftoption.h │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ ├── freetype.h │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ ├── ftcache.h │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ ├── fterrors.h │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ ├── ftimage.h │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ ├── ftlist.h │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ ├── ftmac.h │ │ │ │ │ ├── ftmm.h │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ ├── ftotval.h │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ ├── ftrender.h │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ ├── fttypes.h │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ ├── ftxf86.h │ │ │ │ │ ├── t1tables.h │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ ├── tttables.h │ │ │ │ │ ├── tttags.h │ │ │ │ │ └── ttunpat.h │ │ │ ├── ft2build.h │ │ │ └── regex.h │ │ └── lib │ │ │ ├── freetype-bcc.lib │ │ │ ├── freetype.lib │ │ │ ├── freetype6.def │ │ │ ├── libfreetype.dll.a │ │ │ ├── libregex.dll.a │ │ │ ├── libregex.la │ │ │ ├── pkgconfig │ │ │ └── freetype2.pc │ │ │ ├── regex-bcc.lib │ │ │ ├── regex.lib │ │ │ └── regex2.def │ └── x64 │ │ ├── FTL.TXT │ │ ├── GPLv2.TXT │ │ ├── LICENSE.TXT │ │ ├── bin │ │ ├── freetype6.dll │ │ ├── pcre3.dll │ │ ├── regex2.dll │ │ └── zlib1.dll │ │ ├── include │ │ ├── freetype │ │ │ ├── config │ │ │ │ ├── ftconfig.h │ │ │ │ ├── ftheader.h │ │ │ │ ├── ftmodule.h │ │ │ │ ├── ftoption.h │ │ │ │ └── ftstdlib.h │ │ │ ├── freetype.h │ │ │ ├── ftadvanc.h │ │ │ ├── ftautoh.h │ │ │ ├── ftbbox.h │ │ │ ├── ftbdf.h │ │ │ ├── ftbitmap.h │ │ │ ├── ftbzip2.h │ │ │ ├── ftcache.h │ │ │ ├── ftcffdrv.h │ │ │ ├── ftchapters.h │ │ │ ├── ftcid.h │ │ │ ├── fterrdef.h │ │ │ ├── fterrors.h │ │ │ ├── ftfntfmt.h │ │ │ ├── ftgasp.h │ │ │ ├── ftglyph.h │ │ │ ├── ftgxval.h │ │ │ ├── ftgzip.h │ │ │ ├── ftimage.h │ │ │ ├── ftincrem.h │ │ │ ├── ftlcdfil.h │ │ │ ├── ftlist.h │ │ │ ├── ftlzw.h │ │ │ ├── ftmac.h │ │ │ ├── ftmm.h │ │ │ ├── ftmodapi.h │ │ │ ├── ftmoderr.h │ │ │ ├── ftotval.h │ │ │ ├── ftoutln.h │ │ │ ├── ftpfr.h │ │ │ ├── ftrender.h │ │ │ ├── ftsizes.h │ │ │ ├── ftsnames.h │ │ │ ├── ftstroke.h │ │ │ ├── ftsynth.h │ │ │ ├── ftsystem.h │ │ │ ├── fttrigon.h │ │ │ ├── ftttdrv.h │ │ │ ├── fttypes.h │ │ │ ├── ftwinfnt.h │ │ │ ├── t1tables.h │ │ │ ├── ttnameid.h │ │ │ ├── tttables.h │ │ │ ├── tttags.h │ │ │ └── ttunpat.h │ │ └── ft2build.h │ │ └── lib │ │ └── freetype.lib ├── gl3w │ ├── gl3w.c │ ├── gl3w.h │ └── glcorearb.h ├── glm │ ├── copying.txt │ ├── glm │ │ ├── CMakeLists.txt │ │ ├── common.hpp │ │ ├── detail │ │ │ ├── _features.hpp │ │ │ ├── _fixes.hpp │ │ │ ├── _noise.hpp │ │ │ ├── _swizzle.hpp │ │ │ ├── _swizzle_func.hpp │ │ │ ├── _vectorize.hpp │ │ │ ├── compute_common.hpp │ │ │ ├── compute_vector_relational.hpp │ │ │ ├── func_common.inl │ │ │ ├── func_common_simd.inl │ │ │ ├── func_exponential.inl │ │ │ ├── func_exponential_simd.inl │ │ │ ├── func_geometric.inl │ │ │ ├── func_geometric_simd.inl │ │ │ ├── func_integer.inl │ │ │ ├── func_integer_simd.inl │ │ │ ├── func_matrix.inl │ │ │ ├── func_matrix_simd.inl │ │ │ ├── func_packing.inl │ │ │ ├── func_packing_simd.inl │ │ │ ├── func_trigonometric.inl │ │ │ ├── func_trigonometric_simd.inl │ │ │ ├── func_vector_relational.inl │ │ │ ├── func_vector_relational_simd.inl │ │ │ ├── glm.cpp │ │ │ ├── qualifier.hpp │ │ │ ├── setup.hpp │ │ │ ├── type_float.hpp │ │ │ ├── type_half.hpp │ │ │ ├── type_half.inl │ │ │ ├── type_mat2x2.hpp │ │ │ ├── type_mat2x2.inl │ │ │ ├── type_mat2x3.hpp │ │ │ ├── type_mat2x3.inl │ │ │ ├── type_mat2x4.hpp │ │ │ ├── type_mat2x4.inl │ │ │ ├── type_mat3x2.hpp │ │ │ ├── type_mat3x2.inl │ │ │ ├── type_mat3x3.hpp │ │ │ ├── type_mat3x3.inl │ │ │ ├── type_mat3x4.hpp │ │ │ ├── type_mat3x4.inl │ │ │ ├── type_mat4x2.hpp │ │ │ ├── type_mat4x2.inl │ │ │ ├── type_mat4x3.hpp │ │ │ ├── type_mat4x3.inl │ │ │ ├── type_mat4x4.hpp │ │ │ ├── type_mat4x4.inl │ │ │ ├── type_mat4x4_simd.inl │ │ │ ├── type_quat.hpp │ │ │ ├── type_quat.inl │ │ │ ├── type_quat_simd.inl │ │ │ ├── type_vec1.hpp │ │ │ ├── type_vec1.inl │ │ │ ├── type_vec2.hpp │ │ │ ├── type_vec2.inl │ │ │ ├── type_vec3.hpp │ │ │ ├── type_vec3.inl │ │ │ ├── type_vec4.hpp │ │ │ ├── type_vec4.inl │ │ │ └── type_vec4_simd.inl │ │ ├── exponential.hpp │ │ ├── ext.hpp │ │ ├── ext │ │ │ ├── matrix_clip_space.hpp │ │ │ ├── matrix_clip_space.inl │ │ │ ├── matrix_common.hpp │ │ │ ├── matrix_common.inl │ │ │ ├── matrix_double2x2.hpp │ │ │ ├── matrix_double2x2_precision.hpp │ │ │ ├── matrix_double2x3.hpp │ │ │ ├── matrix_double2x3_precision.hpp │ │ │ ├── matrix_double2x4.hpp │ │ │ ├── matrix_double2x4_precision.hpp │ │ │ ├── matrix_double3x2.hpp │ │ │ ├── matrix_double3x2_precision.hpp │ │ │ ├── matrix_double3x3.hpp │ │ │ ├── matrix_double3x3_precision.hpp │ │ │ ├── matrix_double3x4.hpp │ │ │ ├── matrix_double3x4_precision.hpp │ │ │ ├── matrix_double4x2.hpp │ │ │ ├── matrix_double4x2_precision.hpp │ │ │ ├── matrix_double4x3.hpp │ │ │ ├── matrix_double4x3_precision.hpp │ │ │ ├── matrix_double4x4.hpp │ │ │ ├── matrix_double4x4_precision.hpp │ │ │ ├── matrix_float2x2.hpp │ │ │ ├── matrix_float2x2_precision.hpp │ │ │ ├── matrix_float2x3.hpp │ │ │ ├── matrix_float2x3_precision.hpp │ │ │ ├── matrix_float2x4.hpp │ │ │ ├── matrix_float2x4_precision.hpp │ │ │ ├── matrix_float3x2.hpp │ │ │ ├── matrix_float3x2_precision.hpp │ │ │ ├── matrix_float3x3.hpp │ │ │ ├── matrix_float3x3_precision.hpp │ │ │ ├── matrix_float3x4.hpp │ │ │ ├── matrix_float3x4_precision.hpp │ │ │ ├── matrix_float4x2.hpp │ │ │ ├── matrix_float4x2_precision.hpp │ │ │ ├── matrix_float4x3.hpp │ │ │ ├── matrix_float4x3_precision.hpp │ │ │ ├── matrix_float4x4.hpp │ │ │ ├── matrix_float4x4_precision.hpp │ │ │ ├── matrix_projection.hpp │ │ │ ├── matrix_projection.inl │ │ │ ├── matrix_relational.hpp │ │ │ ├── matrix_relational.inl │ │ │ ├── matrix_transform.hpp │ │ │ ├── matrix_transform.inl │ │ │ ├── quaternion_common.hpp │ │ │ ├── quaternion_common.inl │ │ │ ├── quaternion_common_simd.inl │ │ │ ├── quaternion_double.hpp │ │ │ ├── quaternion_double_precision.hpp │ │ │ ├── quaternion_exponential.hpp │ │ │ ├── quaternion_exponential.inl │ │ │ ├── quaternion_float.hpp │ │ │ ├── quaternion_float_precision.hpp │ │ │ ├── quaternion_geometric.hpp │ │ │ ├── quaternion_geometric.inl │ │ │ ├── quaternion_relational.hpp │ │ │ ├── quaternion_relational.inl │ │ │ ├── quaternion_transform.hpp │ │ │ ├── quaternion_transform.inl │ │ │ ├── quaternion_trigonometric.hpp │ │ │ ├── quaternion_trigonometric.inl │ │ │ ├── scalar_common.hpp │ │ │ ├── scalar_common.inl │ │ │ ├── scalar_constants.hpp │ │ │ ├── scalar_constants.inl │ │ │ ├── scalar_int_sized.hpp │ │ │ ├── scalar_integer.hpp │ │ │ ├── scalar_integer.inl │ │ │ ├── scalar_relational.hpp │ │ │ ├── scalar_relational.inl │ │ │ ├── scalar_uint_sized.hpp │ │ │ ├── scalar_ulp.hpp │ │ │ ├── scalar_ulp.inl │ │ │ ├── vector_bool1.hpp │ │ │ ├── vector_bool1_precision.hpp │ │ │ ├── vector_bool2.hpp │ │ │ ├── vector_bool2_precision.hpp │ │ │ ├── vector_bool3.hpp │ │ │ ├── vector_bool3_precision.hpp │ │ │ ├── vector_bool4.hpp │ │ │ ├── vector_bool4_precision.hpp │ │ │ ├── vector_common.hpp │ │ │ ├── vector_common.inl │ │ │ ├── vector_double1.hpp │ │ │ ├── vector_double1_precision.hpp │ │ │ ├── vector_double2.hpp │ │ │ ├── vector_double2_precision.hpp │ │ │ ├── vector_double3.hpp │ │ │ ├── vector_double3_precision.hpp │ │ │ ├── vector_double4.hpp │ │ │ ├── vector_double4_precision.hpp │ │ │ ├── vector_float1.hpp │ │ │ ├── vector_float1_precision.hpp │ │ │ ├── vector_float2.hpp │ │ │ ├── vector_float2_precision.hpp │ │ │ ├── vector_float3.hpp │ │ │ ├── vector_float3_precision.hpp │ │ │ ├── vector_float4.hpp │ │ │ ├── vector_float4_precision.hpp │ │ │ ├── vector_int1.hpp │ │ │ ├── vector_int1_precision.hpp │ │ │ ├── vector_int2.hpp │ │ │ ├── vector_int2_precision.hpp │ │ │ ├── vector_int3.hpp │ │ │ ├── vector_int3_precision.hpp │ │ │ ├── vector_int4.hpp │ │ │ ├── vector_int4_precision.hpp │ │ │ ├── vector_integer.hpp │ │ │ ├── vector_integer.inl │ │ │ ├── vector_relational.hpp │ │ │ ├── vector_relational.inl │ │ │ ├── vector_uint1.hpp │ │ │ ├── vector_uint1_precision.hpp │ │ │ ├── vector_uint2.hpp │ │ │ ├── vector_uint2_precision.hpp │ │ │ ├── vector_uint3.hpp │ │ │ ├── vector_uint3_precision.hpp │ │ │ ├── vector_uint4.hpp │ │ │ ├── vector_uint4_precision.hpp │ │ │ ├── vector_ulp.hpp │ │ │ └── vector_ulp.inl │ │ ├── fwd.hpp │ │ ├── geometric.hpp │ │ ├── glm.hpp │ │ ├── gtc │ │ │ ├── bitfield.hpp │ │ │ ├── bitfield.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── constants.hpp │ │ │ ├── constants.inl │ │ │ ├── epsilon.hpp │ │ │ ├── epsilon.inl │ │ │ ├── integer.hpp │ │ │ ├── integer.inl │ │ │ ├── matrix_access.hpp │ │ │ ├── matrix_access.inl │ │ │ ├── matrix_integer.hpp │ │ │ ├── matrix_inverse.hpp │ │ │ ├── matrix_inverse.inl │ │ │ ├── matrix_transform.hpp │ │ │ ├── matrix_transform.inl │ │ │ ├── noise.hpp │ │ │ ├── noise.inl │ │ │ ├── packing.hpp │ │ │ ├── packing.inl │ │ │ ├── quaternion.hpp │ │ │ ├── quaternion.inl │ │ │ ├── quaternion_simd.inl │ │ │ ├── random.hpp │ │ │ ├── random.inl │ │ │ ├── reciprocal.hpp │ │ │ ├── reciprocal.inl │ │ │ ├── round.hpp │ │ │ ├── round.inl │ │ │ ├── type_aligned.hpp │ │ │ ├── type_precision.hpp │ │ │ ├── type_precision.inl │ │ │ ├── type_ptr.hpp │ │ │ ├── type_ptr.inl │ │ │ ├── ulp.hpp │ │ │ ├── ulp.inl │ │ │ └── vec1.hpp │ │ ├── gtx │ │ │ ├── associated_min_max.hpp │ │ │ ├── associated_min_max.inl │ │ │ ├── bit.hpp │ │ │ ├── bit.inl │ │ │ ├── closest_point.hpp │ │ │ ├── closest_point.inl │ │ │ ├── color_encoding.hpp │ │ │ ├── color_encoding.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── color_space_YCoCg.hpp │ │ │ ├── color_space_YCoCg.inl │ │ │ ├── common.hpp │ │ │ ├── common.inl │ │ │ ├── compatibility.hpp │ │ │ ├── compatibility.inl │ │ │ ├── component_wise.hpp │ │ │ ├── component_wise.inl │ │ │ ├── dual_quaternion.hpp │ │ │ ├── dual_quaternion.inl │ │ │ ├── easing.hpp │ │ │ ├── easing.inl │ │ │ ├── euler_angles.hpp │ │ │ ├── euler_angles.inl │ │ │ ├── extend.hpp │ │ │ ├── extend.inl │ │ │ ├── extended_min_max.hpp │ │ │ ├── extended_min_max.inl │ │ │ ├── exterior_product.hpp │ │ │ ├── exterior_product.inl │ │ │ ├── fast_exponential.hpp │ │ │ ├── fast_exponential.inl │ │ │ ├── fast_square_root.hpp │ │ │ ├── fast_square_root.inl │ │ │ ├── fast_trigonometry.hpp │ │ │ ├── fast_trigonometry.inl │ │ │ ├── float_notmalize.inl │ │ │ ├── functions.hpp │ │ │ ├── functions.inl │ │ │ ├── gradient_paint.hpp │ │ │ ├── gradient_paint.inl │ │ │ ├── handed_coordinate_space.hpp │ │ │ ├── handed_coordinate_space.inl │ │ │ ├── hash.hpp │ │ │ ├── hash.inl │ │ │ ├── integer.hpp │ │ │ ├── integer.inl │ │ │ ├── intersect.hpp │ │ │ ├── intersect.inl │ │ │ ├── io.hpp │ │ │ ├── io.inl │ │ │ ├── log_base.hpp │ │ │ ├── log_base.inl │ │ │ ├── matrix_cross_product.hpp │ │ │ ├── matrix_cross_product.inl │ │ │ ├── matrix_decompose.hpp │ │ │ ├── matrix_decompose.inl │ │ │ ├── matrix_factorisation.hpp │ │ │ ├── matrix_factorisation.inl │ │ │ ├── matrix_interpolation.hpp │ │ │ ├── matrix_interpolation.inl │ │ │ ├── matrix_major_storage.hpp │ │ │ ├── matrix_major_storage.inl │ │ │ ├── matrix_operation.hpp │ │ │ ├── matrix_operation.inl │ │ │ ├── matrix_query.hpp │ │ │ ├── matrix_query.inl │ │ │ ├── matrix_transform_2d.hpp │ │ │ ├── matrix_transform_2d.inl │ │ │ ├── mixed_product.hpp │ │ │ ├── mixed_product.inl │ │ │ ├── norm.hpp │ │ │ ├── norm.inl │ │ │ ├── normal.hpp │ │ │ ├── normal.inl │ │ │ ├── normalize_dot.hpp │ │ │ ├── normalize_dot.inl │ │ │ ├── number_precision.hpp │ │ │ ├── number_precision.inl │ │ │ ├── optimum_pow.hpp │ │ │ ├── optimum_pow.inl │ │ │ ├── orthonormalize.hpp │ │ │ ├── orthonormalize.inl │ │ │ ├── perpendicular.hpp │ │ │ ├── perpendicular.inl │ │ │ ├── polar_coordinates.hpp │ │ │ ├── polar_coordinates.inl │ │ │ ├── projection.hpp │ │ │ ├── projection.inl │ │ │ ├── quaternion.hpp │ │ │ ├── quaternion.inl │ │ │ ├── range.hpp │ │ │ ├── raw_data.hpp │ │ │ ├── raw_data.inl │ │ │ ├── rotate_normalized_axis.hpp │ │ │ ├── rotate_normalized_axis.inl │ │ │ ├── rotate_vector.hpp │ │ │ ├── rotate_vector.inl │ │ │ ├── scalar_multiplication.hpp │ │ │ ├── scalar_relational.hpp │ │ │ ├── scalar_relational.inl │ │ │ ├── spline.hpp │ │ │ ├── spline.inl │ │ │ ├── std_based_type.hpp │ │ │ ├── std_based_type.inl │ │ │ ├── string_cast.hpp │ │ │ ├── string_cast.inl │ │ │ ├── texture.hpp │ │ │ ├── texture.inl │ │ │ ├── transform.hpp │ │ │ ├── transform.inl │ │ │ ├── transform2.hpp │ │ │ ├── transform2.inl │ │ │ ├── type_aligned.hpp │ │ │ ├── type_aligned.inl │ │ │ ├── type_trait.hpp │ │ │ ├── type_trait.inl │ │ │ ├── vec_swizzle.hpp │ │ │ ├── vector_angle.hpp │ │ │ ├── vector_angle.inl │ │ │ ├── vector_query.hpp │ │ │ ├── vector_query.inl │ │ │ ├── wrap.hpp │ │ │ └── wrap.inl │ │ ├── integer.hpp │ │ ├── mat2x2.hpp │ │ ├── mat2x3.hpp │ │ ├── mat2x4.hpp │ │ ├── mat3x2.hpp │ │ ├── mat3x3.hpp │ │ ├── mat3x4.hpp │ │ ├── mat4x2.hpp │ │ ├── mat4x3.hpp │ │ ├── mat4x4.hpp │ │ ├── matrix.hpp │ │ ├── packing.hpp │ │ ├── simd │ │ │ ├── common.h │ │ │ ├── exponential.h │ │ │ ├── geometric.h │ │ │ ├── integer.h │ │ │ ├── matrix.h │ │ │ ├── neon.h │ │ │ ├── packing.h │ │ │ ├── platform.h │ │ │ ├── trigonometric.h │ │ │ └── vector_relational.h │ │ ├── trigonometric.hpp │ │ ├── vec2.hpp │ │ ├── vec3.hpp │ │ ├── vec4.hpp │ │ └── vector_relational.hpp │ ├── manual.md │ └── readme.md ├── irrKlang │ ├── x32 │ │ ├── bin │ │ │ ├── linux-gcc │ │ │ │ ├── ikpFlac.so │ │ │ │ ├── ikpMP3.so │ │ │ │ └── libIrrKlang.so │ │ │ ├── win32-gcc │ │ │ │ ├── ikpFlac.dll │ │ │ │ ├── ikpMP3.dll │ │ │ │ └── irrKlang.dll │ │ │ └── win32-visualStudio │ │ │ │ ├── ikpFlac.dll │ │ │ │ ├── ikpMP3.dll │ │ │ │ └── irrKlang.dll │ │ ├── changes.txt │ │ ├── include │ │ │ ├── ik_ESoundEngineOptions.h │ │ │ ├── ik_ESoundOutputDrivers.h │ │ │ ├── ik_EStreamModes.h │ │ │ ├── ik_IAudioRecorder.h │ │ │ ├── ik_IAudioStream.h │ │ │ ├── ik_IAudioStreamLoader.h │ │ │ ├── ik_IFileFactory.h │ │ │ ├── ik_IFileReader.h │ │ │ ├── ik_IRefCounted.h │ │ │ ├── ik_ISound.h │ │ │ ├── ik_ISoundDeviceList.h │ │ │ ├── ik_ISoundEffectControl.h │ │ │ ├── ik_ISoundEngine.h │ │ │ ├── ik_ISoundMixedOutputReceiver.h │ │ │ ├── ik_ISoundSource.h │ │ │ ├── ik_ISoundStopEventReceiver.h │ │ │ ├── ik_IVirtualRefCounted.h │ │ │ ├── ik_SAudioStreamFormat.h │ │ │ ├── ik_irrKlangTypes.h │ │ │ ├── ik_vec3d.h │ │ │ └── irrKlang.h │ │ ├── lib │ │ │ ├── Win32-gcc │ │ │ │ ├── libirrKlang.a │ │ │ │ └── libirrKlang.def │ │ │ └── Win32-visualStudio │ │ │ │ ├── irrKlang.exp │ │ │ │ └── irrKlang.lib │ │ └── readme.txt │ └── x64 │ │ ├── bin │ │ ├── linux-gcc-64 │ │ │ ├── ikpFlac.so │ │ │ ├── ikpMP3.so │ │ │ └── libIrrKlang.so │ │ └── winx64-visualStudio │ │ │ ├── ikpFlac.dll │ │ │ ├── ikpMP3.dll │ │ │ └── irrKlang.dll │ │ ├── changes.txt │ │ ├── include │ │ ├── ik_ESoundEngineOptions.h │ │ ├── ik_ESoundOutputDrivers.h │ │ ├── ik_EStreamModes.h │ │ ├── ik_IAudioRecorder.h │ │ ├── ik_IAudioStream.h │ │ ├── ik_IAudioStreamLoader.h │ │ ├── ik_IFileFactory.h │ │ ├── ik_IFileReader.h │ │ ├── ik_IRefCounted.h │ │ ├── ik_ISound.h │ │ ├── ik_ISoundDeviceList.h │ │ ├── ik_ISoundEffectControl.h │ │ ├── ik_ISoundEngine.h │ │ ├── ik_ISoundMixedOutputReceiver.h │ │ ├── ik_ISoundSource.h │ │ ├── ik_ISoundStopEventReceiver.h │ │ ├── ik_IVirtualRefCounted.h │ │ ├── ik_SAudioStreamFormat.h │ │ ├── ik_irrKlangTypes.h │ │ ├── ik_vec3d.h │ │ └── irrKlang.h │ │ ├── lib │ │ ├── Win32-visualStudio │ │ │ ├── irrKlang.exp │ │ │ └── irrKlang.lib │ │ └── Winx64-visualStudio │ │ │ ├── irrKlang.exp │ │ │ └── irrKlang.lib │ │ └── readme.txt └── libclipboard │ ├── LICENSE │ ├── README.md │ ├── clipboard_sample1.c │ ├── include │ ├── libclipboard-config.h │ ├── libclipboard-config.h.in │ └── libclipboard.h │ └── src │ ├── clipboard_cocoa.c │ ├── clipboard_common.c │ ├── clipboard_win32.c │ └── clipboard_x11.c ├── CMakeLists.txt ├── Doxyfile ├── LICENSE ├── README.md ├── appveyor.yml ├── bin ├── PT Free Font License_eng_1.3.txt ├── PT Free Font License_rus_1.3.txt ├── PTM55F.ttf ├── atlasgen │ ├── 1pix │ │ ├── 1.png │ │ ├── 1pix-atlas.json │ │ ├── 1pix-growing-atlas.json │ │ ├── 1pix-growing-one.png │ │ ├── 1pix-growing.json │ │ ├── 1pix-growing.png │ │ ├── 1pix-one-atlas.json │ │ ├── 1pix-one-growing-atlas.json │ │ ├── 1pix-one-growing.json │ │ ├── 1pix-one.json │ │ ├── 1pix-one.png │ │ ├── 1pix.json │ │ ├── 1pix.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ └── 5.png │ ├── bug-47 │ │ ├── bug-47-atlas.json │ │ ├── bug-47-atlas.png │ │ ├── bug-47.json │ │ ├── license.txt │ │ ├── list.txt │ │ ├── lorc_originals_png │ │ │ ├── ace.png │ │ │ ├── acid-blob.png │ │ │ ├── acorn.png │ │ │ ├── aerial-signal.png │ │ │ ├── aerodynamic-harpoon.png │ │ │ ├── aerosol.png │ │ │ ├── afterburn.png │ │ │ ├── air-zigzag.png │ │ │ ├── alien-fire.png │ │ │ ├── alien-skull.png │ │ │ ├── alien-stare.png │ │ │ ├── all-for-one.png │ │ │ ├── alligator-clip.png │ │ │ ├── ammonite-fossil.png │ │ │ ├── ammonite.png │ │ │ ├── anatomy.png │ │ │ ├── anchor.png │ │ │ ├── android-mask.png │ │ │ ├── andromeda-chain.png │ │ │ ├── angel-outfit.png │ │ │ ├── angel-wings.png │ │ │ ├── angler-fish.png │ │ │ ├── angular-spider.png │ │ │ ├── animal-skull.png │ │ │ ├── ankh.png │ │ │ ├── anthem.png │ │ │ ├── anvil-impact.png │ │ │ ├── anvil.png │ │ │ ├── apple-maggot.png │ │ │ ├── apple-seeds.png │ │ │ ├── archery-target.png │ │ │ ├── architect-mask.png │ │ │ ├── arcing-bolt.png │ │ │ ├── armadillo-tail.png │ │ │ ├── armor-vest.png │ │ │ └── armoured-shell.png │ │ └── mk.rb │ ├── bug-48 │ │ ├── 186x409.png │ │ ├── 206x270.png │ │ ├── 208x454.png │ │ ├── 800x600.png │ │ ├── bug-48-atlas.json │ │ ├── bug-48-atlas.png │ │ └── bug-48.json │ ├── merge1 │ │ ├── non_unique.png │ │ ├── non_unique_1.json │ │ ├── non_unique_2.json │ │ ├── non_unique_atlas.json │ │ └── non_unique_atlas.png │ ├── merge2 │ │ ├── itemicons.json │ │ ├── itemicons.png │ │ ├── non_unique_atlas-atlas.json │ │ ├── non_unique_atlas-atlas.png │ │ ├── non_unique_atlas.json │ │ ├── non_unique_atlas.png │ │ └── non_unique_atlas2.json │ ├── no-mipmaps │ │ ├── 1.png │ │ ├── 1pix.json │ │ ├── no-mipmaps-atlas.json │ │ └── no-mipmaps.srgba │ ├── non_unique │ │ ├── non_unique.json │ │ ├── non_unique.png │ │ ├── non_unique_atlas.json │ │ └── non_unique_atlas.png │ ├── run_tests_debug.bat │ └── srgba │ │ └── srgba.json ├── examples │ ├── game │ │ ├── RLE.bmp │ │ ├── RLE.tga │ │ ├── TRUE.tga │ │ ├── bonus.bmp │ │ ├── enemybullet.bmp │ │ ├── enemybullet.tga │ │ ├── example-game-19.cfg │ │ ├── example-game-19.png │ │ ├── font.cfg │ │ ├── font.png │ │ ├── halfsmile.png │ │ ├── ingame.tga │ │ ├── largesmile.png │ │ ├── neutral.png │ │ ├── objects.bmp │ │ ├── playerbullet.bmp │ │ ├── resources.json │ │ ├── sad.png │ │ ├── smile.png │ │ ├── test.bmp │ │ ├── test_b.bmp │ │ ├── title.tga │ │ └── title_example_game.png │ ├── multithreading.json │ ├── multithreading │ │ ├── 420_pixel_art_icons │ │ │ ├── A_Armor04.png │ │ │ ├── A_Armor05.png │ │ │ ├── A_Armour01.png │ │ │ ├── A_Armour02.png │ │ │ ├── A_Armour03.png │ │ │ ├── A_Clothing01.png │ │ │ ├── A_Clothing02.png │ │ │ ├── A_Shoes01.png │ │ │ ├── A_Shoes02.png │ │ │ ├── A_Shoes03.png │ │ │ ├── A_Shoes04.png │ │ │ ├── A_Shoes05.png │ │ │ ├── A_Shoes06.png │ │ │ ├── A_Shoes07.png │ │ │ ├── Ac_Medal01.png │ │ │ ├── Ac_Medal02.png │ │ │ ├── Ac_Medal03.png │ │ │ ├── Ac_Medal04.png │ │ │ ├── Ac_Necklace01.png │ │ │ ├── Ac_Necklace02.png │ │ │ ├── Ac_Necklace03.png │ │ │ ├── Ac_Necklace04.png │ │ │ ├── Ac_Ring04.png │ │ │ ├── C_Elm01.png │ │ │ ├── C_Elm03.png │ │ │ ├── C_Elm04.png │ │ │ ├── C_Hat01.png │ │ │ ├── C_Hat02.png │ │ │ ├── E_Bones02.png │ │ │ ├── E_Bones03.png │ │ │ ├── E_Gold01.png │ │ │ ├── E_Gold02.png │ │ │ ├── E_Metal01.png │ │ │ ├── E_Metal02.png │ │ │ ├── E_Metal03.png │ │ │ ├── E_Metal04.png │ │ │ ├── E_Metal05.png │ │ │ ├── E_Wood01.png │ │ │ ├── E_Wood02.png │ │ │ ├── E_Wood03.png │ │ │ ├── E_Wood04.png │ │ │ ├── I_Agate.png │ │ │ ├── I_Amethist.png │ │ │ ├── I_Antidote.png │ │ │ ├── I_BatWing.png │ │ │ ├── I_BirdsBeak.png │ │ │ ├── I_Bone.png │ │ │ ├── I_Book.png │ │ │ ├── I_Bottle01.png │ │ │ ├── I_Bottle02.png │ │ │ ├── I_Bottle03.png │ │ │ ├── I_Bottle04.png │ │ │ ├── I_BronzeBar.png │ │ │ ├── I_BronzeCoin.png │ │ │ ├── I_C_Banana.png │ │ │ ├── I_C_Bread.png │ │ │ ├── I_C_Carrot.png │ │ │ ├── I_C_Cheese.png │ │ │ ├── I_C_Cherry.png │ │ │ ├── I_C_Fish.png │ │ │ ├── I_C_Grapes.png │ │ │ ├── I_C_GreenGrapes.png │ │ │ ├── I_C_GreenPepper.png │ │ │ ├── I_C_Lemon.png │ │ │ ├── I_C_Meat.png │ │ │ ├── I_C_Mulberry.png │ │ │ ├── I_C_Mushroom.png │ │ │ ├── I_C_Nut.png │ │ │ ├── I_C_Orange.png │ │ │ ├── I_C_Pear.png │ │ │ ├── I_C_Pie.png │ │ │ ├── I_C_Pineapple.png │ │ │ ├── I_C_Radish.png │ │ │ ├── I_C_RawFish.png │ │ │ ├── I_C_RawMeat.png │ │ │ ├── I_C_RedPepper.png │ │ │ ├── I_C_Strawberry.png │ │ │ ├── I_C_Watermellon.png │ │ │ ├── I_C_YellowPepper.png │ │ │ ├── I_Cannon01.png │ │ │ ├── I_Cannon02.png │ │ │ ├── I_Cannon03.png │ │ │ ├── I_Cannon04.png │ │ │ ├── I_Cannon05.png │ │ │ ├── I_Chest01.png │ │ │ ├── I_Chest02.png │ │ │ ├── I_Coal.png │ │ │ ├── I_Crystal01.png │ │ │ ├── I_Crystal02.png │ │ │ ├── I_Crystal03.png │ │ │ ├── I_Diamond.png │ │ │ ├── I_Eye.png │ │ │ ├── I_Fabric.png │ │ │ ├── I_Fang.png │ │ │ ├── I_Feather01.png │ │ │ ├── I_Feather02.png │ │ │ ├── I_FishTail.png │ │ │ ├── I_FoxTail.png │ │ │ ├── I_FrogLeg.png │ │ │ ├── I_GoldBar.png │ │ │ ├── I_GoldCoin.png │ │ │ ├── I_Ink.png │ │ │ ├── I_IronBall.png │ │ │ ├── I_Jade.png │ │ │ ├── I_Key01.png │ │ │ ├── I_Key02.png │ │ │ ├── I_Key03.png │ │ │ ├── I_Key04.png │ │ │ ├── I_Key05.png │ │ │ ├── I_Key06.png │ │ │ ├── I_Key07.png │ │ │ ├── I_Leaf.png │ │ │ ├── I_Map.png │ │ │ ├── I_Mirror.png │ │ │ ├── I_Opal.png │ │ │ ├── I_Rock01.png │ │ │ ├── I_Rock02.png │ │ │ ├── I_Rock03.png │ │ │ ├── I_Rock04.png │ │ │ ├── I_Rock05.png │ │ │ ├── I_Rubi.png │ │ │ ├── I_Saphire.png │ │ │ ├── I_ScorpionClaw.png │ │ │ ├── I_Scroll.png │ │ │ ├── I_Scroll02.png │ │ │ ├── I_SilverBar.png │ │ │ ├── I_SilverCoin.png │ │ │ ├── I_SnailShell.png │ │ │ ├── I_SolidShell.png │ │ │ ├── I_Telescope.png │ │ │ ├── I_Tentacle.png │ │ │ ├── I_Torch01.png │ │ │ ├── I_Torch02.png │ │ │ ├── I_Water.png │ │ │ ├── I_WolfFur.png │ │ │ ├── P_Blue01.png │ │ │ ├── P_Blue02.png │ │ │ ├── P_Blue03.png │ │ │ ├── P_Blue04.png │ │ │ ├── P_Green01.png │ │ │ ├── P_Green02.png │ │ │ ├── P_Green03.png │ │ │ ├── P_Green04.png │ │ │ ├── P_Medicine01.png │ │ │ ├── P_Medicine02.png │ │ │ ├── P_Medicine03.png │ │ │ ├── P_Medicine04.png │ │ │ ├── P_Medicine05.png │ │ │ ├── P_Medicine06.png │ │ │ ├── P_Medicine07.png │ │ │ ├── P_Medicine08.png │ │ │ ├── P_Medicine09.png │ │ │ ├── P_Orange01.png │ │ │ ├── P_Orange02.png │ │ │ ├── P_Orange03.png │ │ │ ├── P_Orange04.png │ │ │ ├── P_Pink01.png │ │ │ ├── P_Pink02.png │ │ │ ├── P_Pink03.png │ │ │ ├── P_Pink04.png │ │ │ ├── P_Red01.png │ │ │ ├── P_Red02.png │ │ │ ├── P_Red03.png │ │ │ ├── P_Red04.png │ │ │ ├── P_White01.png │ │ │ ├── P_White02.png │ │ │ ├── P_White03.png │ │ │ ├── P_White04.png │ │ │ ├── P_Yellow01.png │ │ │ ├── P_Yellow02.png │ │ │ ├── P_Yellow03.png │ │ │ ├── P_Yellow04.png │ │ │ ├── Readme.txt │ │ │ ├── S_Bow01.png │ │ │ ├── S_Bow02.png │ │ │ ├── S_Bow03.png │ │ │ ├── S_Bow04.png │ │ │ ├── S_Bow05.png │ │ │ ├── S_Bow06.png │ │ │ ├── S_Bow07.png │ │ │ ├── S_Bow08.png │ │ │ ├── S_Bow09.png │ │ │ ├── S_Bow10.png │ │ │ ├── S_Bow11.png │ │ │ ├── S_Bow12.png │ │ │ ├── S_Bow13.png │ │ │ ├── S_Bow14.png │ │ │ ├── S_Buff01.png │ │ │ ├── S_Buff02.png │ │ │ ├── S_Buff03.png │ │ │ ├── S_Buff04.png │ │ │ ├── S_Buff05.png │ │ │ ├── S_Buff06.png │ │ │ ├── S_Buff07.png │ │ │ ├── S_Buff08.png │ │ │ ├── S_Buff09.png │ │ │ ├── S_Buff10.png │ │ │ ├── S_Buff11.png │ │ │ ├── S_Buff12.png │ │ │ ├── S_Buff13.png │ │ │ ├── S_Buff14.png │ │ │ ├── S_Death01.png │ │ │ ├── S_Death02.png │ │ │ ├── S_Earth01.png │ │ │ ├── S_Earth02.png │ │ │ ├── S_Earth03.png │ │ │ ├── S_Earth04.png │ │ │ ├── S_Earth05.png │ │ │ ├── S_Earth06.png │ │ │ ├── S_Earth07.png │ │ │ ├── S_Fire01.png │ │ │ ├── S_Fire02.png │ │ │ ├── S_Fire03.png │ │ │ ├── S_Fire04.png │ │ │ ├── S_Fire05.png │ │ │ ├── S_Fire06.png │ │ │ ├── S_Fire07.png │ │ │ ├── S_Holy01.png │ │ │ ├── S_Holy02.png │ │ │ ├── S_Holy03.png │ │ │ ├── S_Holy04.png │ │ │ ├── S_Holy05.png │ │ │ ├── S_Holy06.png │ │ │ ├── S_Holy07.png │ │ │ ├── S_Ice01.png │ │ │ ├── S_Ice02.png │ │ │ ├── S_Ice03.png │ │ │ ├── S_Ice04.png │ │ │ ├── S_Ice05.png │ │ │ ├── S_Ice06.png │ │ │ ├── S_Ice07.png │ │ │ ├── S_Light01.png │ │ │ ├── S_Light02.png │ │ │ ├── S_Light03.png │ │ │ ├── S_Magic01.png │ │ │ ├── S_Magic02.png │ │ │ ├── S_Magic03.png │ │ │ ├── S_Magic04.png │ │ │ ├── S_Physic01.png │ │ │ ├── S_Physic02.png │ │ │ ├── S_Poison01.png │ │ │ ├── S_Poison02.png │ │ │ ├── S_Poison03.png │ │ │ ├── S_Poison04.png │ │ │ ├── S_Poison05.png │ │ │ ├── S_Poison06.png │ │ │ ├── S_Poison07.png │ │ │ ├── S_Shadow01.png │ │ │ ├── S_Shadow02.png │ │ │ ├── S_Shadow03.png │ │ │ ├── S_Shadow04.png │ │ │ ├── S_Shadow05.png │ │ │ ├── S_Shadow06.png │ │ │ ├── S_Shadow07.png │ │ │ ├── S_Sword01.png │ │ │ ├── S_Sword02.png │ │ │ ├── S_Sword03.png │ │ │ ├── S_Sword04.png │ │ │ ├── S_Sword05.png │ │ │ ├── S_Sword06.png │ │ │ ├── S_Sword07.png │ │ │ ├── S_Sword08.png │ │ │ ├── S_Sword09.png │ │ │ ├── S_Sword10.png │ │ │ ├── S_Thunder01.png │ │ │ ├── S_Thunder02.png │ │ │ ├── S_Thunder03.png │ │ │ ├── S_Thunder04.png │ │ │ ├── S_Thunder05.png │ │ │ ├── S_Thunder06.png │ │ │ ├── S_Thunder07.png │ │ │ ├── S_Water01.png │ │ │ ├── S_Water02.png │ │ │ ├── S_Water03.png │ │ │ ├── S_Water04.png │ │ │ ├── S_Water05.png │ │ │ ├── S_Water06.png │ │ │ ├── S_Water07.png │ │ │ ├── S_Wind01.png │ │ │ ├── S_Wind02.png │ │ │ ├── S_Wind03.png │ │ │ ├── S_Wind04.png │ │ │ ├── S_Wind05.png │ │ │ ├── S_Wind06.png │ │ │ ├── S_Wind07.png │ │ │ ├── W_Axe001.png │ │ │ ├── W_Axe002.png │ │ │ ├── W_Axe003.png │ │ │ ├── W_Axe004.png │ │ │ ├── W_Axe005.png │ │ │ ├── W_Axe006.png │ │ │ ├── W_Axe007.png │ │ │ ├── W_Axe008.png │ │ │ ├── W_Axe009.png │ │ │ ├── W_Axe010.png │ │ │ ├── W_Axe011.png │ │ │ ├── W_Axe012.png │ │ │ ├── W_Axe013.png │ │ │ ├── W_Axe014.png │ │ │ ├── W_Book01.png │ │ │ ├── W_Book02.png │ │ │ ├── W_Book03.png │ │ │ ├── W_Book04.png │ │ │ ├── W_Book05.png │ │ │ ├── W_Book06.png │ │ │ ├── W_Book07.png │ │ │ ├── W_Bow01.png │ │ │ ├── W_Bow02.png │ │ │ ├── W_Bow03.png │ │ │ ├── W_Bow04.png │ │ │ ├── W_Bow05.png │ │ │ ├── W_Bow06.png │ │ │ ├── W_Bow07.png │ │ │ ├── W_Bow08.png │ │ │ ├── W_Bow09.png │ │ │ ├── W_Bow10.png │ │ │ ├── W_Bow11.png │ │ │ ├── W_Bow12.png │ │ │ ├── W_Bow13.png │ │ │ ├── W_Bow14.png │ │ │ ├── W_Dagger001.png │ │ │ ├── W_Dagger002.png │ │ │ ├── W_Dagger003.png │ │ │ ├── W_Dagger004.png │ │ │ ├── W_Dagger005.png │ │ │ ├── W_Dagger006.png │ │ │ ├── W_Dagger007.png │ │ │ ├── W_Dagger008.png │ │ │ ├── W_Dagger009.png │ │ │ ├── W_Dagger010.png │ │ │ ├── W_Dagger011.png │ │ │ ├── W_Dagger012.png │ │ │ ├── W_Dagger013.png │ │ │ ├── W_Dagger014.png │ │ │ ├── W_Dagger015.png │ │ │ ├── W_Dagger016.png │ │ │ ├── W_Dagger017.png │ │ │ ├── W_Dagger018.png │ │ │ ├── W_Dagger019.png │ │ │ ├── W_Dagger020.png │ │ │ ├── W_Dagger021.png │ │ │ ├── W_Fist001.png │ │ │ ├── W_Fist002.png │ │ │ ├── W_Fist003.png │ │ │ ├── W_Fist004.png │ │ │ ├── W_Fist005.png │ │ │ ├── W_Gun001.png │ │ │ ├── W_Gun002.png │ │ │ ├── W_Gun003.png │ │ │ ├── W_Mace001.png │ │ │ ├── W_Mace002.png │ │ │ ├── W_Mace003.png │ │ │ ├── W_Mace004.png │ │ │ ├── W_Mace005.png │ │ │ ├── W_Mace006.png │ │ │ ├── W_Mace007.png │ │ │ ├── W_Mace008.png │ │ │ ├── W_Mace009.png │ │ │ ├── W_Mace010.png │ │ │ ├── W_Mace011.png │ │ │ ├── W_Mace012.png │ │ │ ├── W_Mace013.png │ │ │ ├── W_Mace014.png │ │ │ ├── W_Spear001.png │ │ │ ├── W_Spear002.png │ │ │ ├── W_Spear003.png │ │ │ ├── W_Spear004.png │ │ │ ├── W_Spear005.png │ │ │ ├── W_Spear006.png │ │ │ ├── W_Spear007.png │ │ │ ├── W_Spear008.png │ │ │ ├── W_Spear009.png │ │ │ ├── W_Spear010.png │ │ │ ├── W_Spear011.png │ │ │ ├── W_Spear012.png │ │ │ ├── W_Spear013.png │ │ │ ├── W_Spear014.png │ │ │ ├── W_Sword001.png │ │ │ ├── W_Sword002.png │ │ │ ├── W_Sword003.png │ │ │ ├── W_Sword004.png │ │ │ ├── W_Sword005.png │ │ │ ├── W_Sword006.png │ │ │ ├── W_Sword007.png │ │ │ ├── W_Sword008.png │ │ │ ├── W_Sword009.png │ │ │ ├── W_Sword010.png │ │ │ ├── W_Sword011.png │ │ │ ├── W_Sword012.png │ │ │ ├── W_Sword013.png │ │ │ ├── W_Sword014.png │ │ │ ├── W_Sword015.png │ │ │ ├── W_Sword016.png │ │ │ ├── W_Sword017.png │ │ │ ├── W_Sword018.png │ │ │ ├── W_Sword019.png │ │ │ ├── W_Sword020.png │ │ │ ├── W_Sword021.png │ │ │ ├── W_Throw001.png │ │ │ ├── W_Throw002.png │ │ │ ├── W_Throw003.png │ │ │ ├── W_Throw004.png │ │ │ └── W_Throw05.png │ │ ├── ARCADECLASSIC.TTF │ │ ├── Bit Quest.mp3 │ │ ├── Jerry Five.mp3 │ │ ├── Liberation Sans │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── LiberationSans-Regular.ttf │ │ │ ├── License.txt │ │ │ └── README │ │ ├── License.txt │ │ ├── Readme.txt │ │ ├── Tiles │ │ │ ├── tileBlue_01.png │ │ │ ├── tileBlue_02.png │ │ │ ├── tileBlue_03.png │ │ │ ├── tileBlue_04.png │ │ │ ├── tileBlue_05.png │ │ │ ├── tileBlue_06.png │ │ │ ├── tileBlue_07.png │ │ │ ├── tileBlue_08.png │ │ │ ├── tileBlue_09.png │ │ │ ├── tileBlue_10.png │ │ │ ├── tileBlue_11.png │ │ │ ├── tileBlue_12.png │ │ │ ├── tileBlue_13.png │ │ │ ├── tileBlue_14.png │ │ │ ├── tileBlue_15.png │ │ │ ├── tileBlue_16.png │ │ │ ├── tileBlue_17.png │ │ │ ├── tileBlue_18.png │ │ │ ├── tileBlue_19.png │ │ │ ├── tileBlue_20.png │ │ │ ├── tileBlue_21.png │ │ │ ├── tileBlue_22.png │ │ │ ├── tileBlue_23.png │ │ │ ├── tileBlue_24.png │ │ │ ├── tileBlue_25.png │ │ │ ├── tileBlue_26.png │ │ │ ├── tileBlue_27.png │ │ │ ├── tileBrown_01.png │ │ │ ├── tileBrown_02.png │ │ │ ├── tileBrown_03.png │ │ │ ├── tileBrown_04.png │ │ │ ├── tileBrown_05.png │ │ │ ├── tileBrown_06.png │ │ │ ├── tileBrown_07.png │ │ │ ├── tileBrown_08.png │ │ │ ├── tileBrown_09.png │ │ │ ├── tileBrown_10.png │ │ │ ├── tileBrown_11.png │ │ │ ├── tileBrown_12.png │ │ │ ├── tileBrown_13.png │ │ │ ├── tileBrown_14.png │ │ │ ├── tileBrown_15.png │ │ │ ├── tileBrown_16.png │ │ │ ├── tileBrown_17.png │ │ │ ├── tileBrown_18.png │ │ │ ├── tileBrown_19.png │ │ │ ├── tileBrown_20.png │ │ │ ├── tileBrown_21.png │ │ │ ├── tileBrown_22.png │ │ │ ├── tileBrown_23.png │ │ │ ├── tileBrown_24.png │ │ │ ├── tileBrown_25.png │ │ │ ├── tileBrown_26.png │ │ │ ├── tileBrown_27.png │ │ │ ├── tileGreen_01.png │ │ │ ├── tileGreen_02.png │ │ │ ├── tileGreen_03.png │ │ │ ├── tileGreen_04.png │ │ │ ├── tileGreen_05.png │ │ │ ├── tileGreen_06.png │ │ │ ├── tileGreen_07.png │ │ │ ├── tileGreen_08.png │ │ │ ├── tileGreen_09.png │ │ │ ├── tileGreen_10.png │ │ │ ├── tileGreen_11.png │ │ │ ├── tileGreen_12.png │ │ │ ├── tileGreen_13.png │ │ │ ├── tileGreen_14.png │ │ │ ├── tileGreen_15.png │ │ │ ├── tileGreen_16.png │ │ │ ├── tileGreen_17.png │ │ │ ├── tileGreen_18.png │ │ │ ├── tileGreen_19.png │ │ │ ├── tileGreen_20.png │ │ │ ├── tileGreen_21.png │ │ │ ├── tileGreen_22.png │ │ │ ├── tileGreen_23.png │ │ │ ├── tileGreen_24.png │ │ │ ├── tileGreen_25.png │ │ │ ├── tileGreen_26.png │ │ │ ├── tileGreen_27.png │ │ │ ├── tileYellow_01.png │ │ │ ├── tileYellow_02.png │ │ │ ├── tileYellow_03.png │ │ │ ├── tileYellow_04.png │ │ │ ├── tileYellow_05.png │ │ │ ├── tileYellow_06.png │ │ │ ├── tileYellow_07.png │ │ │ ├── tileYellow_08.png │ │ │ ├── tileYellow_09.png │ │ │ ├── tileYellow_10.png │ │ │ ├── tileYellow_11.png │ │ │ ├── tileYellow_12.png │ │ │ ├── tileYellow_13.png │ │ │ ├── tileYellow_14.png │ │ │ ├── tileYellow_15.png │ │ │ ├── tileYellow_16.png │ │ │ ├── tileYellow_17.png │ │ │ ├── tileYellow_18.png │ │ │ ├── tileYellow_19.png │ │ │ ├── tileYellow_20.png │ │ │ ├── tileYellow_21.png │ │ │ ├── tileYellow_22.png │ │ │ ├── tileYellow_23.png │ │ │ ├── tileYellow_24.png │ │ │ ├── tileYellow_25.png │ │ │ ├── tileYellow_26.png │ │ │ └── tileYellow_27.png │ │ ├── applyitem.wav │ │ ├── backgrounds.json │ │ ├── backgrounds.png │ │ ├── bullets.json │ │ ├── coin.mp3 │ │ ├── coin_decay.xcf │ │ ├── coins.json │ │ ├── coins.png │ │ ├── coins │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── coins_decay.json │ │ ├── coins_decay.png │ │ ├── coins_decay │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── config_inventory_thread.json │ │ ├── config_main_thread.json │ │ ├── enemies.json │ │ ├── enemies.png │ │ ├── footstep.wav │ │ ├── funcs.js │ │ ├── game_init.js │ │ ├── game_screen.json │ │ ├── hit.mp3 │ │ ├── hit_enemy.wav │ │ ├── hurt.wav │ │ ├── icons.json │ │ ├── icons.png │ │ ├── icons.txt │ │ ├── icons_in.json │ │ ├── icons_in_old.json │ │ ├── in_game_text.json │ │ ├── in_game_text.png │ │ ├── init.js │ │ ├── item_drop.wav │ │ ├── item_taken.wav │ │ ├── jump2.wav │ │ ├── label_base.png │ │ ├── label_outline.png │ │ ├── label_rainbow.png │ │ ├── labels.json │ │ ├── labels.png │ │ ├── labels.xcf │ │ ├── labels │ │ │ ├── highscore.png │ │ │ ├── label_base.png │ │ │ ├── label_outline.png │ │ │ ├── label_rainbow.png │ │ │ ├── life.png │ │ │ └── score.png │ │ ├── laser1.png │ │ ├── laser1.xcf │ │ ├── laser2.png │ │ ├── laser2.xcf │ │ ├── lasers.json │ │ ├── lasers.png │ │ ├── lasers_in.json │ │ ├── license_music.txt │ │ ├── lose.mp3 │ │ ├── lose_screen.json │ │ ├── lose_screen.mp3 │ │ ├── make_images.php │ │ ├── misc_menu.wav │ │ ├── misc_menu_2.wav │ │ ├── mkfromfolder.rb │ │ ├── next_part.wav │ │ ├── opengameart_bullets.png │ │ ├── optionsscreen.json │ │ ├── pause.wav │ │ ├── pizzadudedotdk.txt │ │ ├── platforms.json │ │ ├── platforms.tga │ │ ├── platforms │ │ │ ├── 10x2_mono.png │ │ │ ├── 1x1.png │ │ │ ├── 1x2.png │ │ │ ├── 1x2_mono.png │ │ │ ├── 1x4.png │ │ │ ├── 1x6.png │ │ │ ├── 20x2_mono.png │ │ │ ├── 2x1.png │ │ │ ├── 2x2.png │ │ │ ├── 2x4.png │ │ │ ├── 2x6.png │ │ │ ├── 3x1.png │ │ │ ├── 3x2.png │ │ │ ├── 3x2_mono.png │ │ │ ├── 5x1.png │ │ │ ├── 5x2.png │ │ │ └── 5x2_mono.png │ │ ├── platforms_in.json │ │ ├── quake.wav │ │ ├── shooting_1.mp3 │ │ ├── shooting_2.mp3 │ │ ├── shooting_3.mp3 │ │ ├── slot.json │ │ ├── slot.png │ │ ├── swing.mp3 │ │ ├── tiles.json │ │ ├── tiles.png │ │ ├── titlescreen.json │ │ ├── white_square.json │ │ ├── white_square.png │ │ ├── win.mp3 │ │ ├── win_screen.json │ │ └── win_screen.mp3 │ ├── stress-physics.json │ └── test.srgba ├── fragment.gl ├── freetype271.dll ├── freetype271MT.dll ├── ifaceed │ ├── EMPORIUM.TTF │ ├── RLE.json │ ├── RLE.tga │ ├── animations.json │ ├── emporium.txt │ ├── font.cfg │ ├── font.png │ ├── globalconfig.json │ ├── globalconfig.xml │ ├── globalconfig2.json │ ├── placeinway.js │ ├── placeinway.json │ ├── resources │ │ ├── Thumbs.db │ │ ├── icons.png │ │ ├── icons.xml │ │ ├── itemicons.json │ │ ├── itemicons.png │ │ └── resources.json │ ├── run-debug.bat │ ├── run-release.bat │ ├── schema.json │ ├── textures.bmp │ ├── textures.json │ ├── textures.png │ ├── textures.xml │ └── textures_changed.png ├── imgui.ini ├── run_editor_for_platformer.bat ├── tests-debug.bat ├── tests-debug.sh ├── tests-release.bat ├── tests-release.sh ├── tests │ ├── animations │ │ ├── test.json │ │ └── test_easing.json │ ├── anonymousresource.json │ ├── atlasgen │ │ ├── icons-xml │ │ │ ├── bottom.png │ │ │ ├── delete.png │ │ │ ├── left.png │ │ │ ├── right.png │ │ │ ├── rotate.png │ │ │ └── top.png │ │ ├── icons_output.png │ │ ├── icons_output.xml │ │ ├── imgs │ │ │ ├── blit_successful.bmp │ │ │ ├── blit_successful.jpg │ │ │ ├── blit_successful.png │ │ │ ├── blit_successful.tga │ │ │ ├── btn-default.png │ │ │ ├── btn-directed.png │ │ │ ├── btn-red.png │ │ │ ├── btn-remove-small.png │ │ │ ├── gnu.png │ │ │ ├── gnu_shifted.jpg │ │ │ ├── kde.png │ │ │ ├── lena.jpg │ │ │ ├── lena_copy.jpg │ │ │ ├── lena_copy.png │ │ │ ├── lena_shifted.jpg │ │ │ ├── passthrough.png │ │ │ ├── tux.png │ │ │ ├── tux_shifted.jpg │ │ │ └── tux_shifted.png │ │ ├── json │ │ │ └── icons.json │ │ ├── output_valid.png │ │ ├── output_valid.xml │ │ ├── passthrough_output.png │ │ ├── passthrough_output.xml │ │ └── xml │ │ │ ├── emptyconfig.xml │ │ │ ├── fail1.xml │ │ │ ├── fail2.xml │ │ │ ├── fail3.xml │ │ │ ├── icons.xml │ │ │ ├── no_config.xml │ │ │ ├── no_texture.xml │ │ │ ├── no_texture_and_config.xml │ │ │ ├── passthrough.xml │ │ │ ├── passthrough_output.xml │ │ │ ├── tcfg1.xml │ │ │ └── valid.xml │ ├── binary.json │ ├── db │ │ ├── cannotdeletereference.json │ │ ├── database │ │ │ ├── empty.json │ │ │ ├── eo.json │ │ │ ├── invaliddefs.json │ │ │ ├── invaliditem.json │ │ │ ├── invalidtype.json │ │ │ ├── null.json │ │ │ ├── valid.json │ │ │ └── valid2.json │ │ ├── duplicatename.json │ │ ├── empty.json │ │ ├── emptyarray.json │ │ ├── inheritedproperty.json │ │ ├── invalidname.json │ │ ├── invalidpropertytype.json │ │ ├── invalidresource.json │ │ ├── invalidschema.json │ │ ├── label.json │ │ ├── missingresource.json │ │ ├── multiple_sprites.json │ │ ├── null.json │ │ ├── parseerror.json │ │ ├── resourcenameexists.json │ │ ├── sprite.json │ │ ├── sprite_change_type.json │ │ ├── sprite_lost_prop.json │ │ ├── sprite_non_required.json │ │ ├── sprite_non_required_invalid.json │ │ ├── valid.json │ │ └── valid2.json │ ├── dog_bark_001.wav │ ├── duktape │ │ └── common.js │ ├── duplicates.json │ ├── empty.json │ ├── icons.json │ ├── icons.png │ ├── icons_added.json │ ├── icons_binary.json │ ├── icons_deleted.json │ ├── icons_empty.json │ ├── icons_malformed1.json │ ├── icons_malformed2.json │ ├── icons_malformed3.json │ ├── icons_malformed4.json │ ├── icons_malformed5.json │ ├── icons_malformed6.json │ ├── icons_malformed7.json │ ├── icons_malformed8.json │ ├── icons_partiallyvalid.json │ ├── icons_replaced.json │ ├── icons_resourcefail.json │ ├── icons_samename.json │ ├── images │ │ ├── bmp.bmp │ │ ├── images.tar │ │ ├── nice.sr3g3b2 │ │ ├── nice.sr4g4b4a4 │ │ ├── nice.sr5g6b5 │ │ ├── nice.srgba │ │ ├── png.png │ │ ├── tga24_compressed.tga │ │ ├── tga32_compressed.tga │ │ ├── tga32_compressed_small.tga │ │ └── tga32_uncompressed.tga │ ├── invalidtree.json │ ├── loadingfailure.json │ ├── malformed1.json │ ├── malformed2.json │ ├── nosound.json │ ├── parseerror.json │ ├── resources │ │ └── data.tar │ ├── run-atlasgen-tests.bat │ ├── sound.json │ ├── totallyspaced.json │ ├── unregisteredtype.json │ ├── valid.json │ └── validmultiple.json └── vertex.gl ├── build-all-linux-gcc.sh ├── build-all-linux-gcc.sh.template ├── build-all-mingw.bat ├── build-all-mingw.bat.template ├── build-all-msvc.bat ├── build-all-msvc.bat.template ├── build-ifaceed-mingw.bat ├── build-ifaceed-msvc.bat ├── build-travis-ifaceed.sh ├── build-travis.sh ├── builddocs.bat ├── builddocs.sh ├── cmake └── FindirrKlang.cmake ├── configure_builds.rb ├── debug.bat ├── debug.sh ├── docs ├── README ├── atlasgen │ └── README ├── dev │ └── saddy.asta ├── exporter │ └── README ├── freetype │ └── README ├── game │ └── README ├── ifaceeditor │ └── README ├── multithreading │ └── README ├── saddy │ └── README └── stress-physics │ └── README ├── examples ├── example-game-in-qt │ ├── example-game-in-qt.pro │ ├── example-game-in-qt.sln │ ├── example-game-in-qt.vcxproj │ ├── example-game-in-qt.vcxproj.filters │ ├── example-game-in-qt.vcxproj.user │ ├── game.cpp │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.qrc │ └── mainwindow.ui ├── game │ ├── CMakeLists.txt │ ├── Doxyfile │ ├── abstractautomaticgun.cpp │ ├── abstractautomaticgun.h │ ├── automaticgun.h │ ├── bonus.cpp │ ├── bonus.h │ ├── constants.cpp │ ├── constants.h │ ├── debug.bat │ ├── debug.sh │ ├── enemy.cpp │ ├── enemy.h │ ├── enemybullet.cpp │ ├── enemybullet.h │ ├── enemyspawn.cpp │ ├── enemyspawn.h │ ├── game.cpp │ ├── game.h │ ├── game.sln │ ├── game.vcxproj │ ├── game.vcxproj.filters │ ├── game.vcxproj.user │ ├── gameobject.cpp │ ├── gameobject.h │ ├── main.cpp │ ├── player.cpp │ ├── player.h │ ├── playerbullet.cpp │ ├── playerbullet.h │ ├── release.bat │ ├── release.sh │ ├── shootingenemy.cpp │ ├── shootingenemy.h │ ├── startscreenrain.cpp │ ├── startscreenrain.h │ ├── supershootingenemy.cpp │ └── supershootingenemy.h ├── imgui │ ├── CMakeLists.txt │ ├── debug.bat │ ├── debug.sh │ ├── example.cpp │ ├── game.cpp │ ├── imgui.sln │ ├── imgui.vcxproj │ ├── imgui.vcxproj.filters │ ├── imgui.vcxproj.user │ ├── release.bat │ └── release.sh ├── multithreading │ ├── CMakeLists.txt │ ├── Doxyfile │ ├── bots │ │ ├── abstractbot.cpp │ │ ├── abstractbot.h │ │ ├── botregistry.cpp │ │ ├── botregistry.h │ │ ├── directionbot.cpp │ │ ├── directionbot.h │ │ ├── divingfloaterbot.cpp │ │ ├── divingfloaterbot.h │ │ ├── followplayerfloater.cpp │ │ ├── followplayerfloater.h │ │ ├── jsbot.cpp │ │ ├── jsbot.h │ │ ├── nullbot.cpp │ │ ├── nullbot.h │ │ ├── platformpatrolbot.cpp │ │ ├── platformpatrolbot.h │ │ ├── randombot.cpp │ │ ├── randombot.h │ │ ├── shootingstrategies │ │ │ ├── fixedanglestrategy.cpp │ │ │ ├── fixedanglestrategy.h │ │ │ ├── playerlocatingstrategy.cpp │ │ │ ├── playerlocatingstrategy.h │ │ │ ├── randomstrategy.cpp │ │ │ ├── randomstrategy.h │ │ │ ├── shootingstrategy.cpp │ │ │ ├── shootingstrategy.h │ │ │ ├── turningstrategy.cpp │ │ │ └── turningstrategy.h │ │ ├── wayfloater.cpp │ │ └── wayfloater.h │ ├── cameralockanimation.cpp │ ├── cameralockanimation.h │ ├── cameramovement.cpp │ ├── cameramovement.h │ ├── debug.bat │ ├── debug.sh │ ├── delayedtask.cpp │ ├── delayedtask.h │ ├── delayedtasks.cpp │ ├── delayedtasks.h │ ├── enemycounter.cpp │ ├── enemycounter.h │ ├── game.cpp │ ├── game.h │ ├── game │ │ ├── actor.cpp │ │ ├── actor.h │ │ ├── actoroptions.cpp │ │ ├── actoroptions.h │ │ ├── actors.cpp │ │ ├── actors.h │ │ ├── conditions.cpp │ │ ├── conditions.h │ │ ├── getpenetrationdepthforitem.cpp │ │ ├── getpenetrationdepthforitem.h │ │ ├── healthbar.cpp │ │ ├── healthbar.h │ │ ├── inventory.cpp │ │ ├── inventory.h │ │ ├── item.cpp │ │ ├── item.h │ │ ├── levelstorageloader.cpp │ │ ├── levelstorageloader.h │ │ ├── mainlevelloader.cpp │ │ ├── mainlevelloader.h │ │ ├── movingplatformregistry.cpp │ │ ├── movingplatformregistry.h │ │ ├── movingplatformstate.h │ │ ├── options.cpp │ │ ├── options.h │ │ ├── platformblinking.cpp │ │ ├── platformblinking.h │ │ ├── player.cpp │ │ ├── player.h │ │ ├── roomstorageloader.cpp │ │ ├── roomstorageloader.h │ │ ├── scorebar.cpp │ │ ├── scorebar.h │ │ ├── snowparticles.cpp │ │ ├── snowparticles.h │ │ ├── staticobjectcontainer.cpp │ │ ├── staticobjectcontainer.h │ │ ├── storedobject.h │ │ ├── triggers.cpp │ │ ├── triggers.h │ │ ├── unanimatedcoins.cpp │ │ ├── unanimatedcoins.h │ │ ├── walls.cpp │ │ └── walls.h │ ├── initphysics.cpp │ ├── initphysics.h │ ├── main.cpp │ ├── multithreading.sln │ ├── multithreading.vcxproj │ ├── multithreading.vcxproj.filters │ ├── multithreading.vcxproj.user │ ├── nodes │ │ ├── background.cpp │ │ ├── background.h │ │ ├── inventorynode.cpp │ │ ├── inventorynode.h │ │ ├── inventorypopup.cpp │ │ └── inventorypopup.h │ ├── optionsscreen.cpp │ ├── optionsscreen.h │ ├── release.bat │ ├── release.sh │ ├── scenetransitionoptions.cpp │ ├── scenetransitionoptions.h │ ├── scenetransitionprocess.cpp │ ├── scenetransitionprocess.h │ ├── scripting │ │ ├── exposespawnenemy.cpp │ │ └── exposespawnenemy.h │ ├── sounds.cpp │ ├── sounds.h │ ├── threads │ │ ├── gamestate.h │ │ ├── gamethread.cpp │ │ ├── gamethread.h │ │ ├── tasklock.cpp │ │ └── tasklock.h │ └── weapons │ │ ├── bullet.cpp │ │ ├── bullet.h │ │ ├── bulletsettings.cpp │ │ ├── bulletsettings.h │ │ ├── laser.cpp │ │ ├── laser.h │ │ ├── lasersettings.cpp │ │ ├── lasersettings.h │ │ ├── projectile.cpp │ │ ├── projectile.h │ │ ├── swing.cpp │ │ ├── swing.h │ │ ├── swingsettings.cpp │ │ ├── swingsettings.h │ │ ├── weapon.cpp │ │ └── weapon.h ├── shaders │ ├── CMakeLists.txt │ ├── debug.bat │ ├── debug.sh │ ├── main.cpp │ ├── release.bat │ ├── release.sh │ ├── shaders.sln │ ├── shaders.vcxproj │ ├── shaders.vcxproj.filters │ └── shaders.vcxproj.user └── stress-physics │ ├── CMakeLists.txt │ ├── Doxyfile │ ├── ball.cpp │ ├── ball.h │ ├── coloredbullet.cpp │ ├── coloredbullet.h │ ├── debug.bat │ ├── debug.sh │ ├── gridnode.cpp │ ├── gridnode.h │ ├── gridnodedge.h │ ├── gridnodeedge.cpp │ ├── main.cpp │ ├── movingsmile.cpp │ ├── movingsmile.h │ ├── platform.cpp │ ├── platform.h │ ├── release.bat │ ├── release.sh │ ├── shooter.cpp │ ├── shooter.h │ ├── stress-physics.sln │ ├── stress-physics.vcxproj │ ├── stress-physics.vcxproj.filters │ ├── stress-physics.vcxproj.user │ ├── uncoloredbullet.cpp │ ├── uncoloredbullet.h │ ├── world.cpp │ └── world.h ├── include ├── 3rdparty │ ├── dukpp-03.h │ ├── format │ │ ├── README.rst │ │ ├── format.h │ │ └── stdint.h │ ├── framepacker │ │ ├── LICENSE │ │ ├── README.md │ │ └── framepacker.hpp │ ├── glext │ │ ├── glext.h │ │ ├── glxext.h │ │ └── wglext.h │ ├── picojson │ │ ├── getproperty.h │ │ ├── picojson.h │ │ └── valuetotype.h │ ├── pugixml │ │ ├── pugiconfig.hpp │ │ ├── pugixml.hpp │ │ └── readme.txt │ ├── stb │ │ └── stb_image.h │ ├── tar7z.h │ ├── tpunit++ │ │ ├── COPYING │ │ ├── README │ │ ├── tpunit++.hpp │ │ └── tpunitw.h │ └── ttmath │ │ ├── COPYRIGHT │ │ ├── README │ │ ├── ttmath.h │ │ ├── ttmathbig.h │ │ ├── ttmathdec.h │ │ ├── ttmathint.h │ │ ├── ttmathmisc.h │ │ ├── ttmathobjects.h │ │ ├── ttmathparser.h │ │ ├── ttmaththreads.h │ │ ├── ttmathtypes.h │ │ ├── ttmathuint.h │ │ ├── ttmathuint_noasm.h │ │ ├── ttmathuint_x86.h │ │ ├── ttmathuint_x86_64.h │ │ └── ttmathuint_x86_64_msvc.asm ├── algo.h ├── animations │ ├── animationsabstractsavedobjectstatecreator.h │ ├── animationsanimation.h │ ├── animationsanimations.h │ ├── animationsarcmovement.h │ ├── animationsblinking.h │ ├── animationscallback.h │ ├── animationscamerarotation.h │ ├── animationscamerashaking.h │ ├── animationscolor.h │ ├── animationscomposite.h │ ├── animationscontinuousproperty.h │ ├── animationsdiscreteproperty.h │ ├── animationsfactory.h │ ├── animationsfile.h │ ├── animationsfontlist.h │ ├── animationsfontsize.h │ ├── animationsgroup.h │ ├── animationsinstance.h │ ├── animationslink.h │ ├── animationsoptionlist.h │ ├── animationsparallel.h │ ├── animationsprocess.h │ ├── animationsresize.h │ ├── animationsrotate.h │ ├── animationssavedcamerarotation.h │ ├── animationssavedcameratranslation.h │ ├── animationssavedobjectposition.h │ ├── animationssavedobjectproperty.h │ ├── animationssavedobjectpropertycreator.h │ ├── animationssavedobjectsize.h │ ├── animationssavedobjectstate.h │ ├── animationssavedobjectstatecache.h │ ├── animationssavedobjectstatecreator.h │ ├── animationssavedobjectstatecreators.h │ ├── animationssavedrenderingstringlimit.h │ ├── animationssequential.h │ ├── animationssimplemovement.h │ ├── animationstexturecoordinatescontinuous.h │ ├── animationstexturecoordinateslist.h │ ├── animationstyping.h │ ├── animationswayinstance.h │ ├── animationswaymoving.h │ ├── easing │ │ ├── easingfunction.h │ │ └── easingtypes.h │ └── setstate │ │ ├── abstractsetstatecommand.h │ │ ├── dummycommand.h │ │ ├── methodcall.h │ │ ├── setcamerarotation.h │ │ ├── setcameratranslation.h │ │ ├── setpositionproperty.h │ │ ├── setpositionviaareacall.h │ │ ├── setproperty.h │ │ └── typedcommand.h ├── arcuptr.h ├── bindable.h ├── camera.h ├── classmetadata.h ├── classmetadatacastfunction.h ├── classmetadatacontainer.h ├── cli │ ├── args.h │ ├── optiontype.h │ ├── optionvalue.h │ ├── parser.h │ └── token.h ├── clipboard.h ├── closure.h ├── collection.h ├── db │ ├── custom │ │ ├── customobject.h │ │ ├── customschema.h │ │ └── customschemafile.h │ ├── dbcanbecastedfromto.h │ ├── dbconversiontable.h │ ├── dbdatabase.h │ ├── dberror.h │ ├── dbfield.h │ ├── dblink.h │ ├── dbmethodpair.h │ ├── dbobject.h │ ├── dbobjectfactory.h │ ├── dbpopulatescenesfromdatabase.h │ ├── dbproperty.h │ ├── dbstoredproperty.h │ ├── dbstoredpropertyfactory.h │ ├── dbstronglink.h │ ├── dbtable.h │ ├── dbtypedlink.h │ ├── dbtypename.h │ ├── dbuntypedstronglink.h │ ├── dbvariant.h │ ├── internal │ │ └── pairdefinitions.h │ ├── load.h │ ├── save.h │ ├── saveloadfwd.h │ └── schema │ │ └── schema.h ├── dialogue │ ├── dialogue.h │ └── phrase.h ├── dukpp-03-irrklang │ ├── dukpp-03-irrklang.h │ └── jsstopcallback.h ├── dukpp-03 │ ├── accessor.h │ ├── basiccontext.h │ ├── classbinding.h │ ├── cloner.h │ ├── context.h │ ├── getaddressoftype.h │ ├── getter.h │ ├── getvalue.h │ ├── jsanimationcallback.h │ ├── jscollisionhandler.h │ ├── jscontrols.h │ ├── jshandler.h │ ├── jshfsmhandler.h │ ├── jsmovementlistener.h │ ├── jspipelinedelayedtask.h │ ├── jspipelinestep.h │ ├── mapinterface.h │ ├── mutex.h │ ├── preprocess.rb │ ├── ptrconstructor.h │ ├── ptrconstructor.h.t │ ├── pushvalue.h │ ├── pushvariant.h │ ├── renderer.h │ ├── semaphore.h │ ├── setter.h │ ├── thread.h │ ├── timerinterface.h │ ├── valuecloner.h │ ├── variantinterface.h │ └── wrapvalue.h ├── equalto.h ├── font.h ├── fontshaderfunction.h ├── formattedlabel.h ├── fpsinterpolation.h ├── freetype │ └── font.h ├── fuzzyequal.h ├── geometry2d.h ├── geometry3d.h ├── glcontext.h ├── hfsm │ ├── hfsmhandler.h │ ├── hfsmmachine.h │ ├── hfsmshared.h │ ├── hfsmstate.h │ ├── hfsmtransition.h │ └── hfsmtransitionrepository.h ├── imageformats │ ├── bmploader.h │ ├── loader.h │ ├── pixelstorageloader.h │ ├── pngloader.h │ ├── srgbaloader.h │ └── tgaloader.h ├── imgui │ └── sadimgui.h ├── input │ ├── controls.h │ ├── events.h │ ├── handlerconditions.h │ └── handlers.h ├── irrklang │ ├── engine.h │ ├── singlesound.h │ └── sound.h ├── isrefcountable.h ├── keycodes.h ├── keymouseconditions.h ├── label.h ├── layouts │ ├── cell.h │ ├── grid.h │ ├── horizontalalignment.h │ ├── lengthvalue.h │ ├── serializablecell.h │ ├── stackingtype.h │ ├── unit.h │ └── verticalalignment.h ├── log │ ├── color.h │ ├── consoletarget.h │ ├── filetarget.h │ ├── log.h │ ├── logmessage.h │ ├── logscope.h │ ├── logtarget.h │ ├── priority.h │ └── stringcaster.h ├── mainloop.h ├── matrix2x2.h ├── matrix3x3.h ├── maybe.h ├── mousecursor.h ├── mrobject.h ├── object.h ├── objectdependentfpsinterpolation.h ├── opengl.h ├── openinbrowser.h ├── opticksupport.h ├── orthographiccamera.h ├── os │ ├── consoleimpl.h │ ├── extensionfunctions.h │ ├── generatemipmaps30.h │ ├── glcontexthandle.h │ ├── glcontextimpl.h │ ├── glfontgeometries.h │ ├── glfontgeometry.h │ ├── glheaders.h │ ├── glspritegeometrystorage.h │ ├── glspritegeometrystorages.h │ ├── gltexturedgeometry2d.h │ ├── gltexturedgeometry3d.h │ ├── gluntexturedgeometry2d.h │ ├── gluntexturedgeometry3d.h │ ├── keydecoder.h │ ├── muteximpl.h │ ├── semaphoreimpl.h │ ├── systemeventdispatcher.h │ ├── systemwindowevent.h │ ├── threadimpl.h │ ├── timerimpl.h │ ├── ubo.h │ ├── windowhandles.h │ └── windowimpl.h ├── p2d │ ├── angularforce.h │ ├── axle.h │ ├── body.h │ ├── bouncesolver.h │ ├── bounds.h │ ├── broadcollisiondetector.h │ ├── circle.h │ ├── circletohulltransformer.h │ ├── collides1d.h │ ├── collisiondetector.h │ ├── collisionevent.h │ ├── collisionhandler.h │ ├── collisionmultimethod.h │ ├── collisionshape.h │ ├── collisiontest.h │ ├── convexhull.h │ ├── elasticforce.h │ ├── findcontactpoints.h │ ├── force.h │ ├── grahamscan.h │ ├── infiniteline.h │ ├── line.h │ ├── movement.h │ ├── multisamplingcollisiondetector.h │ ├── point.h │ ├── rectangle.h │ ├── simplecollisiondetector.h │ ├── vector.h │ ├── walls.h │ ├── weight.h │ ├── world.h │ └── worldsteptask.h ├── pausabletimer.h ├── periodicalevent.h ├── phy52d │ ├── app.h │ ├── object.h │ └── objectemitter.h ├── pipeline │ ├── pipeline.h │ ├── pipelinedelayedtask.h │ ├── pipelinedelegate.h │ ├── pipelinepausabledelayedtask.h │ ├── pipelinepausabledelayedtasklist.h │ ├── pipelineprocess.h │ ├── pipelinestep.h │ └── pipelinetask.h ├── primitiverenderer.h ├── qt │ ├── sadqtglcontext.h │ ├── sadqtkeytosadkey.h │ ├── sadqtmainloop.h │ ├── sadqtmousecursor.h │ ├── sadqtopenglwidget.h │ ├── sadqtrenderer.h │ └── sadqtwindow.h ├── refcountable.h ├── renderer.h ├── resource │ ├── abstractlink.h │ ├── error.h │ ├── folder.h │ ├── link.h │ ├── resource.h │ ├── resourcefactory.h │ ├── resourcefile.h │ ├── resourcestronglink.h │ ├── textureatlasfile.h │ └── tree.h ├── sadcolor.h ├── sadhash.h ├── sadlinkedlist.h ├── sadlinkedlist_src.h ├── sadluvcolor.h ├── sadmutex.h ├── sadpair.h ├── sadpair_src.h ├── sadpoint.h ├── sadptrhash.h ├── sadptrie.h ├── sadptrie_src.h ├── sadptrvector.h ├── sadraiiobjectvector.h ├── sadrect.h ├── sadscopedlock.h ├── sadsemaphore.h ├── sadsize.h ├── sadsleep.h ├── sadstring.h ├── sadthread.h ├── sadthreadexecutablefunction.h ├── sadvector.h ├── sadvector_src.h ├── sadwstring.h ├── scene.h ├── scenenode.h ├── settings.h ├── shader.h ├── shaderfunction.h ├── slurp.h ├── slurpjson.h ├── spit.h ├── spitjson.h ├── sprite2d.h ├── sprite3d.h ├── temporarilyimmutablecontainer.h ├── texture.h ├── texturemappedfont.h ├── timer.h ├── treedblink.h ├── unused.h ├── util │ ├── chararrayibuf.h │ ├── commoncheckedcast.h │ ├── deletetexturetask.h │ ├── fileistreambuf.h │ ├── fontcache.h │ ├── formattedlabelarg.h │ ├── free.h │ ├── fs.h │ ├── getterproxy.h │ ├── markup.h │ ├── pointercallback.h │ ├── sadthreadexecutablefunction.h │ ├── setterproxy.h │ ├── swaplayerstask.h │ └── texturedefaultimage.h ├── way.h └── window.h ├── libsaddy.sln ├── libsaddy.vcxproj ├── libsaddy.vcxproj.filters ├── libsaddy.vcxproj.user ├── logo.png ├── logo.svg ├── logo_no_bg.png ├── mascot.png ├── plugins ├── all_debug.bat ├── all_debug.sh ├── all_release.bat ├── all_release.sh ├── dukpp-03-irrklang │ ├── CMakeLists.txt │ ├── README │ ├── debug.bat │ ├── debug.sh │ ├── dukpp-03-irrklang.cpp │ ├── dukpp-03-irrklang.sln │ ├── dukpp-03-irrklang.vcxproj │ ├── dukpp-03-irrklang.vcxproj.filters │ ├── dukpp-03-irrklang.vcxproj.user │ ├── jsstopcallback.cpp │ ├── release.bat │ └── release.sh ├── dukpp-03 │ ├── CMakeLists.txt │ ├── README │ ├── accessor.cpp │ ├── classbinding.cpp │ ├── context.cpp │ ├── debug.bat │ ├── debug.sh │ ├── dukpp-03.cpp │ ├── dukpp-03.sln │ ├── dukpp-03.vcxproj │ ├── dukpp-03.vcxproj.filters │ ├── dukpp-03.vcxproj.user │ ├── exposeanimations.cpp │ ├── exposeapi.cpp │ ├── exposedialogue.cpp │ ├── exposehfsm.cpp │ ├── exposelayouts.cpp │ ├── exposep2d.cpp │ ├── getter.cpp │ ├── getvalue.cpp │ ├── js2cpp.rb │ ├── jsanimationcallback.cpp │ ├── jscollisionhandler.cpp │ ├── jscontrols.cpp │ ├── jshandler.cpp │ ├── jshfsmhandler.cpp │ ├── jspipelinedelayedtask.cpp │ ├── jspipelinestep.cpp │ ├── lib.js │ ├── lib.js.cpp │ ├── mutex.cpp │ ├── pushvalue.cpp │ ├── pushvariant.cpp │ ├── release.bat │ ├── release.sh │ ├── renderer.cpp │ ├── semaphore.cpp │ ├── setter.cpp │ ├── thread.cpp │ └── wrapvalue.cpp ├── freetype │ ├── CMakeLists.txt │ ├── README │ ├── debug.bat │ ├── debug.sh │ ├── fixedsizefont.cpp │ ├── fixedsizefont.h │ ├── fontimpl.cpp │ ├── fontimpl.h │ ├── freetypefont.cpp │ ├── glyph.cpp │ ├── glyph.h │ ├── nextpoweroftwo.cpp │ ├── nextpoweroftwo.h │ ├── packer.cpp │ ├── packer.h │ ├── release.bat │ ├── release.sh │ ├── saddy-ft.sln │ ├── saddy-ft.vcxproj │ ├── saddy-ft.vcxproj.filters │ ├── saddy-ft.vcxproj.user │ ├── texture.cpp │ ├── texture.h │ ├── towidechar.cpp │ └── towidechar.h ├── imgui │ ├── CMakeLists.txt │ ├── debug.bat │ ├── debug.sh │ ├── imgui.cpp │ ├── imgui.sln │ ├── imgui.vcxproj │ ├── imgui.vcxproj.filters │ ├── imgui.vcxproj.user │ ├── imgui_opengl3.cpp │ ├── release.bat │ ├── release.sh │ └── sadimgui.cpp ├── irrklang │ ├── CMakeLists.txt │ ├── README │ ├── debug.bat │ ├── debug.sh │ ├── engine.cpp │ ├── irrklang.sln │ ├── irrklang.vcxproj │ ├── irrklang.vcxproj.filters │ ├── irrklang.vcxproj.user │ ├── release.bat │ ├── release.sh │ ├── singlesound.cpp │ └── sound.cpp ├── phy52d │ ├── CMakeLists.txt │ ├── app.cpp │ ├── appobject.cpp │ ├── debug.bat │ ├── debug.sh │ ├── objectemitter.cpp │ ├── phy52d.filters │ ├── phy52d.sln │ ├── phy52d.user │ ├── phy52d.vcxproj │ ├── release.bat │ └── release.sh └── qt-widget │ ├── README │ ├── qt-widget.filters │ ├── qt-widget.pro │ ├── qt-widget.sln │ ├── qt-widget.user │ ├── qt-widget.vcxproj │ ├── sadqtglcontext.cpp │ ├── sadqtkeytosadkey.cpp │ ├── sadqtmainloop.cpp │ ├── sadqtmousecursor.cpp │ ├── sadqtopenglwidget.cpp │ ├── sadqtrenderer.cpp │ └── sadqtwindow.cpp ├── prepare_build.rb ├── profiler_preprocess.py ├── release.bat ├── release.sh ├── run-expand.bat ├── src ├── 3rdparty │ ├── SDL │ │ └── x11messagebox.cpp │ ├── format │ │ └── format.cc │ └── pugixml │ │ └── pugixml.cpp ├── animations │ ├── animationsabstractsavedobjectstatecreator.cpp │ ├── animationsanimation.cpp │ ├── animationsanimations.cpp │ ├── animationsarcmovement.cpp │ ├── animationsblinking.cpp │ ├── animationscallback.cpp │ ├── animationscamerarotation.cpp │ ├── animationscamerashaking.cpp │ ├── animationscolor.cpp │ ├── animationscomposite.cpp │ ├── animationsfactory.cpp │ ├── animationsfile.cpp │ ├── animationsfontlist.cpp │ ├── animationsfontsize.cpp │ ├── animationsgroup.cpp │ ├── animationsinstance.cpp │ ├── animationsoptionlist.cpp │ ├── animationsparallel.cpp │ ├── animationsprocess.cpp │ ├── animationsresize.cpp │ ├── animationsrotate.cpp │ ├── animationssavedcamerarotation.cpp │ ├── animationssavedcameratranslation.cpp │ ├── animationssavedobjectposition.cpp │ ├── animationssavedobjectsize.cpp │ ├── animationssavedobjectstate.cpp │ ├── animationssavedobjectstatecache.cpp │ ├── animationssavedobjectstatecreators.cpp │ ├── animationssavedrenderingstringlimit.cpp │ ├── animationssequential.cpp │ ├── animationssimplemovement.cpp │ ├── animationstexturecoordinatescontinuous.cpp │ ├── animationstexturecoordinateslist.cpp │ ├── animationstyping.cpp │ ├── animationswayinstance.cpp │ ├── animationswaymoving.cpp │ ├── easing │ │ ├── easingfunction.cpp │ │ └── easingtypes.cpp │ └── setstate │ │ ├── abstractsetstatecommand.cpp │ │ ├── setcamerarotation.cpp │ │ ├── setcameratranslation.cpp │ │ └── setpositionproperty.cpp ├── bindable.cpp ├── camera.cpp ├── classmetadata.cpp ├── classmetadatacastfunction.cpp ├── classmetadatacontainer.cpp ├── cli │ ├── clioptionvalue.cpp │ └── cliparser.cpp ├── clipboard.cpp ├── closure.cpp ├── db │ ├── custom │ │ ├── customobject.cpp │ │ ├── customschema.cpp │ │ └── customschemafile.cpp │ ├── dbcanbecastedfromto.cpp │ ├── dbconversiontable.cpp │ ├── dbdatabase.cpp │ ├── dberror.cpp │ ├── dblink.cpp │ ├── dbobject.cpp │ ├── dbobjectfactory.cpp │ ├── dbpopulatescenesfromdatabase.cpp │ ├── dbproperty.cpp │ ├── dbstoredpropertyfactory.cpp │ ├── dbtable.cpp │ ├── dbtypename.cpp │ ├── dbvariant.cpp │ └── schema │ │ └── schema.cpp ├── dialogue │ ├── dialogue.cpp │ └── phrase.cpp ├── font.cpp ├── fontshaderfunction.cpp ├── formattedlabel.cpp ├── fpsinterpolation.cpp ├── fuzzyequal.cpp ├── geometry2d.cpp ├── geometry3d.cpp ├── glcontext.cpp ├── hfsm │ ├── hfsmhandler.cpp │ ├── hfsmmachine.cpp │ ├── hfsmshared.cpp │ ├── hfsmstate.cpp │ ├── hfsmtransition.cpp │ └── hfsmtransitionrepository.cpp ├── imageformats │ ├── bmploader.cpp │ ├── loader.cpp │ ├── pixelstorageloader.cpp │ ├── pngloader.cpp │ ├── srgbaloader.cpp │ └── tgaloader.cpp ├── input │ ├── controls.cpp │ ├── events.cpp │ ├── handlerconditions.cpp │ └── handlers.cpp ├── keycodes.cpp ├── keymouseconditions.cpp ├── label.cpp ├── layouts │ ├── cell.cpp │ ├── grid.cpp │ ├── lengthvalue.cpp │ └── serializablecell.cpp ├── log │ ├── consoletarget.cpp │ ├── filetarget.cpp │ ├── log.cpp │ ├── logmessage.cpp │ ├── logscope.cpp │ └── logtarget.cpp ├── mainloop.cpp ├── mousecursor.cpp ├── object.cpp ├── objectdependentfpsinterpolation.cpp ├── opengl.cpp ├── openinbrowser.cpp ├── orthographiccamera.cpp ├── os │ ├── consoleimpl.cpp │ ├── extensionfunctions.cpp │ ├── generatemipmaps30.cpp │ ├── glcontextimpl.cpp │ ├── glfontgeometries.cpp │ ├── glfontgeometry.cpp │ ├── gltexturedgeometry2d.cpp │ ├── gltexturedgeometry3d.cpp │ ├── gluntexturedgeometry2d.cpp │ ├── gluntexturedgeometry3d.cpp │ ├── keydecoder.cpp │ ├── muteximpl.cpp │ ├── semaphoreimpl.cpp │ ├── systemeventdispatcher.cpp │ ├── systemwindowevent.cpp │ ├── threadimpl.cpp │ ├── timerimpl.cpp │ ├── ubo.cpp │ └── windowimpl.cpp ├── p2d │ ├── axle.cpp │ ├── body.cpp │ ├── bouncesolver.cpp │ ├── bounds.cpp │ ├── broadcollisiondetector.cpp │ ├── circle.cpp │ ├── circletohulltransformer.cpp │ ├── collisiondetector.cpp │ ├── collisionevent.cpp │ ├── collisionhandler.cpp │ ├── collisionshape.cpp │ ├── collisiontest.cpp │ ├── convexhull.cpp │ ├── elasticforce.cpp │ ├── findcontactpoints.cpp │ ├── force.cpp │ ├── grahamscan.cpp │ ├── infiniteline.cpp │ ├── line.cpp │ ├── multisamplingcollisiondetector.cpp │ ├── rectangle.cpp │ ├── simplecollisiondetector.cpp │ ├── vector.cpp │ ├── walls.cpp │ ├── weight.cpp │ ├── world.cpp │ └── worldsteptask.cpp ├── pausabletimer.cpp ├── periodicalevent.cpp ├── pipeline │ ├── pipeline.cpp │ ├── pipelinedelayedtask.cpp │ ├── pipelinedelegate.cpp │ ├── pipelinepausabledelayedtask.cpp │ ├── pipelinepausabledelayedtasklist.cpp │ ├── pipelineprocess.cpp │ ├── pipelinestep.cpp │ └── pipelinetask.cpp ├── primitiverenderer.cpp ├── refcountable.cpp ├── renderer.cpp ├── resource │ ├── abstractlink.cpp │ ├── error.cpp │ ├── folder.cpp │ ├── resource.cpp │ ├── resourcefactory.cpp │ ├── resourcefile.cpp │ ├── textureatlasfile.cpp │ └── tree.cpp ├── sadhash.cpp ├── sadluvcolor.cpp ├── sadmutex.cpp ├── sadscopedlock.cpp ├── sadsemaphore.cpp ├── sadsleep.cpp ├── sadstring.cpp ├── sadthread.cpp ├── sadthreadexecutablefunction.cpp ├── sadwstring.cpp ├── scene.cpp ├── scenenode.cpp ├── settings.cpp ├── shader.cpp ├── shaderfunction.cpp ├── slurp.cpp ├── slurpjson.cpp ├── spit.cpp ├── spitjson.cpp ├── sprite2d.cpp ├── sprite3d.cpp ├── tar7z.cpp ├── texture.cpp ├── texturemappedfont.cpp ├── timer.cpp ├── util │ ├── chararrayibuf.cpp │ ├── colortable.cpp │ ├── deletetexturetask.cpp │ ├── fileistreambuf.cpp │ ├── fontcache.cpp │ ├── fs.cpp │ ├── markup.cpp │ └── swaplayerstask.cpp ├── way.cpp └── window.cpp ├── tests ├── README ├── animations │ ├── CMakeLists.txt │ ├── alltests.sln │ ├── alltests.vcxproj │ ├── alltests.vcxproj.filters │ ├── alltests.vcxproj.user │ ├── animations.cpp │ ├── animationscomposite.cpp │ ├── animationsfile.cpp │ ├── debug.bat │ ├── debug.sh │ ├── main.cpp │ ├── release.bat │ └── release.sh ├── db │ ├── CMakeLists.txt │ ├── alltests.sln │ ├── alltests.vcxproj │ ├── alltests.vcxproj.filters │ ├── alltests.vcxproj.user │ ├── customobject.cpp │ ├── customschemafile.cpp │ ├── database.cpp │ ├── dbcanbecastedfromto.cpp │ ├── debug.bat │ ├── debug.sh │ ├── link.cpp │ ├── main.cpp │ ├── mock.cpp │ ├── mock.h │ ├── mock2.cpp │ ├── mock2.h │ ├── mock3.cpp │ ├── mock3.h │ ├── mock4.cpp │ ├── mock4.h │ ├── object.cpp │ ├── objectfactory.cpp │ ├── populatescenesfromdatabase.cpp │ ├── property.cpp │ ├── release.bat │ ├── release.sh │ ├── schema.cpp │ ├── table.cpp │ └── variant.cpp ├── dukpp-03-irrklang │ ├── CMakeLists.txt │ ├── alltests.sln │ ├── alltests.vcxproj │ ├── alltests.vcxproj.filters │ ├── alltests.vcxproj.user │ ├── debug.bat │ ├── debug.sh │ ├── engine.cpp │ ├── main.cpp │ ├── release.bat │ └── release.sh ├── dukpp-03 │ ├── CMakeLists.txt │ ├── alltests.sln │ ├── alltests.vcxproj │ ├── alltests.vcxproj.filters │ ├── alltests.vcxproj.user │ ├── animationanimation.cpp │ ├── camerarotationanimation.cpp │ ├── camerashakinganimation.cpp │ ├── coloranimation.cpp │ ├── context.cpp │ ├── convert.cpp │ ├── debug.bat │ ├── debug.sh │ ├── fs.cpp │ ├── jscontrols.cpp │ ├── main.cpp │ ├── p2dvector.cpp │ ├── pipeline.cpp │ ├── point2d.cpp │ ├── point2i.cpp │ ├── point3d.cpp │ ├── point3i.cpp │ ├── rect2d.cpp │ ├── rect2i.cpp │ ├── release.bat │ ├── release.sh │ ├── simplemovementanimation.cpp │ ├── size2d.cpp │ ├── size2i.cpp │ ├── vectorandhash.cpp │ └── wrapping.cpp ├── freetype │ ├── CMakeLists.txt │ ├── alltests.sln │ ├── alltests.vcxproj │ ├── alltests.vcxproj.filters │ ├── alltests.vcxproj.user │ ├── debug.bat │ ├── debug.sh │ ├── helper.h │ ├── main.cpp │ ├── rawfreetypetest.cpp │ ├── release.bat │ └── release.sh ├── hfsm │ ├── CMakeLists.txt │ ├── alltests.sln │ ├── alltests.vcxproj │ ├── alltests.vcxproj.filters │ ├── alltests.vcxproj.user │ ├── debug.bat │ ├── debug.sh │ ├── hfsmmachine.cpp │ ├── main.cpp │ ├── release.bat │ └── release.sh ├── input │ ├── CMakeLists.txt │ ├── alltests.sln │ ├── alltests.vcxproj │ ├── alltests.vcxproj.filters │ ├── alltests.vcxproj.user │ ├── controls.cpp │ ├── debug.bat │ ├── debug.sh │ ├── main.cpp │ ├── release.bat │ └── release.sh ├── irrklang │ ├── CMakeLists.txt │ ├── alltests.sln │ ├── alltests.vcxproj │ ├── alltests.vcxproj.filters │ ├── alltests.vcxproj.user │ ├── debug.bat │ ├── debug.sh │ ├── main.cpp │ ├── release.bat │ ├── release.sh │ └── sound.cpp ├── layouts │ ├── CMakeLists.txt │ ├── alltests.sln │ ├── alltests.vcxproj │ ├── alltests.vcxproj.filters │ ├── alltests.vcxproj.user │ ├── debug.bat │ ├── debug.sh │ ├── grid.cpp │ ├── lengthvalue.cpp │ ├── main.cpp │ ├── release.bat │ └── release.sh ├── p2d │ ├── CMakeLists.txt │ ├── alltests.sln │ ├── alltests.vcxproj │ ├── alltests.vcxproj.filters │ ├── alltests.vcxproj.user │ ├── angleof.cpp │ ├── axle.cpp │ ├── bouncesolver.cpp │ ├── collides1d.cpp │ ├── collisiontest.cpp │ ├── convexhulltest.cpp │ ├── debug.bat │ ├── debug.sh │ ├── findcontactpointsbtob.cpp │ ├── findcontactpointsctob.cpp │ ├── findcontactpointsctoc.cpp │ ├── findcontactpointsctocbug1.cpp │ ├── findcontactpointsctocbug2.cpp │ ├── findcontactpointsctocbug3.cpp │ ├── findcontactpointsctol.cpp │ ├── findcontactpointsltob.cpp │ ├── findcontactpointsltol.cpp │ ├── findcontactpointsrtob.cpp │ ├── findcontactpointsrtoc.cpp │ ├── findcontactpointsrtocbug1.cpp │ ├── findcontactpointsrtol.cpp │ ├── findcontactpointsrtor.cpp │ ├── grahambuildsortedset.cpp │ ├── grahamerasequal.cpp │ ├── grahamfindminpoint.cpp │ ├── grahamscantest.cpp │ ├── main.cpp │ ├── point.cpp │ ├── rectanglenormaltosurface.cpp │ ├── release.bat │ ├── release.sh │ ├── testavintersection.cpp │ ├── vector.cpp │ └── worldtest.cpp ├── pipeline │ ├── CMakeLists.txt │ ├── alltests.sln │ ├── alltests.vcxproj │ ├── alltests.vcxproj.filters │ ├── alltests.vcxproj.user │ ├── debug.bat │ ├── debug.sh │ ├── main.cpp │ ├── pipeline.cpp │ ├── release.bat │ └── release.sh ├── resource │ ├── CMakeLists.txt │ ├── alltests.sln │ ├── alltests.vcxproj │ ├── alltests.vcxproj.filters │ ├── alltests.vcxproj.user │ ├── animationfile.cpp │ ├── counterrorsoftype.h │ ├── debug.bat │ ├── debug.sh │ ├── folder.cpp │ ├── link.cpp │ ├── main.cpp │ ├── release.bat │ ├── release.sh │ ├── resourcefileidentifier.cpp │ ├── textureatlasfile.cpp │ └── tree.cpp └── sad │ ├── CMakeLists.txt │ ├── alltests.sln │ ├── alltests.vcxproj │ ├── alltests.vcxproj.filters │ ├── alltests.vcxproj.user │ ├── debug.bat │ ├── debug.sh │ ├── fs.cpp │ ├── geometry2d.cpp │ ├── geometry3d.cpp │ ├── label.cpp │ ├── main.cpp │ ├── markup.cpp │ ├── matrix2x2.cpp │ ├── object.cpp │ ├── pausabletimer.cpp │ ├── picojson.cpp │ ├── refcountable.cpp │ ├── release.bat │ ├── release.sh │ ├── renderer.cpp │ ├── sadhash.cpp │ ├── sadmutex.cpp │ ├── sadmutexscopedlock.cpp │ ├── sadptrhash.cpp │ ├── sadrect.cpp │ ├── sadsemaphore.cpp │ ├── sadsize.cpp │ ├── sadstring.cpp │ ├── sadthread.cpp │ ├── sadvector.cpp │ ├── sadwindow.cpp │ └── texture.cpp ├── tests_prepare.bat └── tools ├── atlasgen ├── README ├── atlas.cpp ├── atlas.h ├── atlasentry.cpp ├── atlasentry.h ├── atlasgen.pro ├── atlasgen.sln ├── atlasgen.vcxproj ├── atlasgen.vcxproj.filters ├── atlasgen.vcxproj.user ├── fullsearchpacker │ ├── fullsearchpacker.cpp │ ├── fullsearchpacker.h │ ├── glueentry.cpp │ ├── glueentry.h │ ├── gluemetric.cpp │ ├── gluemetric.h │ ├── gluemode.h │ ├── glueorder.cpp │ ├── glueorder.h │ ├── gluetask.cpp │ ├── gluetask.h │ ├── imagearranger.cpp │ ├── imagearranger.h │ ├── imagegluingorder.cpp │ ├── imagegluingorder.h │ ├── minareametric.cpp │ ├── minareametric.h │ ├── mindiffmetric.cpp │ └── mindiffmetric.h ├── growingbinpacker │ ├── growingbinpacker.cpp │ └── growingbinpacker.h ├── horizontalpacker.cpp ├── horizontalpacker.h ├── icons.json ├── icons.png ├── icons_in.json ├── jsonreader.cpp ├── jsonreader.h ├── jsonwriter.cpp ├── jsonwriter.h ├── main.cpp ├── maybenumber.cpp ├── maybenumber.h ├── outputoptions.h ├── packer.cpp ├── packer.h ├── reader.cpp ├── reader.h ├── texture.cpp ├── texture.h ├── texturearray.cpp ├── texturearray.h ├── writer.cpp ├── writer.h ├── xmlreader.cpp ├── xmlreader.h ├── xmlwriter.cpp └── xmlwriter.h ├── exporter ├── README ├── exporter.pro ├── exporter.sln ├── exporter.vcxproj ├── exporter.vcxproj.filters ├── exporter.vcxproj.user └── main.cpp ├── ifaceed ├── Doxyfile ├── classify.rb ├── grepui.rb ├── ifaceed.pro ├── ifaceed.pro.user ├── ifaceed.sln ├── ifaceed │ ├── COPYING │ ├── acolordialog.cpp │ ├── acolordialog.h │ ├── acolordialog.ui │ ├── blockedclosuremethodcall.h │ ├── closuremethodcall.h │ ├── core │ │ ├── borders │ │ │ ├── activeborder.cpp │ │ │ ├── activeborder.h │ │ │ ├── border.cpp │ │ │ ├── border.h │ │ │ ├── deletehotspot.cpp │ │ │ ├── deletehotspot.h │ │ │ ├── resizehotspot.cpp │ │ │ ├── resizehotspot.h │ │ │ ├── selectionborder.cpp │ │ │ └── selectionborder.h │ │ ├── editor.cpp │ │ ├── editor.h │ │ ├── qttarget.cpp │ │ ├── qttarget.h │ │ ├── quitreason.h │ │ ├── saddythread.cpp │ │ ├── saddythread.h │ │ ├── selection.cpp │ │ ├── selection.h │ │ ├── shared.cpp │ │ ├── shared.h │ │ ├── synchronization.cpp │ │ ├── synchronization.h │ │ └── typeconverters │ │ │ ├── load.h │ │ │ ├── qcolortosadacolor.cpp │ │ │ ├── qcolortosadacolor.h │ │ │ ├── qcolortosadcolor.cpp │ │ │ ├── qcolortosadcolor.h │ │ │ ├── qlistqlistqcolortosadvectorsadvectoracolor.cpp │ │ │ ├── qlistqlistqcolortosadvectorsadvectoracolor.h │ │ │ ├── qrectftosadrect2d.cpp │ │ │ ├── qrectftosadrect2d.h │ │ │ ├── qstringtosadstring.cpp │ │ │ ├── qstringtosadstring.h │ │ │ ├── sadacolortoqcolor.cpp │ │ │ ├── sadacolortoqcolor.h │ │ │ ├── sadcolortoqcolor.cpp │ │ │ ├── sadcolortoqcolor.h │ │ │ ├── sadrect2dtoqrectf.cpp │ │ │ ├── sadrect2dtoqrectf.h │ │ │ ├── sadstringtoqstring.cpp │ │ │ ├── sadstringtoqstring.h │ │ │ ├── sadvectorsadvectoracolortoqlistqlistqcolor.cpp │ │ │ ├── sadvectorsadvectoracolortoqlistqlistqcolor.h │ │ │ └── save.h │ ├── gridandoffset.cpp │ ├── gridandoffset.h │ ├── gridandoffset.ui │ ├── gui │ │ ├── actions │ │ │ ├── abstractactions.cpp │ │ │ ├── abstractactions.h │ │ │ ├── actions.cpp │ │ │ ├── actions.h │ │ │ ├── animationactions.cpp │ │ │ ├── animationactions.h │ │ │ ├── animationgroupactions.cpp │ │ │ ├── animationgroupactions.h │ │ │ ├── animationinstanceactions.cpp │ │ │ ├── animationinstanceactions.h │ │ │ ├── customobjectactions.cpp │ │ │ ├── customobjectactions.h │ │ │ ├── dialogueactions.cpp │ │ │ ├── dialogueactions.h │ │ │ ├── gridactions.cpp │ │ │ ├── gridactions.h │ │ │ ├── labelactions.cpp │ │ │ ├── labelactions.h │ │ │ ├── sceneactions.cpp │ │ │ ├── sceneactions.h │ │ │ ├── scenenodeactions.cpp │ │ │ ├── scenenodeactions.h │ │ │ ├── sprite2dactions.cpp │ │ │ ├── sprite2dactions.h │ │ │ ├── wayactions.cpp │ │ │ └── wayactions.h │ │ ├── anglewidget │ │ │ ├── anglewidget.cpp │ │ │ └── anglewidget.h │ │ ├── animationgroupprocess.cpp │ │ ├── animationgroupprocess.h │ │ ├── animationinstanceprocess.cpp │ │ ├── animationinstanceprocess.h │ │ ├── animationprocess.cpp │ │ ├── animationprocess.h │ │ ├── childrenprovider.cpp │ │ ├── childrenprovider.h │ │ ├── codeedit │ │ │ ├── codeedit.cpp │ │ │ ├── codeedit.h │ │ │ ├── completer.cpp │ │ │ ├── completer.h │ │ │ ├── highlighter.cpp │ │ │ ├── highlighter.h │ │ │ ├── linenumberarea.cpp │ │ │ └── linenumberarea.h │ │ ├── colorview │ │ │ ├── colorview.cpp │ │ │ └── colorview.h │ │ ├── eventfilter.cpp │ │ ├── eventfilter.h │ │ ├── fontsizewidget │ │ │ ├── fontsizewidget.cpp │ │ │ └── fontsizewidget.h │ │ ├── layouts │ │ │ ├── layoutcelledit.cpp │ │ │ └── layoutcelledit.h │ │ ├── mainpanelproxy.cpp │ │ ├── mainpanelproxy.h │ │ ├── rectwidget │ │ │ ├── rectwidget.cpp │ │ │ └── rectwidget.h │ │ ├── rendereditorgrid.cpp │ │ ├── rendereditorgrid.h │ │ ├── rendergrids.cpp │ │ ├── rendergrids.h │ │ ├── renderways.cpp │ │ ├── renderways.h │ │ ├── resourcetreewidget │ │ │ ├── cell.cpp │ │ │ ├── cell.h │ │ │ ├── celldelegate.cpp │ │ │ ├── celldelegate.h │ │ │ ├── defaultimage.cpp │ │ │ ├── defaultimage.h │ │ │ ├── resourcecache.cpp │ │ │ ├── resourcecache.h │ │ │ ├── resourcetreewidget.cpp │ │ │ └── resourcetreewidget.h │ │ ├── rotationprocess.cpp │ │ ├── rotationprocess.h │ │ ├── table │ │ │ ├── booldelegate.cpp │ │ │ ├── booldelegate.h │ │ │ ├── delegate.cpp │ │ │ ├── delegate.h │ │ │ ├── delegatefactory.cpp │ │ │ ├── delegatefactory.h │ │ │ ├── doubledelegate.cpp │ │ │ ├── doubledelegate.h │ │ │ ├── floatdelegate.cpp │ │ │ ├── floatdelegate.h │ │ │ ├── intdelegate.cpp │ │ │ ├── intdelegate.h │ │ │ ├── longdelegate.cpp │ │ │ ├── longdelegate.h │ │ │ ├── longlongdelegate.cpp │ │ │ ├── longlongdelegate.h │ │ │ ├── sadacolordelegate.cpp │ │ │ ├── sadacolordelegate.h │ │ │ ├── sadcolordelegate.cpp │ │ │ ├── sadcolordelegate.h │ │ │ ├── sadpoint2ddelegate.cpp │ │ │ ├── sadpoint2ddelegate.h │ │ │ ├── sadpoint2idelegate.cpp │ │ │ ├── sadpoint2idelegate.h │ │ │ ├── sadsize2ddelegate.cpp │ │ │ ├── sadsize2ddelegate.h │ │ │ ├── sadsize2idelegate.cpp │ │ │ ├── sadsize2idelegate.h │ │ │ ├── sadstringdelegate.cpp │ │ │ ├── sadstringdelegate.h │ │ │ ├── shortdelegate.cpp │ │ │ ├── shortdelegate.h │ │ │ ├── signedchardelegate.cpp │ │ │ ├── signedchardelegate.h │ │ │ ├── unsignedchardelegate.cpp │ │ │ ├── unsignedchardelegate.h │ │ │ ├── unsignedintdelegate.cpp │ │ │ ├── unsignedintdelegate.h │ │ │ ├── unsignedlongdelegate.cpp │ │ │ ├── unsignedlongdelegate.h │ │ │ ├── unsignedlonglongdelegate.cpp │ │ │ ├── unsignedlonglongdelegate.h │ │ │ ├── unsignedshortdelegate.cpp │ │ │ └── unsignedshortdelegate.h │ │ ├── textedit │ │ │ ├── textedit.cpp │ │ │ └── textedit.h │ │ ├── tuplewidget │ │ │ ├── doubletuplewidget.cpp │ │ │ ├── doubletuplewidget.h │ │ │ ├── int64tuplewidget.cpp │ │ │ └── int64tuplewidget.h │ │ ├── uiblocks │ │ │ ├── uianimationblock.cpp │ │ │ ├── uianimationblock.h │ │ │ ├── uianimationinstanceblock.cpp │ │ │ ├── uianimationinstanceblock.h │ │ │ ├── uianimationsgroupblock.cpp │ │ │ ├── uianimationsgroupblock.h │ │ │ ├── uiblocks.cpp │ │ │ ├── uiblocks.h │ │ │ ├── uicommonblock.cpp │ │ │ ├── uicommonblock.h │ │ │ ├── uiconsoleblock.cpp │ │ │ ├── uiconsoleblock.h │ │ │ ├── uicustomobjectblock.cpp │ │ │ ├── uicustomobjectblock.h │ │ │ ├── uidialogueblock.cpp │ │ │ ├── uidialogueblock.h │ │ │ ├── uilabelblock.cpp │ │ │ ├── uilabelblock.h │ │ │ ├── uilayoutblock.cpp │ │ │ ├── uilayoutblock.h │ │ │ ├── uiphraseblock.cpp │ │ │ ├── uiphraseblock.h │ │ │ ├── uisceneblock.cpp │ │ │ ├── uisceneblock.h │ │ │ ├── uiscenenodeblock.cpp │ │ │ ├── uiscenenodeblock.h │ │ │ ├── uispriteblock.cpp │ │ │ ├── uispriteblock.h │ │ │ ├── uiwayblock.cpp │ │ │ └── uiwayblock.h │ │ └── updateelement.h │ ├── history │ │ ├── animations │ │ │ ├── animationsaddtocomposite.cpp │ │ │ ├── animationsaddtocomposite.h │ │ │ ├── animationschangeblinkingfrequency.cpp │ │ │ ├── animationschangeblinkingfrequency.h │ │ │ ├── animationschangecameraangle.cpp │ │ │ ├── animationschangecameraangle.h │ │ │ ├── animationschangecameraoffset.cpp │ │ │ ├── animationschangecameraoffset.h │ │ │ ├── animationschangecamerapivot.cpp │ │ │ ├── animationschangecamerapivot.h │ │ │ ├── animationschangecolorcolor.cpp │ │ │ ├── animationschangecolorcolor.h │ │ │ ├── animationschangeeasingfunctiontype.cpp │ │ │ ├── animationschangeeasingfunctiontype.h │ │ │ ├── animationschangeeasingovershootamplitude.cpp │ │ │ ├── animationschangeeasingovershootamplitude.h │ │ │ ├── animationschangeeasingperiod.cpp │ │ │ ├── animationschangeeasingperiod.h │ │ │ ├── animationschangeeasingproperty.h │ │ │ ├── animationschangefontlistfonts.cpp │ │ │ ├── animationschangefontlistfonts.h │ │ │ ├── animationschangefontsizesize.cpp │ │ │ ├── animationschangefontsizesize.h │ │ │ ├── animationschangelist.cpp │ │ │ ├── animationschangelist.h │ │ │ ├── animationschangelooped.cpp │ │ │ ├── animationschangelooped.h │ │ │ ├── animationschangename.cpp │ │ │ ├── animationschangename.h │ │ │ ├── animationschangeproperty.h │ │ │ ├── animationschangepropertyaspoint2displayedintwospinboxes.cpp │ │ │ ├── animationschangepropertyaspoint2displayedintwospinboxes.h │ │ │ ├── animationschangerect.cpp │ │ │ ├── animationschangerect.h │ │ │ ├── animationschangeresizeendingsize.cpp │ │ │ ├── animationschangeresizeendingsize.h │ │ │ ├── animationschangeresizestartingsize.cpp │ │ │ ├── animationschangeresizestartingsize.h │ │ │ ├── animationschangerotateangle.cpp │ │ │ ├── animationschangerotateangle.h │ │ │ ├── animationschangeshakingfrequency.cpp │ │ │ ├── animationschangeshakingfrequency.h │ │ │ ├── animationschangetime.cpp │ │ │ ├── animationschangetime.h │ │ │ ├── animationschangewaymovingway.cpp │ │ │ ├── animationschangewaymovingway.h │ │ │ ├── animationsnew.cpp │ │ │ ├── animationsnew.h │ │ │ ├── animationsremove.cpp │ │ │ ├── animationsremove.h │ │ │ ├── animationsremovefromcomposite.cpp │ │ │ ├── animationsremovefromcomposite.h │ │ │ ├── animationsswapincomposite.cpp │ │ │ └── animationsswapincomposite.h │ │ ├── batchcommand.cpp │ │ ├── batchcommand.h │ │ ├── command.cpp │ │ ├── command.h │ │ ├── customobject │ │ │ ├── customobjectchangeproperty.h │ │ │ ├── customobjectchangeschema.cpp │ │ │ └── customobjectchangeschema.h │ │ ├── database │ │ │ ├── changeproperty.h │ │ │ ├── newproperty.cpp │ │ │ ├── newproperty.h │ │ │ ├── removeproperty.cpp │ │ │ └── removeproperty.h │ │ ├── dialogues │ │ │ ├── dialogueschangename.cpp │ │ │ ├── dialogueschangename.h │ │ │ ├── dialoguesnew.cpp │ │ │ ├── dialoguesnew.h │ │ │ ├── dialoguesphrasechangeduration.cpp │ │ │ ├── dialoguesphrasechangeduration.h │ │ │ ├── dialoguesphrasechangelineeditbasedproperty.cpp │ │ │ ├── dialoguesphrasechangelineeditbasedproperty.h │ │ │ ├── dialoguesphrasechangephrase.cpp │ │ │ ├── dialoguesphrasechangephrase.h │ │ │ ├── dialoguesphrasenew.cpp │ │ │ ├── dialoguesphrasenew.h │ │ │ ├── dialoguesphraseremove.cpp │ │ │ ├── dialoguesphraseremove.h │ │ │ ├── dialoguesphraseswap.cpp │ │ │ ├── dialoguesphraseswap.h │ │ │ ├── dialoguesremove.cpp │ │ │ └── dialoguesremove.h │ │ ├── groups │ │ │ ├── groupsaddinstance.cpp │ │ │ ├── groupsaddinstance.h │ │ │ ├── groupschangelooped.cpp │ │ │ ├── groupschangelooped.h │ │ │ ├── groupschangename.cpp │ │ │ ├── groupschangename.h │ │ │ ├── groupschangeproperty.h │ │ │ ├── groupschangesequential.cpp │ │ │ ├── groupschangesequential.h │ │ │ ├── groupsnew.cpp │ │ │ ├── groupsnew.h │ │ │ ├── groupsremove.cpp │ │ │ ├── groupsremove.h │ │ │ ├── groupsremoveinstance.cpp │ │ │ └── groupsremoveinstance.h │ │ ├── history.cpp │ │ ├── history.h │ │ ├── instances │ │ │ ├── instanceschangeanimation.h │ │ │ ├── instanceschangename.cpp │ │ │ ├── instanceschangename.h │ │ │ ├── instanceschangenimation.cpp │ │ │ ├── instanceschangeobject.cpp │ │ │ ├── instanceschangeobject.h │ │ │ ├── instanceschangeproperty.h │ │ │ ├── instanceschangestarttime.cpp │ │ │ ├── instanceschangestarttime.h │ │ │ ├── instanceschangeway.cpp │ │ │ ├── instanceschangeway.h │ │ │ ├── instancesnew.cpp │ │ │ ├── instancesnew.h │ │ │ ├── instancesremove.cpp │ │ │ └── instancesremove.h │ │ ├── label │ │ │ ├── changebreaktext.cpp │ │ │ ├── changebreaktext.h │ │ │ ├── changefontname.cpp │ │ │ ├── changefontname.h │ │ │ ├── changefontsize.cpp │ │ │ ├── changefontsize.h │ │ │ ├── changehasformatting.cpp │ │ │ ├── changehasformatting.h │ │ │ ├── changelinespacing.cpp │ │ │ ├── changelinespacing.h │ │ │ ├── changemaximallinescount.cpp │ │ │ ├── changemaximallinescount.h │ │ │ ├── changemaximallinewidth.cpp │ │ │ ├── changemaximallinewidth.h │ │ │ ├── changeoverflowstrategy.cpp │ │ │ ├── changeoverflowstrategy.h │ │ │ ├── changeoverflowstrategyforlines.cpp │ │ │ ├── changeoverflowstrategyforlines.h │ │ │ ├── changetext.cpp │ │ │ ├── changetext.h │ │ │ ├── changetextellipsis.cpp │ │ │ ├── changetextellipsis.h │ │ │ ├── changetextellipsisforlines.cpp │ │ │ └── changetextellipsisforlines.h │ │ ├── layouts │ │ │ ├── layoutsaddchild.cpp │ │ │ ├── layoutsaddchild.h │ │ │ ├── layoutschange.h │ │ │ ├── layoutschangecell.h │ │ │ ├── layoutschangename.cpp │ │ │ ├── layoutschangename.h │ │ │ ├── layoutsclearcell.cpp │ │ │ ├── layoutsclearcell.h │ │ │ ├── layoutsnew.cpp │ │ │ ├── layoutsnew.h │ │ │ ├── layoutsremove.cpp │ │ │ ├── layoutsremove.h │ │ │ ├── layoutsremovechild.cpp │ │ │ ├── layoutsremovechild.h │ │ │ ├── layoutsswapchildren.cpp │ │ │ └── layoutsswapchildren.h │ │ ├── scenenodes │ │ │ ├── scenenodeschangeangle.cpp │ │ │ ├── scenenodeschangeangle.h │ │ │ ├── scenenodeschangearea.cpp │ │ │ ├── scenenodeschangearea.h │ │ │ ├── scenenodeschangecolor.cpp │ │ │ ├── scenenodeschangecolor.h │ │ │ ├── scenenodeschangename.h │ │ │ ├── scenenodeschangeproperty.h │ │ │ ├── scenenodeschangepropertywhichlinkedtocheckbox.cpp │ │ │ ├── scenenodeschangepropertywhichlinkedtocheckbox.h │ │ │ ├── scenenodeschangevisibility.cpp │ │ │ ├── scenenodeschangevisibility.h │ │ │ ├── scenenodeslayerswap.cpp │ │ │ ├── scenenodeslayerswap.h │ │ │ ├── scenenodesnew.cpp │ │ │ ├── scenenodesnew.h │ │ │ ├── scenenodesremove.cpp │ │ │ ├── scenenodesremove.h │ │ │ ├── scenenodesspan.cpp │ │ │ ├── scenenodesspan.h │ │ │ └── scenesnodeschangename.cpp │ │ ├── scenes │ │ │ ├── scenelayerswap.cpp │ │ │ ├── scenesadd.cpp │ │ │ ├── scenesadd.h │ │ │ ├── sceneschangename.cpp │ │ │ ├── sceneschangename.h │ │ │ ├── scenesclear.cpp │ │ │ ├── scenesclear.h │ │ │ ├── sceneslayerswap.h │ │ │ ├── scenesremove.cpp │ │ │ └── scenesremove.h │ │ ├── sprite2d │ │ │ ├── changeflipx.cpp │ │ │ ├── changeflipx.h │ │ │ ├── changeflipy.cpp │ │ │ ├── changeflipy.h │ │ │ ├── changeoptions.cpp │ │ │ ├── changeoptions.h │ │ │ ├── makebackground.cpp │ │ │ └── makebackground.h │ │ └── ways │ │ │ ├── wayschangeclosed.cpp │ │ │ ├── wayschangeclosed.h │ │ │ ├── wayschangename.cpp │ │ │ ├── wayschangename.h │ │ │ ├── wayschangeproperty.h │ │ │ ├── wayschangetotaltime.cpp │ │ │ ├── wayschangetotaltime.h │ │ │ ├── waysnew.cpp │ │ │ ├── waysnew.h │ │ │ ├── waysremove.cpp │ │ │ ├── waysremove.h │ │ │ ├── wayswaypointchange.cpp │ │ │ ├── wayswaypointchange.h │ │ │ ├── wayswaypointnew.cpp │ │ │ ├── wayswaypointnew.h │ │ │ ├── wayswaypointremove.cpp │ │ │ ├── wayswaypointremove.h │ │ │ ├── wayswaypointswap.cpp │ │ │ └── wayswaypointswap.h │ ├── ifaceed.rc │ ├── ifaceed.vcxproj │ ├── ifaceed.vcxproj.filters │ ├── ifaceed.vcxproj.user │ ├── keytovector.h │ ├── leveleditor.aps │ ├── macro.h │ ├── main.cpp │ ├── mainpanel.cpp │ ├── mainpanel.h │ ├── mainpanel.ui │ ├── qstdstring.h │ ├── qwwlongspinbox.cpp │ ├── qwwlongspinbox.h │ ├── qwwulongspinbox.cpp │ ├── qwwulongspinbox.h │ ├── reloadfilelist.cpp │ ├── reloadfilelist.h │ ├── reloadfilelist.ui │ ├── scripting │ │ ├── abstractgetter.h │ │ ├── abstractsetter.h │ │ ├── animations │ │ │ ├── animationsbindings.cpp │ │ │ ├── animationsbindings.h │ │ │ ├── animationspoint2dsetter.h │ │ │ ├── animationssetter.h │ │ │ ├── animationswaysetter.cpp │ │ │ ├── animationswaysetter.h │ │ │ ├── animationswidgetsetter.h │ │ │ ├── easinggetter.h │ │ │ └── easingsetter.h │ │ ├── database │ │ │ ├── databasebindings.cpp │ │ │ ├── databasebindings.h │ │ │ ├── databasepropertygetter.h │ │ │ └── databasepropertysetter.h │ │ ├── dialogues │ │ │ ├── dialoguesbindings.cpp │ │ │ ├── dialoguesbindings.h │ │ │ ├── dialoguesphraseref.cpp │ │ │ └── dialoguesphraseref.h │ │ ├── dukqt.cpp │ │ ├── dukqtcontext.h │ │ ├── getvalue.cpp │ │ ├── groups │ │ │ ├── groupsbindings.cpp │ │ │ └── groupsbindings.h │ │ ├── instances │ │ │ ├── instancesbindings.cpp │ │ │ └── instancesbindings.h │ │ ├── js2cpp.rb │ │ ├── layouts │ │ │ ├── gridbindings.cpp │ │ │ ├── gridbindings.h │ │ │ ├── scriptablegrid.cpp │ │ │ ├── scriptablegrid.h │ │ │ ├── scriptablegridcell.cpp │ │ │ ├── scriptablegridcell.h │ │ │ ├── scriptablelengthvalue.cpp │ │ │ └── scriptablelengthvalue.h │ │ ├── lib.js │ │ ├── lib.js.cpp │ │ ├── pushvalue.cpp │ │ ├── queryobject.cpp │ │ ├── queryobject.h │ │ ├── queryresource.cpp │ │ ├── queryresource.h │ │ ├── querytable.cpp │ │ ├── querytable.h │ │ ├── scenenodes │ │ │ ├── scenenodesabstractsetter.h │ │ │ ├── scenenodesbindings.cpp │ │ │ ├── scenenodesbindings.h │ │ │ ├── scenenodescustomgetter.h │ │ │ ├── scenenodescustomsetter.h │ │ │ ├── scenenodesflagsetter.cpp │ │ │ ├── scenenodesflagsetter.h │ │ │ ├── scenenodesoptionssetter.cpp │ │ │ ├── scenenodesoptionssetter.h │ │ │ ├── scenenodesschemasetter.cpp │ │ │ ├── scenenodesschemasetter.h │ │ │ └── scenenodessetter.h │ │ ├── scenes │ │ │ ├── scenesbindings.cpp │ │ │ └── scenesbindings.h │ │ ├── scripting.cpp │ │ ├── scripting.h │ │ ├── scriptinghelp.html │ │ ├── scriptinghelphtml2h.rb │ │ ├── scriptinghelptext.h │ │ ├── types.js │ │ └── ways │ │ │ ├── waysbindings.cpp │ │ │ ├── waysbindings.h │ │ │ ├── wayspointref.cpp │ │ │ ├── wayspointref.h │ │ │ └── wayssetter.h │ ├── scriptinghelp.cpp │ ├── scriptinghelp.h │ ├── scriptinghelp.ui │ ├── stringeditordialog.cpp │ ├── stringeditordialog.h │ ├── stringeditordialog.ui │ ├── wwglobal.h │ ├── wwglobal_p.cpp │ └── wwglobal_p.h └── ui_classification.rb ├── isqt580 ├── README ├── isqt580.pro ├── isqt580.sln ├── isqt580.vcxproj ├── isqt580.vcxproj.filters ├── isqt580.vcxproj.user └── main.cpp └── shoebox └── Saddy.sbx /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/.gitattributes -------------------------------------------------------------------------------- /3rdparty/freetype/x32/FTL.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/freetype/x32/FTL.TXT -------------------------------------------------------------------------------- /3rdparty/freetype/x32/bin/freetype6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/freetype/x32/bin/freetype6.dll -------------------------------------------------------------------------------- /3rdparty/freetype/x32/bin/pcre3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/freetype/x32/bin/pcre3.dll -------------------------------------------------------------------------------- /3rdparty/freetype/x32/bin/regex2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/freetype/x32/bin/regex2.dll -------------------------------------------------------------------------------- /3rdparty/freetype/x32/bin/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/freetype/x32/bin/zlib1.dll -------------------------------------------------------------------------------- /3rdparty/freetype/x32/lib/freetype-bcc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/freetype/x32/lib/freetype-bcc.lib -------------------------------------------------------------------------------- /3rdparty/freetype/x32/lib/freetype.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/freetype/x32/lib/freetype.lib -------------------------------------------------------------------------------- /3rdparty/freetype/x32/lib/libfreetype.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/freetype/x32/lib/libfreetype.dll.a -------------------------------------------------------------------------------- /3rdparty/freetype/x32/lib/libregex.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/freetype/x32/lib/libregex.dll.a -------------------------------------------------------------------------------- /3rdparty/freetype/x32/lib/regex-bcc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/freetype/x32/lib/regex-bcc.lib -------------------------------------------------------------------------------- /3rdparty/freetype/x32/lib/regex.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/freetype/x32/lib/regex.lib -------------------------------------------------------------------------------- /3rdparty/freetype/x64/bin/freetype6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/freetype/x64/bin/freetype6.dll -------------------------------------------------------------------------------- /3rdparty/freetype/x64/bin/pcre3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/freetype/x64/bin/pcre3.dll -------------------------------------------------------------------------------- /3rdparty/freetype/x64/bin/regex2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/freetype/x64/bin/regex2.dll -------------------------------------------------------------------------------- /3rdparty/freetype/x64/bin/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/freetype/x64/bin/zlib1.dll -------------------------------------------------------------------------------- /3rdparty/freetype/x64/lib/freetype.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/freetype/x64/lib/freetype.lib -------------------------------------------------------------------------------- /3rdparty/glm/glm/detail/func_packing_simd.inl: -------------------------------------------------------------------------------- 1 | namespace glm{ 2 | namespace detail 3 | { 4 | 5 | }//namespace detail 6 | }//namespace glm 7 | -------------------------------------------------------------------------------- /3rdparty/glm/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/glm/glm/detail/func_trigonometric_simd.inl -------------------------------------------------------------------------------- /3rdparty/glm/glm/detail/func_vector_relational_simd.inl: -------------------------------------------------------------------------------- 1 | namespace glm{ 2 | namespace detail 3 | { 4 | 5 | }//namespace detail 6 | }//namespace glm 7 | -------------------------------------------------------------------------------- /3rdparty/glm/glm/detail/type_mat4x4_simd.inl: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | 3 | namespace glm 4 | { 5 | 6 | }//namespace glm 7 | -------------------------------------------------------------------------------- /3rdparty/glm/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- 1 | #include "../geometric.hpp" 2 | #include "../trigonometric.hpp" 3 | #include "../matrix.hpp" 4 | -------------------------------------------------------------------------------- /3rdparty/glm/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/glm/glm/gtc/quaternion_simd.inl -------------------------------------------------------------------------------- /3rdparty/glm/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /3rdparty/glm/glm/gtx/matrix_factorisation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/glm/glm/gtx/matrix_factorisation.inl -------------------------------------------------------------------------------- /3rdparty/glm/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /3rdparty/glm/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /3rdparty/glm/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /3rdparty/glm/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /3rdparty/glm/glm/simd/packing.h: -------------------------------------------------------------------------------- 1 | /// @ref simd 2 | /// @file glm/simd/packing.h 3 | 4 | #pragma once 5 | 6 | #if GLM_ARCH & GLM_ARCH_SSE2_BIT 7 | 8 | #endif//GLM_ARCH & GLM_ARCH_SSE2_BIT 9 | -------------------------------------------------------------------------------- /3rdparty/glm/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- 1 | /// @ref simd 2 | /// @file glm/simd/trigonometric.h 3 | 4 | #pragma once 5 | 6 | #if GLM_ARCH & GLM_ARCH_SSE2_BIT 7 | 8 | #endif//GLM_ARCH & GLM_ARCH_SSE2_BIT 9 | 10 | -------------------------------------------------------------------------------- /3rdparty/glm/glm/simd/vector_relational.h: -------------------------------------------------------------------------------- 1 | /// @ref simd 2 | /// @file glm/simd/vector_relational.h 3 | 4 | #pragma once 5 | 6 | #if GLM_ARCH & GLM_ARCH_SSE2_BIT 7 | 8 | #endif//GLM_ARCH & GLM_ARCH_SSE2_BIT 9 | -------------------------------------------------------------------------------- /3rdparty/irrKlang/x32/bin/linux-gcc/ikpFlac.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/irrKlang/x32/bin/linux-gcc/ikpFlac.so -------------------------------------------------------------------------------- /3rdparty/irrKlang/x32/bin/linux-gcc/ikpMP3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/irrKlang/x32/bin/linux-gcc/ikpMP3.so -------------------------------------------------------------------------------- /3rdparty/irrKlang/x32/bin/linux-gcc/libIrrKlang.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/irrKlang/x32/bin/linux-gcc/libIrrKlang.so -------------------------------------------------------------------------------- /3rdparty/irrKlang/x32/bin/win32-gcc/ikpFlac.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/irrKlang/x32/bin/win32-gcc/ikpFlac.dll -------------------------------------------------------------------------------- /3rdparty/irrKlang/x32/bin/win32-gcc/ikpMP3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/irrKlang/x32/bin/win32-gcc/ikpMP3.dll -------------------------------------------------------------------------------- /3rdparty/irrKlang/x32/bin/win32-gcc/irrKlang.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/irrKlang/x32/bin/win32-gcc/irrKlang.dll -------------------------------------------------------------------------------- /3rdparty/irrKlang/x32/bin/win32-visualStudio/ikpFlac.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/irrKlang/x32/bin/win32-visualStudio/ikpFlac.dll -------------------------------------------------------------------------------- /3rdparty/irrKlang/x32/bin/win32-visualStudio/ikpMP3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/irrKlang/x32/bin/win32-visualStudio/ikpMP3.dll -------------------------------------------------------------------------------- /3rdparty/irrKlang/x32/bin/win32-visualStudio/irrKlang.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/irrKlang/x32/bin/win32-visualStudio/irrKlang.dll -------------------------------------------------------------------------------- /3rdparty/irrKlang/x32/lib/Win32-gcc/libirrKlang.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/irrKlang/x32/lib/Win32-gcc/libirrKlang.a -------------------------------------------------------------------------------- /3rdparty/irrKlang/x32/lib/Win32-visualStudio/irrKlang.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/irrKlang/x32/lib/Win32-visualStudio/irrKlang.exp -------------------------------------------------------------------------------- /3rdparty/irrKlang/x32/lib/Win32-visualStudio/irrKlang.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/irrKlang/x32/lib/Win32-visualStudio/irrKlang.lib -------------------------------------------------------------------------------- /3rdparty/irrKlang/x32/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/irrKlang/x32/readme.txt -------------------------------------------------------------------------------- /3rdparty/irrKlang/x64/bin/linux-gcc-64/ikpFlac.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/irrKlang/x64/bin/linux-gcc-64/ikpFlac.so -------------------------------------------------------------------------------- /3rdparty/irrKlang/x64/bin/linux-gcc-64/ikpMP3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/irrKlang/x64/bin/linux-gcc-64/ikpMP3.so -------------------------------------------------------------------------------- /3rdparty/irrKlang/x64/bin/linux-gcc-64/libIrrKlang.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/irrKlang/x64/bin/linux-gcc-64/libIrrKlang.so -------------------------------------------------------------------------------- /3rdparty/irrKlang/x64/bin/winx64-visualStudio/ikpFlac.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/irrKlang/x64/bin/winx64-visualStudio/ikpFlac.dll -------------------------------------------------------------------------------- /3rdparty/irrKlang/x64/bin/winx64-visualStudio/ikpMP3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/irrKlang/x64/bin/winx64-visualStudio/ikpMP3.dll -------------------------------------------------------------------------------- /3rdparty/irrKlang/x64/bin/winx64-visualStudio/irrKlang.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/irrKlang/x64/bin/winx64-visualStudio/irrKlang.dll -------------------------------------------------------------------------------- /3rdparty/irrKlang/x64/lib/Win32-visualStudio/irrKlang.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/irrKlang/x64/lib/Win32-visualStudio/irrKlang.exp -------------------------------------------------------------------------------- /3rdparty/irrKlang/x64/lib/Win32-visualStudio/irrKlang.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/irrKlang/x64/lib/Win32-visualStudio/irrKlang.lib -------------------------------------------------------------------------------- /3rdparty/irrKlang/x64/lib/Winx64-visualStudio/irrKlang.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/irrKlang/x64/lib/Winx64-visualStudio/irrKlang.exp -------------------------------------------------------------------------------- /3rdparty/irrKlang/x64/lib/Winx64-visualStudio/irrKlang.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/irrKlang/x64/lib/Winx64-visualStudio/irrKlang.lib -------------------------------------------------------------------------------- /3rdparty/irrKlang/x64/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/3rdparty/irrKlang/x64/readme.txt -------------------------------------------------------------------------------- /bin/PT Free Font License_eng_1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/PT Free Font License_eng_1.3.txt -------------------------------------------------------------------------------- /bin/PT Free Font License_rus_1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/PT Free Font License_rus_1.3.txt -------------------------------------------------------------------------------- /bin/PTM55F.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/PTM55F.ttf -------------------------------------------------------------------------------- /bin/atlasgen/1pix/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/1pix/1.png -------------------------------------------------------------------------------- /bin/atlasgen/1pix/1pix-growing-one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/1pix/1pix-growing-one.png -------------------------------------------------------------------------------- /bin/atlasgen/1pix/1pix-growing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/1pix/1pix-growing.png -------------------------------------------------------------------------------- /bin/atlasgen/1pix/1pix-one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/1pix/1pix-one.png -------------------------------------------------------------------------------- /bin/atlasgen/1pix/1pix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/1pix/1pix.png -------------------------------------------------------------------------------- /bin/atlasgen/1pix/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/1pix/2.png -------------------------------------------------------------------------------- /bin/atlasgen/1pix/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/1pix/3.png -------------------------------------------------------------------------------- /bin/atlasgen/1pix/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/1pix/4.png -------------------------------------------------------------------------------- /bin/atlasgen/1pix/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/1pix/5.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/bug-47-atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/bug-47-atlas.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/ace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/ace.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/acid-blob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/acid-blob.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/acorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/acorn.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/aerial-signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/aerial-signal.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/aerodynamic-harpoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/aerodynamic-harpoon.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/aerosol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/aerosol.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/afterburn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/afterburn.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/air-zigzag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/air-zigzag.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/alien-fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/alien-fire.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/alien-skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/alien-skull.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/alien-stare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/alien-stare.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/all-for-one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/all-for-one.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/alligator-clip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/alligator-clip.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/ammonite-fossil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/ammonite-fossil.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/ammonite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/ammonite.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/anatomy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/anatomy.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/anchor.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/android-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/android-mask.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/andromeda-chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/andromeda-chain.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/angel-outfit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/angel-outfit.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/angel-wings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/angel-wings.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/angler-fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/angler-fish.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/angular-spider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/angular-spider.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/animal-skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/animal-skull.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/ankh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/ankh.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/anthem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/anthem.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/anvil-impact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/anvil-impact.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/anvil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/anvil.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/apple-maggot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/apple-maggot.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/apple-seeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/apple-seeds.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/archery-target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/archery-target.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/architect-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/architect-mask.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/arcing-bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/arcing-bolt.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/armadillo-tail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/armadillo-tail.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/armor-vest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/armor-vest.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-47/lorc_originals_png/armoured-shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-47/lorc_originals_png/armoured-shell.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-48/186x409.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-48/186x409.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-48/206x270.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-48/206x270.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-48/208x454.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-48/208x454.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-48/800x600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-48/800x600.png -------------------------------------------------------------------------------- /bin/atlasgen/bug-48/bug-48-atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/bug-48/bug-48-atlas.png -------------------------------------------------------------------------------- /bin/atlasgen/merge1/non_unique.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/merge1/non_unique.png -------------------------------------------------------------------------------- /bin/atlasgen/merge1/non_unique_atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/merge1/non_unique_atlas.png -------------------------------------------------------------------------------- /bin/atlasgen/merge2/itemicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/merge2/itemicons.png -------------------------------------------------------------------------------- /bin/atlasgen/merge2/non_unique_atlas-atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/merge2/non_unique_atlas-atlas.png -------------------------------------------------------------------------------- /bin/atlasgen/merge2/non_unique_atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/merge2/non_unique_atlas.png -------------------------------------------------------------------------------- /bin/atlasgen/no-mipmaps/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/no-mipmaps/1.png -------------------------------------------------------------------------------- /bin/atlasgen/no-mipmaps/no-mipmaps.srgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/no-mipmaps/no-mipmaps.srgba -------------------------------------------------------------------------------- /bin/atlasgen/non_unique/non_unique.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/non_unique/non_unique.png -------------------------------------------------------------------------------- /bin/atlasgen/non_unique/non_unique_atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/atlasgen/non_unique/non_unique_atlas.png -------------------------------------------------------------------------------- /bin/examples/game/RLE.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/game/RLE.bmp -------------------------------------------------------------------------------- /bin/examples/game/RLE.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/game/RLE.tga -------------------------------------------------------------------------------- /bin/examples/game/TRUE.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/game/TRUE.tga -------------------------------------------------------------------------------- /bin/examples/game/bonus.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/game/bonus.bmp -------------------------------------------------------------------------------- /bin/examples/game/enemybullet.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/game/enemybullet.bmp -------------------------------------------------------------------------------- /bin/examples/game/enemybullet.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/game/enemybullet.tga -------------------------------------------------------------------------------- /bin/examples/game/example-game-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/game/example-game-19.png -------------------------------------------------------------------------------- /bin/examples/game/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/game/font.png -------------------------------------------------------------------------------- /bin/examples/game/halfsmile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/game/halfsmile.png -------------------------------------------------------------------------------- /bin/examples/game/ingame.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/game/ingame.tga -------------------------------------------------------------------------------- /bin/examples/game/largesmile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/game/largesmile.png -------------------------------------------------------------------------------- /bin/examples/game/neutral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/game/neutral.png -------------------------------------------------------------------------------- /bin/examples/game/objects.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/game/objects.bmp -------------------------------------------------------------------------------- /bin/examples/game/playerbullet.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/game/playerbullet.bmp -------------------------------------------------------------------------------- /bin/examples/game/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/game/sad.png -------------------------------------------------------------------------------- /bin/examples/game/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/game/smile.png -------------------------------------------------------------------------------- /bin/examples/game/test.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/game/test.bmp -------------------------------------------------------------------------------- /bin/examples/game/title.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/game/title.tga -------------------------------------------------------------------------------- /bin/examples/game/title_example_game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/game/title_example_game.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/A_Armor04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/A_Armor04.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/A_Armor05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/A_Armor05.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/A_Armour01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/A_Armour01.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/A_Armour02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/A_Armour02.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/A_Armour03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/A_Armour03.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/A_Shoes01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/A_Shoes01.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/A_Shoes02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/A_Shoes02.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/A_Shoes03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/A_Shoes03.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/A_Shoes04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/A_Shoes04.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/A_Shoes05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/A_Shoes05.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/A_Shoes06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/A_Shoes06.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/A_Shoes07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/A_Shoes07.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/Ac_Medal01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/Ac_Medal01.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/Ac_Medal02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/Ac_Medal02.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/Ac_Medal03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/Ac_Medal03.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/Ac_Medal04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/Ac_Medal04.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/Ac_Ring04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/Ac_Ring04.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/C_Elm01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/C_Elm01.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/C_Elm03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/C_Elm03.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/C_Elm04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/C_Elm04.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/C_Hat01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/C_Hat01.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/C_Hat02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/C_Hat02.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/E_Bones02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/E_Bones02.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/E_Bones03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/E_Bones03.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/E_Gold01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/E_Gold01.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/E_Gold02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/E_Gold02.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/E_Metal01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/E_Metal01.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/E_Metal02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/E_Metal02.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/E_Metal03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/E_Metal03.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/E_Metal04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/E_Metal04.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/E_Metal05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/E_Metal05.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/E_Wood01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/E_Wood01.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/E_Wood02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/E_Wood02.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/E_Wood03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/E_Wood03.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/E_Wood04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/E_Wood04.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_Agate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_Agate.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_Amethist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_Amethist.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_Antidote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_Antidote.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_BatWing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_BatWing.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_Bone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_Bone.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_Book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_Book.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_Bottle01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_Bottle01.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_Bottle02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_Bottle02.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_Bottle03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_Bottle03.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_Bottle04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_Bottle04.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_C_Banana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_C_Banana.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_C_Bread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_C_Bread.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_C_Carrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_C_Carrot.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_C_Cheese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_C_Cheese.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_C_Cherry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_C_Cherry.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_C_Fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_C_Fish.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_C_Grapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_C_Grapes.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_C_Nut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_C_Nut.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_C_Pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_C_Pie.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_Coal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_Coal.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_Eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_Eye.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_Fang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_Fang.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_Ink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_Ink.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_Jade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_Jade.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_Key01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_Key01.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_Key02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_Key02.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_Key03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_Key03.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_Key04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_Key04.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_Key05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_Key05.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_Key06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_Key06.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_Key07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_Key07.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_Leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_Leaf.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_Map.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_Opal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_Opal.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_Rubi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_Rubi.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/I_Water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/I_Water.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/P_Red01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/P_Red01.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/P_Red02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/P_Red02.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/P_Red03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/P_Red03.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/P_Red04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/P_Red04.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/S_Bow01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/S_Bow01.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/S_Bow02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/S_Bow02.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/S_Bow03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/S_Bow03.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/S_Bow04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/S_Bow04.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/S_Bow05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/S_Bow05.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/S_Bow06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/S_Bow06.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/S_Bow07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/S_Bow07.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/S_Bow08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/S_Bow08.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/S_Bow09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/S_Bow09.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/S_Bow10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/S_Bow10.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/S_Bow11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/S_Bow11.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/S_Bow12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/S_Bow12.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/S_Bow13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/S_Bow13.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/S_Bow14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/S_Bow14.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/S_Ice01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/S_Ice01.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/S_Ice02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/S_Ice02.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/S_Ice03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/S_Ice03.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/S_Ice04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/S_Ice04.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/S_Ice05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/S_Ice05.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/S_Ice06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/S_Ice06.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/S_Ice07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/S_Ice07.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/W_Bow01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/W_Bow01.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/W_Bow02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/W_Bow02.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/W_Bow03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/W_Bow03.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/W_Bow04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/W_Bow04.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/W_Bow05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/W_Bow05.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/W_Bow06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/W_Bow06.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/W_Bow07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/W_Bow07.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/W_Bow08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/W_Bow08.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/W_Bow09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/W_Bow09.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/W_Bow10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/W_Bow10.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/W_Bow11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/W_Bow11.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/W_Bow12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/W_Bow12.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/W_Bow13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/W_Bow13.png -------------------------------------------------------------------------------- /bin/examples/multithreading/420_pixel_art_icons/W_Bow14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/420_pixel_art_icons/W_Bow14.png -------------------------------------------------------------------------------- /bin/examples/multithreading/ARCADECLASSIC.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/ARCADECLASSIC.TTF -------------------------------------------------------------------------------- /bin/examples/multithreading/Bit Quest.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Bit Quest.mp3 -------------------------------------------------------------------------------- /bin/examples/multithreading/Jerry Five.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Jerry Five.mp3 -------------------------------------------------------------------------------- /bin/examples/multithreading/Readme.txt: -------------------------------------------------------------------------------- 1 | 420 RPG Icons - 34x34, .png format 2 | By Henrique Lazarini (a.k.a.: Ails) -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBlue_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBlue_01.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBlue_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBlue_02.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBlue_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBlue_03.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBlue_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBlue_04.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBlue_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBlue_05.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBlue_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBlue_06.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBlue_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBlue_07.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBlue_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBlue_08.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBlue_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBlue_09.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBlue_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBlue_10.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBlue_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBlue_11.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBlue_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBlue_12.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBlue_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBlue_13.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBlue_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBlue_14.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBlue_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBlue_15.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBlue_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBlue_16.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBlue_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBlue_17.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBlue_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBlue_18.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBlue_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBlue_19.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBlue_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBlue_20.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBlue_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBlue_21.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBlue_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBlue_22.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBlue_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBlue_23.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBlue_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBlue_24.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBlue_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBlue_25.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBlue_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBlue_26.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBlue_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBlue_27.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBrown_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBrown_01.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBrown_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBrown_02.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBrown_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBrown_03.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBrown_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBrown_04.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBrown_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBrown_05.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBrown_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBrown_06.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBrown_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBrown_07.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBrown_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBrown_08.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBrown_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBrown_09.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBrown_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBrown_10.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBrown_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBrown_11.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBrown_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBrown_12.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBrown_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBrown_13.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBrown_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBrown_14.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBrown_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBrown_15.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBrown_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBrown_16.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBrown_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBrown_17.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBrown_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBrown_18.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBrown_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBrown_19.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBrown_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBrown_20.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBrown_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBrown_21.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBrown_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBrown_22.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBrown_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBrown_23.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBrown_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBrown_24.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBrown_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBrown_25.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBrown_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBrown_26.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileBrown_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileBrown_27.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileGreen_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileGreen_01.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileGreen_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileGreen_02.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileGreen_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileGreen_03.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileGreen_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileGreen_04.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileGreen_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileGreen_05.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileGreen_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileGreen_06.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileGreen_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileGreen_07.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileGreen_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileGreen_08.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileGreen_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileGreen_09.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileGreen_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileGreen_10.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileGreen_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileGreen_11.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileGreen_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileGreen_12.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileGreen_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileGreen_13.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileGreen_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileGreen_14.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileGreen_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileGreen_15.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileGreen_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileGreen_16.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileGreen_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileGreen_17.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileGreen_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileGreen_18.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileGreen_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileGreen_19.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileGreen_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileGreen_20.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileGreen_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileGreen_21.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileGreen_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileGreen_22.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileGreen_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileGreen_23.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileGreen_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileGreen_24.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileGreen_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileGreen_25.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileGreen_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileGreen_26.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileGreen_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileGreen_27.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileYellow_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileYellow_01.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileYellow_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileYellow_02.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileYellow_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileYellow_03.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileYellow_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileYellow_04.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileYellow_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileYellow_05.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileYellow_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileYellow_06.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileYellow_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileYellow_07.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileYellow_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileYellow_08.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileYellow_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileYellow_09.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileYellow_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileYellow_10.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileYellow_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileYellow_11.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileYellow_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileYellow_12.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileYellow_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileYellow_13.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileYellow_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileYellow_14.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileYellow_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileYellow_15.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileYellow_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileYellow_16.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileYellow_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileYellow_17.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileYellow_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileYellow_18.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileYellow_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileYellow_19.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileYellow_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileYellow_20.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileYellow_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileYellow_21.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileYellow_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileYellow_22.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileYellow_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileYellow_23.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileYellow_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileYellow_24.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileYellow_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileYellow_25.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileYellow_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileYellow_26.png -------------------------------------------------------------------------------- /bin/examples/multithreading/Tiles/tileYellow_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/Tiles/tileYellow_27.png -------------------------------------------------------------------------------- /bin/examples/multithreading/applyitem.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/applyitem.wav -------------------------------------------------------------------------------- /bin/examples/multithreading/backgrounds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/backgrounds.png -------------------------------------------------------------------------------- /bin/examples/multithreading/coin.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/coin.mp3 -------------------------------------------------------------------------------- /bin/examples/multithreading/coin_decay.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/coin_decay.xcf -------------------------------------------------------------------------------- /bin/examples/multithreading/coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/coins.png -------------------------------------------------------------------------------- /bin/examples/multithreading/coins/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/coins/1.png -------------------------------------------------------------------------------- /bin/examples/multithreading/coins/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/coins/10.png -------------------------------------------------------------------------------- /bin/examples/multithreading/coins/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/coins/2.png -------------------------------------------------------------------------------- /bin/examples/multithreading/coins/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/coins/3.png -------------------------------------------------------------------------------- /bin/examples/multithreading/coins/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/coins/4.png -------------------------------------------------------------------------------- /bin/examples/multithreading/coins/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/coins/5.png -------------------------------------------------------------------------------- /bin/examples/multithreading/coins/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/coins/6.png -------------------------------------------------------------------------------- /bin/examples/multithreading/coins/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/coins/7.png -------------------------------------------------------------------------------- /bin/examples/multithreading/coins/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/coins/8.png -------------------------------------------------------------------------------- /bin/examples/multithreading/coins/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/coins/9.png -------------------------------------------------------------------------------- /bin/examples/multithreading/coins_decay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/coins_decay.png -------------------------------------------------------------------------------- /bin/examples/multithreading/coins_decay/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/coins_decay/1.png -------------------------------------------------------------------------------- /bin/examples/multithreading/coins_decay/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/coins_decay/10.png -------------------------------------------------------------------------------- /bin/examples/multithreading/coins_decay/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/coins_decay/2.png -------------------------------------------------------------------------------- /bin/examples/multithreading/coins_decay/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/coins_decay/3.png -------------------------------------------------------------------------------- /bin/examples/multithreading/coins_decay/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/coins_decay/4.png -------------------------------------------------------------------------------- /bin/examples/multithreading/coins_decay/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/coins_decay/5.png -------------------------------------------------------------------------------- /bin/examples/multithreading/coins_decay/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/coins_decay/6.png -------------------------------------------------------------------------------- /bin/examples/multithreading/coins_decay/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/coins_decay/7.png -------------------------------------------------------------------------------- /bin/examples/multithreading/coins_decay/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/coins_decay/8.png -------------------------------------------------------------------------------- /bin/examples/multithreading/coins_decay/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/coins_decay/9.png -------------------------------------------------------------------------------- /bin/examples/multithreading/enemies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/enemies.png -------------------------------------------------------------------------------- /bin/examples/multithreading/footstep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/footstep.wav -------------------------------------------------------------------------------- /bin/examples/multithreading/hit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/hit.mp3 -------------------------------------------------------------------------------- /bin/examples/multithreading/hit_enemy.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/hit_enemy.wav -------------------------------------------------------------------------------- /bin/examples/multithreading/hurt.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/hurt.wav -------------------------------------------------------------------------------- /bin/examples/multithreading/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/icons.png -------------------------------------------------------------------------------- /bin/examples/multithreading/in_game_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/in_game_text.png -------------------------------------------------------------------------------- /bin/examples/multithreading/item_drop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/item_drop.wav -------------------------------------------------------------------------------- /bin/examples/multithreading/item_taken.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/item_taken.wav -------------------------------------------------------------------------------- /bin/examples/multithreading/jump2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/jump2.wav -------------------------------------------------------------------------------- /bin/examples/multithreading/label_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/label_base.png -------------------------------------------------------------------------------- /bin/examples/multithreading/label_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/label_outline.png -------------------------------------------------------------------------------- /bin/examples/multithreading/label_rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/label_rainbow.png -------------------------------------------------------------------------------- /bin/examples/multithreading/labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/labels.png -------------------------------------------------------------------------------- /bin/examples/multithreading/labels.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/labels.xcf -------------------------------------------------------------------------------- /bin/examples/multithreading/labels/highscore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/labels/highscore.png -------------------------------------------------------------------------------- /bin/examples/multithreading/labels/label_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/labels/label_base.png -------------------------------------------------------------------------------- /bin/examples/multithreading/labels/label_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/labels/label_outline.png -------------------------------------------------------------------------------- /bin/examples/multithreading/labels/label_rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/labels/label_rainbow.png -------------------------------------------------------------------------------- /bin/examples/multithreading/labels/life.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/labels/life.png -------------------------------------------------------------------------------- /bin/examples/multithreading/labels/score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/labels/score.png -------------------------------------------------------------------------------- /bin/examples/multithreading/laser1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/laser1.png -------------------------------------------------------------------------------- /bin/examples/multithreading/laser1.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/laser1.xcf -------------------------------------------------------------------------------- /bin/examples/multithreading/laser2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/laser2.png -------------------------------------------------------------------------------- /bin/examples/multithreading/laser2.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/laser2.xcf -------------------------------------------------------------------------------- /bin/examples/multithreading/lasers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/lasers.png -------------------------------------------------------------------------------- /bin/examples/multithreading/lose.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/lose.mp3 -------------------------------------------------------------------------------- /bin/examples/multithreading/lose_screen.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/lose_screen.mp3 -------------------------------------------------------------------------------- /bin/examples/multithreading/misc_menu.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/misc_menu.wav -------------------------------------------------------------------------------- /bin/examples/multithreading/misc_menu_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/misc_menu_2.wav -------------------------------------------------------------------------------- /bin/examples/multithreading/next_part.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/next_part.wav -------------------------------------------------------------------------------- /bin/examples/multithreading/opengameart_bullets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/opengameart_bullets.png -------------------------------------------------------------------------------- /bin/examples/multithreading/pause.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/pause.wav -------------------------------------------------------------------------------- /bin/examples/multithreading/platforms.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/platforms.tga -------------------------------------------------------------------------------- /bin/examples/multithreading/platforms/10x2_mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/platforms/10x2_mono.png -------------------------------------------------------------------------------- /bin/examples/multithreading/platforms/1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/platforms/1x1.png -------------------------------------------------------------------------------- /bin/examples/multithreading/platforms/1x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/platforms/1x2.png -------------------------------------------------------------------------------- /bin/examples/multithreading/platforms/1x2_mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/platforms/1x2_mono.png -------------------------------------------------------------------------------- /bin/examples/multithreading/platforms/1x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/platforms/1x4.png -------------------------------------------------------------------------------- /bin/examples/multithreading/platforms/1x6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/platforms/1x6.png -------------------------------------------------------------------------------- /bin/examples/multithreading/platforms/20x2_mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/platforms/20x2_mono.png -------------------------------------------------------------------------------- /bin/examples/multithreading/platforms/2x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/platforms/2x1.png -------------------------------------------------------------------------------- /bin/examples/multithreading/platforms/2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/platforms/2x2.png -------------------------------------------------------------------------------- /bin/examples/multithreading/platforms/2x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/platforms/2x4.png -------------------------------------------------------------------------------- /bin/examples/multithreading/platforms/2x6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/platforms/2x6.png -------------------------------------------------------------------------------- /bin/examples/multithreading/platforms/3x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/platforms/3x1.png -------------------------------------------------------------------------------- /bin/examples/multithreading/platforms/3x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/platforms/3x2.png -------------------------------------------------------------------------------- /bin/examples/multithreading/platforms/3x2_mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/platforms/3x2_mono.png -------------------------------------------------------------------------------- /bin/examples/multithreading/platforms/5x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/platforms/5x1.png -------------------------------------------------------------------------------- /bin/examples/multithreading/platforms/5x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/platforms/5x2.png -------------------------------------------------------------------------------- /bin/examples/multithreading/platforms/5x2_mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/platforms/5x2_mono.png -------------------------------------------------------------------------------- /bin/examples/multithreading/quake.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/quake.wav -------------------------------------------------------------------------------- /bin/examples/multithreading/shooting_1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/shooting_1.mp3 -------------------------------------------------------------------------------- /bin/examples/multithreading/shooting_2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/shooting_2.mp3 -------------------------------------------------------------------------------- /bin/examples/multithreading/shooting_3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/shooting_3.mp3 -------------------------------------------------------------------------------- /bin/examples/multithreading/slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/slot.png -------------------------------------------------------------------------------- /bin/examples/multithreading/swing.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/swing.mp3 -------------------------------------------------------------------------------- /bin/examples/multithreading/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/tiles.png -------------------------------------------------------------------------------- /bin/examples/multithreading/white_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/white_square.png -------------------------------------------------------------------------------- /bin/examples/multithreading/win.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/win.mp3 -------------------------------------------------------------------------------- /bin/examples/multithreading/win_screen.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/examples/multithreading/win_screen.mp3 -------------------------------------------------------------------------------- /bin/examples/test.srgba: -------------------------------------------------------------------------------- 1 | SRGBA1234567812345678123456781234567812345678123456781234567812345678 -------------------------------------------------------------------------------- /bin/freetype271.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/freetype271.dll -------------------------------------------------------------------------------- /bin/freetype271MT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/freetype271MT.dll -------------------------------------------------------------------------------- /bin/ifaceed/EMPORIUM.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/ifaceed/EMPORIUM.TTF -------------------------------------------------------------------------------- /bin/ifaceed/RLE.json: -------------------------------------------------------------------------------- 1 | { 2 | "resource": "RLE_atlas", 3 | "file": "RLE.tga", 4 | "atlas": [ 5 | { 6 | "name": "RLE", 7 | "size": "64;64", 8 | "texrect": "0;0;64;64" 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /bin/ifaceed/RLE.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/ifaceed/RLE.tga -------------------------------------------------------------------------------- /bin/ifaceed/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/ifaceed/font.png -------------------------------------------------------------------------------- /bin/ifaceed/resources/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/ifaceed/resources/Thumbs.db -------------------------------------------------------------------------------- /bin/ifaceed/resources/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/ifaceed/resources/icons.png -------------------------------------------------------------------------------- /bin/ifaceed/resources/itemicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/ifaceed/resources/itemicons.png -------------------------------------------------------------------------------- /bin/ifaceed/resources/resources.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type" : "sad::resource::TextureAtlasFile", 4 | "filename" : "resources/itemicons.json" 5 | } 6 | ] -------------------------------------------------------------------------------- /bin/ifaceed/run-debug.bat: -------------------------------------------------------------------------------- 1 | iface-editor-debug.exe -resources globalconfig.json -width 800 -height 600 -------------------------------------------------------------------------------- /bin/ifaceed/run-release.bat: -------------------------------------------------------------------------------- 1 | iface-editor-release.exe -resources globalconfig.json -width 800 -height 600 -------------------------------------------------------------------------------- /bin/ifaceed/textures.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/ifaceed/textures.bmp -------------------------------------------------------------------------------- /bin/ifaceed/textures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/ifaceed/textures.png -------------------------------------------------------------------------------- /bin/ifaceed/textures_changed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/ifaceed/textures_changed.png -------------------------------------------------------------------------------- /bin/run_editor_for_platformer.bat: -------------------------------------------------------------------------------- 1 | "ifaceed/iface-editor-debug.exe" -resources "examples/multithreading/config_main_thread.json" -width 800 -height 600 -------------------------------------------------------------------------------- /bin/tests/animations/test.json: -------------------------------------------------------------------------------- 1 | { 2 | "rotate" : { 3 | "time" : 1000, 4 | "looped" : true, 5 | "min_angle" : 0, 6 | "max_angle" : 360, 7 | "type" : "sad::animations::Rotate" 8 | } 9 | } -------------------------------------------------------------------------------- /bin/tests/anonymousresource.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "type": "sad::Texture", "filename": "examples/game/objects.bmp"} 3 | ] -------------------------------------------------------------------------------- /bin/tests/atlasgen/icons-xml/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/icons-xml/bottom.png -------------------------------------------------------------------------------- /bin/tests/atlasgen/icons-xml/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/icons-xml/delete.png -------------------------------------------------------------------------------- /bin/tests/atlasgen/icons-xml/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/icons-xml/left.png -------------------------------------------------------------------------------- /bin/tests/atlasgen/icons-xml/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/icons-xml/right.png -------------------------------------------------------------------------------- /bin/tests/atlasgen/icons-xml/rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/icons-xml/rotate.png -------------------------------------------------------------------------------- /bin/tests/atlasgen/icons-xml/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/icons-xml/top.png -------------------------------------------------------------------------------- /bin/tests/atlasgen/icons_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/icons_output.png -------------------------------------------------------------------------------- /bin/tests/atlasgen/imgs/blit_successful.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/imgs/blit_successful.bmp -------------------------------------------------------------------------------- /bin/tests/atlasgen/imgs/blit_successful.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/imgs/blit_successful.jpg -------------------------------------------------------------------------------- /bin/tests/atlasgen/imgs/blit_successful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/imgs/blit_successful.png -------------------------------------------------------------------------------- /bin/tests/atlasgen/imgs/blit_successful.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/imgs/blit_successful.tga -------------------------------------------------------------------------------- /bin/tests/atlasgen/imgs/btn-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/imgs/btn-default.png -------------------------------------------------------------------------------- /bin/tests/atlasgen/imgs/btn-directed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/imgs/btn-directed.png -------------------------------------------------------------------------------- /bin/tests/atlasgen/imgs/btn-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/imgs/btn-red.png -------------------------------------------------------------------------------- /bin/tests/atlasgen/imgs/btn-remove-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/imgs/btn-remove-small.png -------------------------------------------------------------------------------- /bin/tests/atlasgen/imgs/gnu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/imgs/gnu.png -------------------------------------------------------------------------------- /bin/tests/atlasgen/imgs/gnu_shifted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/imgs/gnu_shifted.jpg -------------------------------------------------------------------------------- /bin/tests/atlasgen/imgs/kde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/imgs/kde.png -------------------------------------------------------------------------------- /bin/tests/atlasgen/imgs/lena.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/imgs/lena.jpg -------------------------------------------------------------------------------- /bin/tests/atlasgen/imgs/lena_copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/imgs/lena_copy.jpg -------------------------------------------------------------------------------- /bin/tests/atlasgen/imgs/lena_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/imgs/lena_copy.png -------------------------------------------------------------------------------- /bin/tests/atlasgen/imgs/lena_shifted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/imgs/lena_shifted.jpg -------------------------------------------------------------------------------- /bin/tests/atlasgen/imgs/passthrough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/imgs/passthrough.png -------------------------------------------------------------------------------- /bin/tests/atlasgen/imgs/tux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/imgs/tux.png -------------------------------------------------------------------------------- /bin/tests/atlasgen/imgs/tux_shifted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/imgs/tux_shifted.jpg -------------------------------------------------------------------------------- /bin/tests/atlasgen/imgs/tux_shifted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/imgs/tux_shifted.png -------------------------------------------------------------------------------- /bin/tests/atlasgen/output_valid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/output_valid.png -------------------------------------------------------------------------------- /bin/tests/atlasgen/output_valid.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /bin/tests/atlasgen/passthrough_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/passthrough_output.png -------------------------------------------------------------------------------- /bin/tests/atlasgen/xml/emptyconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | Data 3 | -------------------------------------------------------------------------------- /bin/tests/atlasgen/xml/fail1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/atlasgen/xml/fail1.xml -------------------------------------------------------------------------------- /bin/tests/atlasgen/xml/fail2.xml: -------------------------------------------------------------------------------- 1 | sddfsdfsdf -------------------------------------------------------------------------------- /bin/tests/atlasgen/xml/fail3.xml: -------------------------------------------------------------------------------- 1 | <> -------------------------------------------------------------------------------- /bin/tests/atlasgen/xml/no_config.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bin/tests/atlasgen/xml/no_texture.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bin/tests/atlasgen/xml/no_texture_and_config.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bin/tests/atlasgen/xml/tcfg1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ddd 4 | -------------------------------------------------------------------------------- /bin/tests/binary.json: -------------------------------------------------------------------------------- 1 | ';as'ldwkqopiei2e029302q201-29-3 -------------------------------------------------------------------------------- /bin/tests/db/cannotdeletereference.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] -------------------------------------------------------------------------------- /bin/tests/db/database/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/db/database/empty.json -------------------------------------------------------------------------------- /bin/tests/db/database/eo.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /bin/tests/db/database/invaliddefs.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | "properties": null, 4 | "tables": null 5 | 6 | } -------------------------------------------------------------------------------- /bin/tests/db/database/invalidtype.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | "properties": { 4 | "myprop": { "type": "aaaaa", "value" : 0 } 5 | }, 6 | "tables": { 7 | "mocks" : [ 8 | 9 | ] 10 | } 11 | 12 | } -------------------------------------------------------------------------------- /bin/tests/db/database/null.json: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /bin/tests/db/database/valid2.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | "properties": { 4 | 5 | }, 6 | "tables": { 7 | 8 | } 9 | 10 | } -------------------------------------------------------------------------------- /bin/tests/db/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/db/empty.json -------------------------------------------------------------------------------- /bin/tests/db/emptyarray.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] -------------------------------------------------------------------------------- /bin/tests/db/invalidname.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name" : [], 4 | "resource": "1", 5 | "schema" : { 6 | "k" : {"type" : "int", "value" : 0 }, 7 | "k2" : {"type" : "int", "value" : 0 } 8 | } 9 | } 10 | ] -------------------------------------------------------------------------------- /bin/tests/db/invalidpropertytype.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name" : "myschema", 4 | "resource": "1", 5 | "schema" : { 6 | "myproperty" : {"type" : "IUnknownProperty", "value" : 0 } 7 | } 8 | } 9 | ] -------------------------------------------------------------------------------- /bin/tests/db/invalidschema.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name" : "myschema", 4 | "resource": "1", 5 | "schema" : [] 6 | } 7 | ] -------------------------------------------------------------------------------- /bin/tests/db/missingresource.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name" : "myschema", 4 | "resource": "myschema", 5 | "schema" : { 6 | "myproperty" : {"type" : "int", "value" : 0 } 7 | } 8 | } 9 | ] -------------------------------------------------------------------------------- /bin/tests/db/null.json: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /bin/tests/db/parseerror.json: -------------------------------------------------------------------------------- 1 | 018083pdm=-1=-2 -------------------------------------------------------------------------------- /bin/tests/db/resourcenameexists.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name" : "1", 4 | "resource": "1", 5 | "schema" : { 6 | "myproperty" : {"type" : "int", "value" : 0 } 7 | } 8 | } 9 | ] -------------------------------------------------------------------------------- /bin/tests/db/sprite.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name" : "myobject", 4 | "resource": "1", 5 | "schema" : { 6 | "prop1" : {"type" : "int", "value" : 0 }, 7 | "prop2" : {"type" : "int", "value" : 0 } 8 | } 9 | } 10 | ] -------------------------------------------------------------------------------- /bin/tests/db/sprite_lost_prop.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name" : "myobject", 4 | "resource": "1", 5 | "schema" : { 6 | "prop2" : {"type" : "int", "value" : 0 } 7 | } 8 | } 9 | ] -------------------------------------------------------------------------------- /bin/tests/db/sprite_non_required.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name" : "myobject", 4 | "resource": "1", 5 | "schema" : { 6 | "prop" : {"type" : "int", "value" : 0, "default" : 15 } 7 | } 8 | } 9 | ] -------------------------------------------------------------------------------- /bin/tests/db/sprite_non_required_invalid.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name" : "myobject", 4 | "resource": "1", 5 | "schema" : { 6 | "prop" : {"type" : "int", "value" : 0, "default" : "500" } 7 | } 8 | } 9 | ] -------------------------------------------------------------------------------- /bin/tests/dog_bark_001.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/dog_bark_001.wav -------------------------------------------------------------------------------- /bin/tests/duktape/common.js: -------------------------------------------------------------------------------- 1 | 1+1 -------------------------------------------------------------------------------- /bin/tests/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/empty.json -------------------------------------------------------------------------------- /bin/tests/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/icons.png -------------------------------------------------------------------------------- /bin/tests/icons_binary.json: -------------------------------------------------------------------------------- 1 | a'dka;kdpqkwpeiqwpeiwqei -------------------------------------------------------------------------------- /bin/tests/icons_empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/icons_empty.json -------------------------------------------------------------------------------- /bin/tests/icons_malformed1.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /bin/tests/icons_malformed4.json: -------------------------------------------------------------------------------- 1 | { 2 | "resource": "icons", 3 | "file": "tests/icons.png" 4 | } -------------------------------------------------------------------------------- /bin/tests/icons_malformed5.json: -------------------------------------------------------------------------------- 1 | { 2 | "resource": "icons", 3 | "file": "tests/icons.png", 4 | "atlas": 22 5 | } -------------------------------------------------------------------------------- /bin/tests/icons_malformed6.json: -------------------------------------------------------------------------------- 1 | { 2 | "resource": "icons", 3 | "file": "tests/icons.png", 4 | "atlas": [ 5 | 22, 6 | 23 7 | ] 8 | } -------------------------------------------------------------------------------- /bin/tests/icons_malformed7.json: -------------------------------------------------------------------------------- 1 | { 2 | "resource": "icons", 3 | "file": "tests/icons.png", 4 | "atlas": [ 5 | { 6 | "name": "1" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /bin/tests/icons_partiallyvalid.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | }; -------------------------------------------------------------------------------- /bin/tests/images/bmp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/images/bmp.bmp -------------------------------------------------------------------------------- /bin/tests/images/images.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/images/images.tar -------------------------------------------------------------------------------- /bin/tests/images/nice.sr3g3b2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/images/nice.sr3g3b2 -------------------------------------------------------------------------------- /bin/tests/images/nice.sr5g6b5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/images/nice.sr5g6b5 -------------------------------------------------------------------------------- /bin/tests/images/nice.srgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/images/nice.srgba -------------------------------------------------------------------------------- /bin/tests/images/png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/images/png.png -------------------------------------------------------------------------------- /bin/tests/images/tga24_compressed.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/images/tga24_compressed.tga -------------------------------------------------------------------------------- /bin/tests/images/tga32_compressed.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/images/tga32_compressed.tga -------------------------------------------------------------------------------- /bin/tests/images/tga32_compressed_small.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/images/tga32_compressed_small.tga -------------------------------------------------------------------------------- /bin/tests/images/tga32_uncompressed.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/images/tga32_uncompressed.tga -------------------------------------------------------------------------------- /bin/tests/invalidtree.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "type": "sad::Texture", "bug": "bug"}, 3 | { "filename" : "malformed.jpg" } 4 | ] -------------------------------------------------------------------------------- /bin/tests/loadingfailure.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "type": "sad::Texture", "filename": "1.jpg"}, 3 | { "type": "sad::TextureMappedFont", "filename": "1"}, 4 | { "type": "sad::freetype::Font", "filename": "1.ttf"} 5 | ] -------------------------------------------------------------------------------- /bin/tests/malformed1.json: -------------------------------------------------------------------------------- 1 | 1233 -------------------------------------------------------------------------------- /bin/tests/malformed2.json: -------------------------------------------------------------------------------- 1 | [ 2 | 123, 3 | 4567 4 | ] -------------------------------------------------------------------------------- /bin/tests/nosound.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "type": "sad::irrklang::Sound", "filename": "tests/dog_bark.wav", "name" : "sound"} 3 | ] -------------------------------------------------------------------------------- /bin/tests/parseerror.json: -------------------------------------------------------------------------------- 1 | [ 2 | 3 | ]; -------------------------------------------------------------------------------- /bin/tests/resources/data.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/bin/tests/resources/data.tar -------------------------------------------------------------------------------- /bin/tests/sound.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "type": "sad::irrklang::Sound", "filename": "tests/dog_bark_001.wav", "name" : "sound"} 3 | ] -------------------------------------------------------------------------------- /bin/tests/totallyspaced.json: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /bin/tests/unregisteredtype.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "type": "unregisteredtype", "filename": "1.jpg"} 3 | ] -------------------------------------------------------------------------------- /bin/tests/validmultiple.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "type": "sad::Texture", "filename": "examples/game/objects.bmp", "name" : "objects2"} 3 | ] -------------------------------------------------------------------------------- /debug.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | mingw32-make -------------------------------------------------------------------------------- /debug.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | make -------------------------------------------------------------------------------- /docs/README: -------------------------------------------------------------------------------- 1 | Here will be placed Doxygen-generated documentation. Please run builddocs.bat or builddocs.sh -------------------------------------------------------------------------------- /docs/atlasgen/README: -------------------------------------------------------------------------------- 1 | Here will be placed Doxygen-generated documentation. Please run builddocs.bat or builddocs.sh -------------------------------------------------------------------------------- /docs/dev/saddy.asta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/docs/dev/saddy.asta -------------------------------------------------------------------------------- /docs/freetype/README: -------------------------------------------------------------------------------- 1 | This plugin provides a simple interface, like sad::Font or sad::TMFont, only with freetype backend. -------------------------------------------------------------------------------- /docs/game/README: -------------------------------------------------------------------------------- 1 | Here will be placed Doxygen-generated documentation. Please run builddocs.bat or builddocs.sh -------------------------------------------------------------------------------- /docs/ifaceeditor/README: -------------------------------------------------------------------------------- 1 | Here will be placed Doxygen-generated documentation. Please run builddocs.bat or builddocs.sh -------------------------------------------------------------------------------- /docs/multithreading/README: -------------------------------------------------------------------------------- 1 | Here will be placed Doxygen-generated documentation. Please run builddocs.bat or builddocs.sh -------------------------------------------------------------------------------- /docs/saddy/README: -------------------------------------------------------------------------------- 1 | Here will be placed Doxygen-generated documentation. Please run builddocs.bat or builddocs.sh -------------------------------------------------------------------------------- /docs/stress-physics/README: -------------------------------------------------------------------------------- 1 | Here will be placed Doxygen-generated documentation. Please run builddocs.bat or builddocs.sh -------------------------------------------------------------------------------- /examples/example-game-in-qt/mainwindow.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /examples/game/bonus.cpp: -------------------------------------------------------------------------------- 1 | #include "bonus.h" 2 | 3 | DECLARE_SOBJ_INHERITANCE(Bonus, GameObject) 4 | 5 | Bonus::Bonus() 6 | { 7 | initFromConstants(this); 8 | this->setAngularVelocity(1.0); 9 | } 10 | -------------------------------------------------------------------------------- /examples/game/debug.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | mingw32-make -------------------------------------------------------------------------------- /examples/game/debug.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | make -------------------------------------------------------------------------------- /examples/game/enemy.cpp: -------------------------------------------------------------------------------- 1 | #include "enemy.h" 2 | 3 | DECLARE_SOBJ_INHERITANCE(Enemy, GameObject) 4 | 5 | Enemy::Enemy() 6 | { 7 | initFromConstants(this); 8 | this->setAngularVelocity(1.0); 9 | } 10 | -------------------------------------------------------------------------------- /examples/game/game.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /examples/game/release.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | mingw32-make -------------------------------------------------------------------------------- /examples/game/release.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | make -------------------------------------------------------------------------------- /examples/imgui/debug.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | mingw32-make -------------------------------------------------------------------------------- /examples/imgui/debug.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | make -------------------------------------------------------------------------------- /examples/imgui/release.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | mingw32-make -------------------------------------------------------------------------------- /examples/imgui/release.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | make -------------------------------------------------------------------------------- /examples/multithreading/debug.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | mingw32-make -------------------------------------------------------------------------------- /examples/multithreading/debug.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | make -------------------------------------------------------------------------------- /examples/multithreading/multithreading.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /examples/multithreading/release.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | mingw32-make -------------------------------------------------------------------------------- /examples/multithreading/release.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | make -------------------------------------------------------------------------------- /examples/shaders/debug.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | mingw32-make -------------------------------------------------------------------------------- /examples/shaders/debug.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | make -------------------------------------------------------------------------------- /examples/shaders/release.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | mingw32-make -------------------------------------------------------------------------------- /examples/shaders/release.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | make -------------------------------------------------------------------------------- /examples/stress-physics/debug.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | mingw32-make -------------------------------------------------------------------------------- /examples/stress-physics/debug.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | make -------------------------------------------------------------------------------- /examples/stress-physics/release.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | mingw32-make -------------------------------------------------------------------------------- /examples/stress-physics/release.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | make -------------------------------------------------------------------------------- /include/3rdparty/dukpp-03.h: -------------------------------------------------------------------------------- 1 | #include "dukpp-03/include/dukpp-03.h" -------------------------------------------------------------------------------- /include/animations/easing/easingtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/include/animations/easing/easingtypes.h -------------------------------------------------------------------------------- /include/unused.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #ifndef UNUSED 4 | #ifdef GCC 5 | #define UNUSED __attribute__((unused)) 6 | #else 7 | #define UNUSED 8 | #endif 9 | #endif 10 | 11 | -------------------------------------------------------------------------------- /libsaddy.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/logo.png -------------------------------------------------------------------------------- /logo_no_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/logo_no_bg.png -------------------------------------------------------------------------------- /mascot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/mascot.png -------------------------------------------------------------------------------- /plugins/all_debug.bat: -------------------------------------------------------------------------------- 1 | cd freetype 2 | debug.bat 3 | cd .. 4 | cd duktape 5 | debug.bat 6 | cd .. 7 | cd irrklang 8 | debug.bat 9 | cd .. -------------------------------------------------------------------------------- /plugins/all_debug.sh: -------------------------------------------------------------------------------- 1 | cd freetype 2 | ./debug.sh 3 | cd .. 4 | cd duktape 5 | ./debug.sh 6 | cd .. 7 | cd irrklang 8 | ./debug.sh 9 | cd .. -------------------------------------------------------------------------------- /plugins/all_release.bat: -------------------------------------------------------------------------------- 1 | cd freetype 2 | release.bat 3 | cd .. 4 | cd duktape 5 | release.bat 6 | cd .. 7 | cd irrklang 8 | release.bat 9 | cd .. -------------------------------------------------------------------------------- /plugins/all_release.sh: -------------------------------------------------------------------------------- 1 | cd freetype 2 | ./release.sh 3 | cd .. 4 | cd duktape 5 | ./release.sh 6 | cd .. 7 | cd irrklang 8 | ./release.sh 9 | cd .. -------------------------------------------------------------------------------- /plugins/dukpp-03-irrklang/README: -------------------------------------------------------------------------------- 1 | This is plugin for making a simple bindings for dukpp-03 to irrKlang -------------------------------------------------------------------------------- /plugins/dukpp-03-irrklang/debug.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | mingw32-make -------------------------------------------------------------------------------- /plugins/dukpp-03-irrklang/debug.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | make -------------------------------------------------------------------------------- /plugins/dukpp-03-irrklang/dukpp-03-irrklang.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /plugins/dukpp-03-irrklang/release.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | mingw32-make -------------------------------------------------------------------------------- /plugins/dukpp-03-irrklang/release.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | make -------------------------------------------------------------------------------- /plugins/dukpp-03/README: -------------------------------------------------------------------------------- 1 | This is plugin for making a simple bindings to Duktape (see https://github.com/svaarala/duktape). -------------------------------------------------------------------------------- /plugins/dukpp-03/debug.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | mingw32-make -------------------------------------------------------------------------------- /plugins/dukpp-03/debug.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | make -------------------------------------------------------------------------------- /plugins/dukpp-03/dukpp-03.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /plugins/dukpp-03/release.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | mingw32-make -------------------------------------------------------------------------------- /plugins/dukpp-03/release.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | make -------------------------------------------------------------------------------- /plugins/freetype/README: -------------------------------------------------------------------------------- 1 | Requirements: 2 | Win32: Freetype2 library installed at C:\GnuWin32\. Otherwise, change makefile appropriately 3 | Linux: Freetype2 library installed. -------------------------------------------------------------------------------- /plugins/freetype/debug.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | mingw32-make -------------------------------------------------------------------------------- /plugins/freetype/debug.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | make -------------------------------------------------------------------------------- /plugins/freetype/release.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | mingw32-make -------------------------------------------------------------------------------- /plugins/freetype/release.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | make -------------------------------------------------------------------------------- /plugins/freetype/saddy-ft.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /plugins/imgui/debug.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | mingw32-make -------------------------------------------------------------------------------- /plugins/imgui/debug.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | make -------------------------------------------------------------------------------- /plugins/imgui/imgui.cpp: -------------------------------------------------------------------------------- 1 | #include "../../3rdparty/imgui/imgui.cpp" 2 | #include "../../3rdparty/imgui/imgui_demo.cpp" 3 | #include "../../3rdparty/imgui/imgui_draw.cpp" 4 | #include "../../3rdparty/imgui/imgui_widgets.cpp" -------------------------------------------------------------------------------- /plugins/imgui/imgui.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /plugins/imgui/release.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | mingw32-make -------------------------------------------------------------------------------- /plugins/imgui/release.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | make -------------------------------------------------------------------------------- /plugins/irrklang/README: -------------------------------------------------------------------------------- 1 | This is plugin for making a simple bindings to Duktape (see https://github.com/svaarala/duktape). -------------------------------------------------------------------------------- /plugins/irrklang/debug.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | mingw32-make -------------------------------------------------------------------------------- /plugins/irrklang/debug.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | make -------------------------------------------------------------------------------- /plugins/irrklang/irrklang.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /plugins/irrklang/release.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | mingw32-make -------------------------------------------------------------------------------- /plugins/irrklang/release.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | make -------------------------------------------------------------------------------- /plugins/phy52d/debug.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | mingw32-make -------------------------------------------------------------------------------- /plugins/phy52d/debug.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | make -------------------------------------------------------------------------------- /plugins/phy52d/phy52d.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /plugins/phy52d/release.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | mingw32-make -------------------------------------------------------------------------------- /plugins/phy52d/release.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | make -------------------------------------------------------------------------------- /release.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | mingw32-make -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | make -------------------------------------------------------------------------------- /src/animations/easing/easingtypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/src/animations/easing/easingtypes.cpp -------------------------------------------------------------------------------- /src/bindable.cpp: -------------------------------------------------------------------------------- 1 | #include "bindable.h" 2 | 3 | sad::Bindable::~Bindable() 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /src/classmetadatacastfunction.cpp: -------------------------------------------------------------------------------- 1 | #include "classmetadatacastfunction.h" 2 | 3 | sad::AbstractClassMetaDataCastFunction::~AbstractClassMetaDataCastFunction() 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /src/cli/clioptionvalue.cpp: -------------------------------------------------------------------------------- 1 | #include "cli/optionvalue.h" 2 | 3 | 4 | sad::cli::OptionValue::OptionValue() : Flag(false), Specified(false) 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /src/closure.cpp: -------------------------------------------------------------------------------- 1 | #include "closure.h" 2 | 3 | 4 | sad::ClosureBasic::~ClosureBasic() 5 | { 6 | 7 | } 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/input/handlerconditions.cpp: -------------------------------------------------------------------------------- 1 | #include "input/handlerconditions.h" 2 | #include "opticksupport.h" 3 | 4 | sad::input::AbstractHandlerCondition::~AbstractHandlerCondition() 5 | { 6 | PROFILER_EVENT; 7 | 8 | } 9 | -------------------------------------------------------------------------------- /src/p2d/collisionevent.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include "opticksupport.h" 3 | 4 | sad::p2d::BasicCollisionEvent::~BasicCollisionEvent() 5 | { 6 | PROFILER_EVENT; 7 | } 8 | -------------------------------------------------------------------------------- /tests/README: -------------------------------------------------------------------------------- 1 | This folder contains all test for files created since from 8.08.2013 in saddy -------------------------------------------------------------------------------- /tests/animations/alltests.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /tests/animations/debug.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | mingw32-make -------------------------------------------------------------------------------- /tests/animations/debug.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | make -------------------------------------------------------------------------------- /tests/animations/release.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | mingw32-make -------------------------------------------------------------------------------- /tests/animations/release.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | make -------------------------------------------------------------------------------- /tests/db/debug.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | mingw32-make -------------------------------------------------------------------------------- /tests/db/debug.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | make -------------------------------------------------------------------------------- /tests/db/release.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | mingw32-make -------------------------------------------------------------------------------- /tests/db/release.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | make -------------------------------------------------------------------------------- /tests/dukpp-03-irrklang/debug.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | mingw32-make -------------------------------------------------------------------------------- /tests/dukpp-03-irrklang/debug.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | make -------------------------------------------------------------------------------- /tests/dukpp-03-irrklang/release.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | mingw32-make -------------------------------------------------------------------------------- /tests/dukpp-03-irrklang/release.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | make -------------------------------------------------------------------------------- /tests/dukpp-03/alltests.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /tests/dukpp-03/debug.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | mingw32-make -------------------------------------------------------------------------------- /tests/dukpp-03/debug.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | make -------------------------------------------------------------------------------- /tests/dukpp-03/release.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | mingw32-make -------------------------------------------------------------------------------- /tests/dukpp-03/release.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | make -------------------------------------------------------------------------------- /tests/freetype/debug.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | mingw32-make -------------------------------------------------------------------------------- /tests/freetype/debug.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | make -------------------------------------------------------------------------------- /tests/freetype/main.cpp: -------------------------------------------------------------------------------- 1 | #include "helper.h" 2 | 3 | MAIN_RUNS_ALL_REGISTERED_TESTS 4 | -------------------------------------------------------------------------------- /tests/freetype/release.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | mingw32-make -------------------------------------------------------------------------------- /tests/freetype/release.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | make -------------------------------------------------------------------------------- /tests/hfsm/alltests.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /tests/hfsm/debug.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | mingw32-make -------------------------------------------------------------------------------- /tests/hfsm/debug.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | make -------------------------------------------------------------------------------- /tests/hfsm/release.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | mingw32-make -------------------------------------------------------------------------------- /tests/hfsm/release.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | make -------------------------------------------------------------------------------- /tests/input/alltests.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /tests/input/debug.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | mingw32-make -------------------------------------------------------------------------------- /tests/input/debug.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | make -------------------------------------------------------------------------------- /tests/input/release.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | mingw32-make -------------------------------------------------------------------------------- /tests/input/release.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | make -------------------------------------------------------------------------------- /tests/irrklang/debug.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | mingw32-make -------------------------------------------------------------------------------- /tests/irrklang/debug.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | make -------------------------------------------------------------------------------- /tests/irrklang/release.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | mingw32-make -------------------------------------------------------------------------------- /tests/irrklang/release.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | make -------------------------------------------------------------------------------- /tests/layouts/alltests.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /tests/layouts/debug.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | mingw32-make -------------------------------------------------------------------------------- /tests/layouts/debug.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | make -------------------------------------------------------------------------------- /tests/layouts/release.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | mingw32-make -------------------------------------------------------------------------------- /tests/layouts/release.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | make -------------------------------------------------------------------------------- /tests/p2d/alltests.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /tests/p2d/debug.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | mingw32-make -------------------------------------------------------------------------------- /tests/p2d/debug.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | make -------------------------------------------------------------------------------- /tests/p2d/release.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | mingw32-make -------------------------------------------------------------------------------- /tests/p2d/release.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | make -------------------------------------------------------------------------------- /tests/pipeline/alltests.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /tests/pipeline/debug.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | mingw32-make -------------------------------------------------------------------------------- /tests/pipeline/debug.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | make -------------------------------------------------------------------------------- /tests/pipeline/release.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | mingw32-make -------------------------------------------------------------------------------- /tests/pipeline/release.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | make -------------------------------------------------------------------------------- /tests/resource/debug.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | mingw32-make -------------------------------------------------------------------------------- /tests/resource/debug.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | make -------------------------------------------------------------------------------- /tests/resource/release.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | mingw32-make -------------------------------------------------------------------------------- /tests/resource/release.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | make -------------------------------------------------------------------------------- /tests/sad/debug.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | mingw32-make -------------------------------------------------------------------------------- /tests/sad/debug.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug . 2 | make -------------------------------------------------------------------------------- /tests/sad/release.bat: -------------------------------------------------------------------------------- 1 | cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | mingw32-make -------------------------------------------------------------------------------- /tests/sad/release.sh: -------------------------------------------------------------------------------- 1 | cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release . 2 | make -------------------------------------------------------------------------------- /tests_prepare.bat: -------------------------------------------------------------------------------- 1 | xcopy %FREETYPE_DIR%\bin\freetype6.dll bin\ 2 | xcopy %FREETYPE_DIR%\bin\pcre3.dll bin\ 3 | xcopy %FREETYPE_DIR%\bin\regex2.dll bin\ 4 | xcopy %FREETYPE_DIR%\bin\zlib1.dll bin\ 5 | -------------------------------------------------------------------------------- /tools/atlasgen/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/tools/atlasgen/icons.png -------------------------------------------------------------------------------- /tools/exporter/README: -------------------------------------------------------------------------------- 1 | This is tool for automatic creation texture-mapped fonts. 2 | It needs Qt to be installed to be built. 3 | Use *.pro file to compile it in Linux or using MinGW 4 | -------------------------------------------------------------------------------- /tools/ifaceed/ifaceed/ifaceed.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/tools/ifaceed/ifaceed/ifaceed.rc -------------------------------------------------------------------------------- /tools/ifaceed/ifaceed/leveleditor.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamontov-cpp/saddy-graphics-engine-2d/779307327fcdce25e252ffc202cf85e6efbb4a94/tools/ifaceed/ifaceed/leveleditor.aps -------------------------------------------------------------------------------- /tools/isqt580/README: -------------------------------------------------------------------------------- 1 | This is tool for checking if Qt version is larger than 5.8.0 2 | --------------------------------------------------------------------------------