fixed antialiasing bug, fixed missing villager sounds
This commit is contained in:
parent
f38182adf3
commit
dc97f37feb
Binary file not shown.
11901
javascript/classes.js
11901
javascript/classes.js
File diff suppressed because it is too large
Load Diff
BIN
lwjgl-rundir/resources/sounds/mob/villager/default1.mp3
Normal file
BIN
lwjgl-rundir/resources/sounds/mob/villager/default1.mp3
Normal file
Binary file not shown.
BIN
lwjgl-rundir/resources/sounds/mob/villager/default2.mp3
Normal file
BIN
lwjgl-rundir/resources/sounds/mob/villager/default2.mp3
Normal file
Binary file not shown.
BIN
lwjgl-rundir/resources/sounds/mob/villager/default3.mp3
Normal file
BIN
lwjgl-rundir/resources/sounds/mob/villager/default3.mp3
Normal file
Binary file not shown.
BIN
lwjgl-rundir/resources/sounds/mob/villager/defaultdeath.mp3
Normal file
BIN
lwjgl-rundir/resources/sounds/mob/villager/defaultdeath.mp3
Normal file
Binary file not shown.
BIN
lwjgl-rundir/resources/sounds/mob/villager/defaulthurt1.mp3
Normal file
BIN
lwjgl-rundir/resources/sounds/mob/villager/defaulthurt1.mp3
Normal file
Binary file not shown.
BIN
lwjgl-rundir/resources/sounds/mob/villager/defaulthurt2.mp3
Normal file
BIN
lwjgl-rundir/resources/sounds/mob/villager/defaulthurt2.mp3
Normal file
Binary file not shown.
BIN
lwjgl-rundir/resources/sounds/mob/villager/defaulthurt3.mp3
Normal file
BIN
lwjgl-rundir/resources/sounds/mob/villager/defaulthurt3.mp3
Normal file
Binary file not shown.
BIN
lwjgl-rundir/resources/sounds/mob/villager/defaulthurt4.mp3
Normal file
BIN
lwjgl-rundir/resources/sounds/mob/villager/defaulthurt4.mp3
Normal file
Binary file not shown.
Binary file not shown.
|
@ -92,9 +92,10 @@ public class EffectPipelineFXAA {
|
||||||
|
|
||||||
fxaaScreenSize = _wglGetUniformLocation(fxaaProgram, "screenSize");
|
fxaaScreenSize = _wglGetUniformLocation(fxaaProgram, "screenSize");
|
||||||
}
|
}
|
||||||
isUsingFXAA = true;
|
|
||||||
|
|
||||||
destroy();
|
destroy();
|
||||||
|
|
||||||
|
isUsingFXAA = true;
|
||||||
framebuffer = _wglCreateFramebuffer();
|
framebuffer = _wglCreateFramebuffer();
|
||||||
fxaaSourceTexture = _wglGenTextures();
|
fxaaSourceTexture = _wglGenTextures();
|
||||||
|
|
||||||
|
@ -116,9 +117,8 @@ public class EffectPipelineFXAA {
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void initMSAA() {
|
private static void initMSAA() {
|
||||||
msaaInit = true;
|
|
||||||
isUsingFXAA = false;
|
|
||||||
destroy();
|
destroy();
|
||||||
|
msaaInit = true;
|
||||||
framebuffer = _wglCreateFramebuffer();
|
framebuffer = _wglCreateFramebuffer();
|
||||||
framebuffer_color = _wglCreateRenderBuffer();
|
framebuffer_color = _wglCreateRenderBuffer();
|
||||||
framebuffer_depth = _wglCreateRenderBuffer();
|
framebuffer_depth = _wglCreateRenderBuffer();
|
||||||
|
@ -129,10 +129,11 @@ public class EffectPipelineFXAA {
|
||||||
_wglRenderbufferStorageMultisample(state == 2 ? 4 : 8, _wGL_DEPTH_COMPONENT32F, width, height);
|
_wglRenderbufferStorageMultisample(state == 2 ? 4 : 8, _wGL_DEPTH_COMPONENT32F, width, height);
|
||||||
_wglFramebufferRenderbuffer(_wGL_COLOR_ATTACHMENT0, framebuffer_color);
|
_wglFramebufferRenderbuffer(_wGL_COLOR_ATTACHMENT0, framebuffer_color);
|
||||||
_wglFramebufferRenderbuffer(_wGL_DEPTH_ATTACHMENT, framebuffer_depth);
|
_wglFramebufferRenderbuffer(_wGL_DEPTH_ATTACHMENT, framebuffer_depth);
|
||||||
_wglBindFramebuffer(_wGL_FRAMEBUFFER, null);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void destroy() {
|
public static void destroy() {
|
||||||
|
isUsingFXAA = false;
|
||||||
|
msaaInit = false;
|
||||||
if(framebuffer != null) _wglDeleteFramebuffer(framebuffer);
|
if(framebuffer != null) _wglDeleteFramebuffer(framebuffer);
|
||||||
if(framebuffer_color != null) _wglDeleteRenderbuffer(framebuffer_color);
|
if(framebuffer_color != null) _wglDeleteRenderbuffer(framebuffer_color);
|
||||||
if(framebuffer_depth != null) _wglDeleteRenderbuffer(framebuffer_depth);
|
if(framebuffer_depth != null) _wglDeleteRenderbuffer(framebuffer_depth);
|
||||||
|
@ -144,7 +145,7 @@ public class EffectPipelineFXAA {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void beginPipelineRender() {
|
public static void beginPipelineRender() {
|
||||||
if(width == -1 || displayWidth == -1 || height == -1 || displayHeight == -1) {
|
if(displayWidth <= 0 || displayHeight <= 0) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
int mode = Minecraft.getMinecraft().gameSettings.antialiasMode;
|
int mode = Minecraft.getMinecraft().gameSettings.antialiasMode;
|
||||||
|
@ -153,19 +154,25 @@ public class EffectPipelineFXAA {
|
||||||
if(mode == 2) newState = 1;
|
if(mode == 2) newState = 1;
|
||||||
if(mode == 3) newState = 2;
|
if(mode == 3) newState = 2;
|
||||||
if(mode == 4) newState = 3;
|
if(mode == 4) newState = 3;
|
||||||
if(state != newState) {
|
if(newState == 0) {
|
||||||
state = newState;
|
state = newState;
|
||||||
if(state == 0) {
|
destroy();
|
||||||
destroy();
|
return;
|
||||||
}
|
}
|
||||||
|
if(newState != state && !(newState == 3 && state == 2)) {
|
||||||
|
destroy();
|
||||||
}
|
}
|
||||||
if(state == 0) return;
|
|
||||||
//_wglGetParameter(_wGL_VIEWPORT, 4, originalViewport);
|
//_wglGetParameter(_wGL_VIEWPORT, 4, originalViewport);
|
||||||
if (displayWidth != width || displayHeight != height) {
|
if (displayWidth != width || displayHeight != height || state != newState) {
|
||||||
|
state = newState;
|
||||||
width = displayWidth;
|
width = displayWidth;
|
||||||
height = displayHeight;
|
height = displayHeight;
|
||||||
|
originalViewport[0] = 0;
|
||||||
|
originalViewport[1] = 0;
|
||||||
|
originalViewport[2] = width;
|
||||||
|
originalViewport[3] = height;
|
||||||
if(state == 1) {
|
if(state == 1) {
|
||||||
if(isUsingFXAA == false || fxaaProgram == null) {
|
if(isUsingFXAA == false) {
|
||||||
initFXAA();
|
initFXAA();
|
||||||
}else {
|
}else {
|
||||||
_wglBindTexture(_wGL_TEXTURE_2D, fxaaSourceTexture);
|
_wglBindTexture(_wGL_TEXTURE_2D, fxaaSourceTexture);
|
||||||
|
@ -174,7 +181,7 @@ public class EffectPipelineFXAA {
|
||||||
_wglRenderbufferStorage(_wGL_DEPTH_COMPONENT32F, width, height);
|
_wglRenderbufferStorage(_wGL_DEPTH_COMPONENT32F, width, height);
|
||||||
}
|
}
|
||||||
}else if(state == 2 || state == 3) {
|
}else if(state == 2 || state == 3) {
|
||||||
if(isUsingFXAA == true || msaaInit == false) {
|
if(msaaInit == false) {
|
||||||
initMSAA();
|
initMSAA();
|
||||||
}else {
|
}else {
|
||||||
_wglBindRenderbuffer(framebuffer_color);
|
_wglBindRenderbuffer(framebuffer_color);
|
||||||
|
@ -193,10 +200,9 @@ public class EffectPipelineFXAA {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void endPipelineRender() {
|
public static void endPipelineRender() {
|
||||||
if(width == -1 || displayWidth == -1 || height == -1 || displayHeight == -1) {
|
if(displayWidth <= 0 || displayHeight <= 0 || state == 0) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if(state == 0) return;
|
|
||||||
_wglBindFramebuffer(_wGL_FRAMEBUFFER, null);
|
_wglBindFramebuffer(_wGL_FRAMEBUFFER, null);
|
||||||
_wglClear(_wGL_COLOR_BUFFER_BIT | _wGL_DEPTH_BUFFER_BIT);
|
_wglClear(_wGL_COLOR_BUFFER_BIT | _wGL_DEPTH_BUFFER_BIT);
|
||||||
if(state == 1) {
|
if(state == 1) {
|
||||||
|
|
|
@ -226,7 +226,6 @@ public class SoundManager {
|
||||||
soundevents.add(new EntitySoundEvent(par2Entity, id = EaglerAdapter.beginPlayback(path, 0f, 0f, 0f, v, par4)));
|
soundevents.add(new EntitySoundEvent(par2Entity, id = EaglerAdapter.beginPlayback(path, 0f, 0f, 0f, v, par4)));
|
||||||
EaglerAdapter.moveSound(id, (float)par2Entity.posX, (float)par2Entity.posY, (float)par2Entity.posZ, (float)par2Entity.motionX, (float)par2Entity.motionY, (float)par2Entity.motionZ);
|
EaglerAdapter.moveSound(id, (float)par2Entity.posX, (float)par2Entity.posY, (float)par2Entity.posZ, (float)par2Entity.motionX, (float)par2Entity.motionY, (float)par2Entity.motionZ);
|
||||||
}else {
|
}else {
|
||||||
if(par1Str.contains("mob.villager")) Minecraft.getMinecraft().displayEaglercraftText("the villager sound effects got lost");
|
|
||||||
System.err.println("unregistered sound effect: "+par1Str);
|
System.err.println("unregistered sound effect: "+par1Str);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -250,10 +249,6 @@ public class SoundManager {
|
||||||
}
|
}
|
||||||
EaglerAdapter.beginPlayback(path, par2, par3, par4, v, par6);
|
EaglerAdapter.beginPlayback(path, par2, par3, par4, v, par6);
|
||||||
}else {
|
}else {
|
||||||
if(par1Str.contains("mob.villager")) {
|
|
||||||
Minecraft.getMinecraft().displayEaglercraftText("the villager sound effects got lost");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
System.err.println("unregistered sound effect: "+par1Str);
|
System.err.println("unregistered sound effect: "+par1Str);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user