From ba081d309eafe5e213d8bb441faa1cf89fd060e8 Mon Sep 17 00:00:00 2001 From: Tim Allen Date: Tue, 3 Jan 2012 23:56:24 +1100 Subject: [PATCH] Update to v085 release. byuu says: A new release for the new year. Changelog: fixed auto joypad polling edge case; fixes Ys 5 controls fixed Justifier polling code; Lethal Enforcers should be fully responsive once again rewrote SNES S-SMP processor core (~20% code reduction) fixed Game Boy 8x16 sprite mode; fixed some sprites in Zelda: Link's Awakening treat Game Boy HuC1 RAM enable flag as writable flag instead; fixes Pokemon Card GB created far faster XML parser; bsnes can now load XML files once again updated to mightymo's most recent cheat code database internal color calculations now performed at 30-bits per pixel gamma slider now acts as fine-tuned gamma ramp option Linux OpenGL driver will output at 30bpp on capable displays Linux port defaults to GTK+ now instead of Qt (both are still available) --- bsnes/snes/smp/core/disassembler.cpp | 2 +- bsnes/snes/smp/core/opcodes.cpp | 2 +- bsnes/ui/main.cpp | 2 +- snesfilter/nall/concept.hpp | 34 ------ snesfilter/nall/detect.hpp | 30 ------ snesfilter/nall/dsp/resample/point.hpp | 24 ----- snesfilter/nall/foreach.hpp | 18 ---- snesshader/Curvature.OpenGL.shader | 41 ++++---- snesshader/HQ2x.OpenGL.shader | 140 +++++++++++++------------ snesshader/Pixellate.OpenGL.shader | 82 ++++++++------- snesshader/Scale2x.OpenGL.shader | 102 +++++++++--------- snesshader/Sepia.Direct3D.shader | 56 +++++----- 12 files changed, 223 insertions(+), 310 deletions(-) delete mode 100755 snesfilter/nall/concept.hpp delete mode 100755 snesfilter/nall/detect.hpp delete mode 100755 snesfilter/nall/dsp/resample/point.hpp delete mode 100755 snesfilter/nall/foreach.hpp diff --git a/bsnes/snes/smp/core/disassembler.cpp b/bsnes/snes/smp/core/disassembler.cpp index 73f973d3..e1b1d89a 100755 --- a/bsnes/snes/smp/core/disassembler.cpp +++ b/bsnes/snes/smp/core/disassembler.cpp @@ -18,7 +18,7 @@ string SMPcore::disassemble_opcode(uint16 addr) { auto dp = [&](unsigned n) { return hex<3>((regs.p.p << 8) + read(addr + 1 + n)); }; auto ab = [&] { unsigned n = (read(addr + 1) << 0) + (read(addr + 2) << 8); - return string{ hex<4>(addr & 0x1fff), ":", hex<1>(addr >> 13) }; + return string{ hex<4>(n & 0x1fff), ":", hex<1>(n >> 13) }; }; auto mnemonic = [&]() -> string { diff --git a/bsnes/snes/smp/core/opcodes.cpp b/bsnes/snes/smp/core/opcodes.cpp index 09251f45..95b9844f 100755 --- a/bsnes/snes/smp/core/opcodes.cpp +++ b/bsnes/snes/smp/core/opcodes.cpp @@ -166,7 +166,7 @@ void SMPcore::op_set_addr_bit() { break; case 4: //eor addr:bit op_io(); - regs.p.c ^= (rd & (1 << bit)); + regs.p.c ^= (bool)(rd & (1 << bit)); break; case 5: //ldc addr:bit regs.p.c = (rd & (1 << bit)); diff --git a/bsnes/ui/main.cpp b/bsnes/ui/main.cpp index 31da3cea..2456fc7e 100755 --- a/bsnes/ui/main.cpp +++ b/bsnes/ui/main.cpp @@ -27,7 +27,7 @@ void Application::run() { } Application::Application(int argc, char **argv) { - title = "bsnes v084.08"; + title = "bsnes v085"; application = this; quit = false; diff --git a/snesfilter/nall/concept.hpp b/snesfilter/nall/concept.hpp deleted file mode 100755 index 47167e21..00000000 --- a/snesfilter/nall/concept.hpp +++ /dev/null @@ -1,34 +0,0 @@ -#ifndef NALL_CONCEPT_HPP -#define NALL_CONCEPT_HPP - -#include -#include - -namespace nall { - //unsigned count() const; - template struct has_count { enum { value = false }; }; - - //unsigned length() const; - template struct has_length { enum { value = false }; }; - - //unsigned size() const; - template struct has_size { enum { value = false }; }; - - template unsigned container_size(const T& object, typename mp_enable_if>::type = 0) { - return object.count(); - } - - template unsigned container_size(const T& object, typename mp_enable_if>::type = 0) { - return object.length(); - } - - template unsigned container_size(const T& object, typename mp_enable_if>::type = 0) { - return object.size(); - } - - template unsigned container_size(const T& object, typename mp_enable_if>::type = 0) { - return sizeof(T) / sizeof(typename std::remove_extent::type); - } -} - -#endif diff --git a/snesfilter/nall/detect.hpp b/snesfilter/nall/detect.hpp deleted file mode 100755 index 85122fbd..00000000 --- a/snesfilter/nall/detect.hpp +++ /dev/null @@ -1,30 +0,0 @@ -#ifndef NALL_DETECT_HPP -#define NALL_DETECT_HPP - -/* Compiler detection */ - -#if defined(__GNUC__) - #define COMPILER_GCC -#elif defined(_MSC_VER) - #define COMPILER_VISUALC -#endif - -/* Platform detection */ - -#if defined(_WIN32) - #define PLATFORM_WIN -#elif defined(__APPLE__) - #define PLATFORM_OSX -#elif defined(linux) || defined(__sun__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__) || defined(__OpenBSD__) - #define PLATFORM_X -#endif - -/* Endian detection */ - -#if defined(__i386__) || defined(__amd64__) || defined(_M_IX86) || defined(_M_AMD64) - #define ARCH_LSB -#elif defined(__powerpc__) || defined(_M_PPC) || defined(__BIG_ENDIAN__) - #define ARCH_MSB -#endif - -#endif diff --git a/snesfilter/nall/dsp/resample/point.hpp b/snesfilter/nall/dsp/resample/point.hpp deleted file mode 100755 index b1cc7dae..00000000 --- a/snesfilter/nall/dsp/resample/point.hpp +++ /dev/null @@ -1,24 +0,0 @@ -#ifdef NALL_DSP_INTERNAL_HPP - -void DSP::resamplePoint() { - while(resampler.fraction <= 1.0) { - double channel[settings.channels]; - - for(unsigned n = 0; n < settings.channels; n++) { - double a = buffer.read(n, -1); - double b = buffer.read(n, -0); - - double mu = resampler.fraction; - - channel[n] = mu < 0.5 ? a : b; - } - - resamplerWrite(channel); - resampler.fraction += resampler.step; - } - - buffer.rdoffset++; - resampler.fraction -= 1.0; -} - -#endif diff --git a/snesfilter/nall/foreach.hpp b/snesfilter/nall/foreach.hpp deleted file mode 100755 index 031913c8..00000000 --- a/snesfilter/nall/foreach.hpp +++ /dev/null @@ -1,18 +0,0 @@ -#ifndef NALL_FOREACH_HPP -#define NALL_FOREACH_HPP - -#include -#include - -#undef foreach - -#define foreach2(iter, object) foreach3(iter, object, foreach_counter) -#define foreach3(iter, object, foreach_counter) \ - for(unsigned foreach_counter = 0, foreach_limit = container_size(object), foreach_once = 0, foreach_broken = 0; foreach_counter < foreach_limit && foreach_broken == 0; foreach_counter++, foreach_once = 0) \ - for(auto &iter = object[foreach_counter]; foreach_once == 0 && (foreach_broken = 1); foreach_once++, foreach_broken = 0) - -#define foreach_impl(...) foreach_decl(__VA_ARGS__, foreach3(__VA_ARGS__), foreach2(__VA_ARGS__), foreach_too_few_arguments) -#define foreach_decl(_1, _2, _3, N, ...) N -#define foreach(...) foreach_impl(__VA_ARGS__) - -#endif diff --git a/snesshader/Curvature.OpenGL.shader b/snesshader/Curvature.OpenGL.shader index 1667d9c4..2a7083a5 100755 --- a/snesshader/Curvature.OpenGL.shader +++ b/snesshader/Curvature.OpenGL.shader @@ -1,19 +1,22 @@ -shader language=GLSL - fragment~ filter=linear - uniform sampler2D rubyTexture; - uniform vec2 rubyInputSize; - uniform vec2 rubyTextureSize; - - #define distortion 0.2 - - vec2 barrelDistortion(vec2 coord) { - vec2 cc = coord - 0.5; - float dist = dot(cc, cc); - return coord + cc * (dist + distortion * dist * dist) * distortion; - } - - void main(void) { - vec2 coord = barrelDistortion (gl_TexCoord[0] * rubyTextureSize / rubyInputSize) * rubyInputSize / rubyTextureSize; - - gl_FragColor = texture2D(rubyTexture, coord); - } + + + + diff --git a/snesshader/HQ2x.OpenGL.shader b/snesshader/HQ2x.OpenGL.shader index 057eb9d3..ef507728 100755 --- a/snesshader/HQ2x.OpenGL.shader +++ b/snesshader/HQ2x.OpenGL.shader @@ -1,69 +1,73 @@ -shader language=GLSL - vertex~ - uniform vec2 rubyTextureSize; - - void main() { - float x = 0.5 * (1.0 / rubyTextureSize.x); - float y = 0.5 * (1.0 / rubyTextureSize.y); - vec2 dg1 = vec2( x, y); - vec2 dg2 = vec2(-x, y); - vec2 dx = vec2(x, 0.0); - vec2 dy = vec2(0.0, y); - - gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex; - gl_TexCoord[0] = gl_MultiTexCoord0; - gl_TexCoord[1].xy = gl_TexCoord[0].xy - dg1; - gl_TexCoord[1].zw = gl_TexCoord[0].xy - dy; - gl_TexCoord[2].xy = gl_TexCoord[0].xy - dg2; - gl_TexCoord[2].zw = gl_TexCoord[0].xy + dx; - gl_TexCoord[3].xy = gl_TexCoord[0].xy + dg1; - gl_TexCoord[3].zw = gl_TexCoord[0].xy + dy; - gl_TexCoord[4].xy = gl_TexCoord[0].xy + dg2; - gl_TexCoord[4].zw = gl_TexCoord[0].xy - dx; - } + + + + + + diff --git a/snesshader/Pixellate.OpenGL.shader b/snesshader/Pixellate.OpenGL.shader index 0ebe432d..4ddcae18 100755 --- a/snesshader/Pixellate.OpenGL.shader +++ b/snesshader/Pixellate.OpenGL.shader @@ -1,40 +1,44 @@ -shader language=GLSL - vertex~ - void main() { - gl_Position = ftransform(); - gl_TexCoord[0] = gl_MultiTexCoord0; - } + + + - fragment~ filter=nearest - uniform sampler2D rubyTexture; - uniform vec2 rubyTextureSize; - - void main() { - vec2 texelSize = 1.0 / rubyTextureSize; - - vec2 range; - range.x = dFdx(gl_TexCoord[0].x) / 2.0 * 0.99; - range.y = dFdy(gl_TexCoord[0].y) / 2.0 * 0.99; - - float left = gl_TexCoord[0].x - range.x; - float top = gl_TexCoord[0].y + range.y; - float right = gl_TexCoord[0].x + range.x; - float bottom = gl_TexCoord[0].y - range.y; - - vec4 topLeftColor = texture2D(rubyTexture, (floor(vec2(left, top) / texelSize) + 0.5) * texelSize); - vec4 bottomRightColor = texture2D(rubyTexture, (floor(vec2(right, bottom) / texelSize) + 0.5) * texelSize); - vec4 bottomLeftColor = texture2D(rubyTexture, (floor(vec2(left, bottom) / texelSize) + 0.5) * texelSize); - vec4 topRightColor = texture2D(rubyTexture, (floor(vec2(right, top) / texelSize) + 0.5) * texelSize); - - vec2 border = clamp(round(gl_TexCoord[0] / texelSize) * texelSize, vec2(left, bottom), vec2(right, top)); - - float totalArea = 4.0 * range.x * range.y; - - vec4 averageColor; - averageColor = ((border.x - left) * (top - border.y) / totalArea) * topLeftColor; - averageColor += ((right - border.x) * (border.y - bottom) / totalArea) * bottomRightColor; - averageColor += ((border.x - left) * (border.y - bottom) / totalArea) * bottomLeftColor; - averageColor += ((right - border.x) * (top - border.y) / totalArea) * topRightColor; - - gl_FragColor = averageColor; - } + + diff --git a/snesshader/Scale2x.OpenGL.shader b/snesshader/Scale2x.OpenGL.shader index b81cc11a..cfe0e689 100755 --- a/snesshader/Scale2x.OpenGL.shader +++ b/snesshader/Scale2x.OpenGL.shader @@ -1,51 +1,55 @@ -shader language=GLSL - vertex~ - uniform vec2 rubyTextureSize; - - void main() { - vec4 offsetx; - vec4 offsety; - - gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex; - - offsetx.x = 1.0 / rubyTextureSize.x; - offsetx.y = 0.0; - offsetx.w = 0.0; - offsetx.z = 0.0; - offsety.y = 1.0 / rubyTextureSize.y; - offsety.x = 0.0; - offsety.w = 0.0; - offsety.z = 0.0; - - gl_TexCoord[0] = gl_MultiTexCoord0; //center - gl_TexCoord[1] = gl_TexCoord[0] - offsetx; //left - gl_TexCoord[2] = gl_TexCoord[0] + offsetx; //right - gl_TexCoord[3] = gl_TexCoord[0] - offsety; //top - gl_TexCoord[4] = gl_TexCoord[0] + offsety; //bottom - } + + + = 0.5) { tmp = colB; colB = colH; colH = tmp; } //E1 (or E3): swap B and H - if(sel.x >= 0.5) { tmp = colF; colF = colD; colD = tmp; } //E2 (or E3): swap D and F - - if(colB == colD && colB != colF && colD != colH) { //do the Scale2x rule - col = colD; - } + void main() { + vec4 offsetx; + vec4 offsety; - gl_FragColor = col; - } + gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex; + + offsetx.x = 1.0 / rubyTextureSize.x; + offsetx.y = 0.0; + offsetx.w = 0.0; + offsetx.z = 0.0; + offsety.y = 1.0 / rubyTextureSize.y; + offsety.x = 0.0; + offsety.w = 0.0; + offsety.z = 0.0; + + gl_TexCoord[0] = gl_MultiTexCoord0; //center + gl_TexCoord[1] = gl_TexCoord[0] - offsetx; //left + gl_TexCoord[2] = gl_TexCoord[0] + offsetx; //right + gl_TexCoord[3] = gl_TexCoord[0] - offsety; //top + gl_TexCoord[4] = gl_TexCoord[0] + offsety; //bottom + } + ]]> + + = 0.5) { tmp = colB; colB = colH; colH = tmp; } //E1 (or E3): swap B and H + if(sel.x >= 0.5) { tmp = colF; colF = colD; colD = tmp; } //E2 (or E3): swap D and F + + if(colB == colD && colB != colF && colD != colH) { //do the Scale2x rule + col = colD; + } + + gl_FragColor = col; + } + ]]> + diff --git a/snesshader/Sepia.Direct3D.shader b/snesshader/Sepia.Direct3D.shader index efcf2478..1fa725e2 100755 --- a/snesshader/Sepia.Direct3D.shader +++ b/snesshader/Sepia.Direct3D.shader @@ -1,26 +1,30 @@ -shader~ language=HLSL - texture rubyTexture; - - float4 vec; - - sampler s0 = sampler_state { texture = ; }; - float3 LightColor = { 1.0, 0.7, 0.5 }; - float3 DarkColor = { 0.2, 0.05, 0.0 }; - - float4 DiffColorPass(in float2 Tex : TEXCOORD0) : COLOR0 - { - vec.x = 0.5; - vec.y = 1.0; - float3 scnColor = LightColor * tex2D(s0, Tex).xyz; - float3 grayXfer = float3(0.3, 0.59, 0.11); - float gray = dot(grayXfer, scnColor); - float3 muted = lerp(scnColor, gray.xxx, vec.x); - float3 sepia = lerp(DarkColor, LightColor, gray); - float3 result = lerp(muted, sepia, vec.y); - return float4(result, 1); - } - - Technique T0 - { - pass p0 { PixelShader = compile ps_2_0 DiffColorPass(); } - } + + + ; }; + float3 LightColor = { 1.0, 0.7, 0.5 }; + float3 DarkColor = { 0.2, 0.05, 0.0 }; + + float4 DiffColorPass(in float2 Tex : TEXCOORD0) : COLOR0 + { + vec.x = 0.5; + vec.y = 1.0; + float3 scnColor = LightColor * tex2D(s0, Tex).xyz; + float3 grayXfer = float3(0.3, 0.59, 0.11); + float gray = dot(grayXfer, scnColor); + float3 muted = lerp(scnColor, gray.xxx, vec.x); + float3 sepia = lerp(DarkColor, LightColor, gray); + float3 result = lerp(muted, sepia, vec.y); + return float4(result, 1); + } + + Technique T0 + { + pass p0 { PixelShader = compile ps_2_0 DiffColorPass(); } + } + ]]> +