mirror of
https://github.com/Athena-Operations/Athena-Client.git
synced 2024-11-10 04:01:32 +01:00
updated menu design
This commit is contained in:
parent
888fc3257c
commit
a0fc9c3f8c
@ -109,7 +109,7 @@ public class MenuLabel extends MenuComponent {
|
|||||||
int x = this.getRenderX();
|
int x = this.getRenderX();
|
||||||
int y = this.getRenderY();
|
int y = this.getRenderY();
|
||||||
|
|
||||||
drawText(text, x, y, getColor(DrawType.TEXT, lastState));
|
drawText(text, x, y, getColor(DrawType.TEXT, lastState)); // TEXT BOOLEAN SETTING
|
||||||
drawTooltip();
|
drawTooltip();
|
||||||
|
|
||||||
mouseDown = false;
|
mouseDown = false;
|
||||||
|
@ -63,7 +63,7 @@ public class IngameMenu extends MinecraftMenuImpl implements DrawImpl {
|
|||||||
int y = 58 / 2 + 2;
|
int y = 58 / 2 + 2;
|
||||||
|
|
||||||
for(Category category : Category.values()) {
|
for(Category category : Category.values()) {
|
||||||
MenuButton comp = new CategoryButton(category, x, y - (int) Minecraft.getMinecraft().fontRendererObj.FONT_HEIGHT / 2) {
|
MenuButton comp = new CategoryButton(category, x + 50, y - (int) Minecraft.getMinecraft().fontRendererObj.FONT_HEIGHT / 2) {
|
||||||
@Override
|
@Override
|
||||||
public void onAction() {
|
public void onAction() {
|
||||||
if(IngameMenu.category != null) {
|
if(IngameMenu.category != null) {
|
||||||
@ -89,7 +89,7 @@ public class IngameMenu extends MinecraftMenuImpl implements DrawImpl {
|
|||||||
|
|
||||||
menu.addComponent(comp);
|
menu.addComponent(comp);
|
||||||
|
|
||||||
x += Minecraft.getMinecraft().fontRendererObj.getStringWidth(category.getName()) + 20;
|
x += FontManager.baloo17.getStringWidth(category.getName()) + 20;
|
||||||
}
|
}
|
||||||
|
|
||||||
initPage();
|
initPage();
|
||||||
@ -119,7 +119,7 @@ public class IngameMenu extends MinecraftMenuImpl implements DrawImpl {
|
|||||||
|
|
||||||
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(menu.getX(), menu.getY(), menu.getWidth(), 58, MENU_TOP_BG_COLOR);
|
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(menu.getX(), menu.getY(), menu.getWidth(), 58, MENU_TOP_BG_COLOR);
|
||||||
|
|
||||||
FontManager.font1.drawString(Athena.INSTANCE.getClientName().toUpperCase(), menu.getX() + 30, menu.getY() + 17, MENU_HEADER_TEXT_COLOR);
|
FontManager.font1.drawString(Athena.INSTANCE.getClientName().toUpperCase(), menu.getX() + 70, menu.getY() + 20, MENU_HEADER_TEXT_COLOR);
|
||||||
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(menu.getX(), menu.getY() + 58, menu.getWidth(), menu.getHeight() - 58, MENU_PANE_BG_COLOR);
|
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(menu.getX(), menu.getY() + 58, menu.getWidth(), menu.getHeight() - 58, MENU_PANE_BG_COLOR);
|
||||||
|
|
||||||
drawShadowDown(menu.getX(), menu.getY() + 58, menu.getWidth());
|
drawShadowDown(menu.getX(), menu.getY() + 58, menu.getWidth());
|
||||||
|
@ -2,6 +2,7 @@ package rip.athena.client.gui.hud.components.cosmetics;
|
|||||||
|
|
||||||
|
|
||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.Minecraft;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
import rip.athena.client.gui.framework.draw.ButtonState;
|
import rip.athena.client.gui.framework.draw.ButtonState;
|
||||||
import rip.athena.client.gui.framework.draw.DrawType;
|
import rip.athena.client.gui.framework.draw.DrawType;
|
||||||
import rip.athena.client.utils.render.DrawUtils;
|
import rip.athena.client.utils.render.DrawUtils;
|
||||||
@ -59,7 +60,7 @@ public class CosmeticRainbowButton extends CosmeticGenericButton {
|
|||||||
drawShadowDown(x, y + height + 1, width + 1);
|
drawShadowDown(x, y + height + 1, width + 1);
|
||||||
drawShadowRight(x + width + 1, y, height + 1);
|
drawShadowRight(x + width + 1, y, height + 1);
|
||||||
|
|
||||||
Minecraft.getMinecraft().fontRendererObj.drawString(text, x + (width / 2 - getStringWidth(text) / 2), y + (height / 2 - getStringHeight(text) / 2), -1);
|
FontManager.baloo17.drawString(text, x + (width / 2 - getStringWidth(text) / 2), y + (height / 2 - getStringHeight(text) / 2), -1);
|
||||||
|
|
||||||
mouseDown = false;
|
mouseDown = false;
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package rip.athena.client.gui.hud.components.macros;
|
package rip.athena.client.gui.hud.components.macros;
|
||||||
|
|
||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.Minecraft;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
import rip.athena.client.gui.framework.components.MenuButton;
|
import rip.athena.client.gui.framework.components.MenuButton;
|
||||||
import rip.athena.client.gui.framework.draw.ButtonState;
|
import rip.athena.client.gui.framework.draw.ButtonState;
|
||||||
import rip.athena.client.gui.framework.draw.DrawType;
|
import rip.athena.client.gui.framework.draw.DrawType;
|
||||||
@ -66,17 +67,17 @@ public class MacroButton extends MenuButton {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void drawText(String string, int x, int y, int color) {
|
public void drawText(String string, int x, int y, int color) {
|
||||||
Minecraft.getMinecraft().fontRendererObj.drawString(string, x, y, color);
|
FontManager.baloo17.drawString(string, x, y, color);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getStringWidth(String string) {
|
public int getStringWidth(String string) {
|
||||||
return Minecraft.getMinecraft().fontRendererObj.getStringWidth(string);
|
return (int) FontManager.baloo17.getStringWidth(string);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getStringHeight(String string) {
|
public int getStringHeight(String string) {
|
||||||
return Minecraft.getMinecraft().fontRendererObj.FONT_HEIGHT;
|
return (int) FontManager.baloo17.getHeight(string);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setApprove(boolean approve) {
|
public void setApprove(boolean approve) {
|
||||||
|
@ -2,6 +2,8 @@ package rip.athena.client.gui.hud.components.macros;
|
|||||||
|
|
||||||
|
|
||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.Minecraft;
|
||||||
|
import net.minecraft.client.renderer.GlStateManager;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
import rip.athena.client.gui.framework.TextPattern;
|
import rip.athena.client.gui.framework.TextPattern;
|
||||||
import rip.athena.client.gui.framework.draw.ButtonState;
|
import rip.athena.client.gui.framework.draw.ButtonState;
|
||||||
import rip.athena.client.gui.framework.draw.DrawType;
|
import rip.athena.client.gui.framework.draw.DrawType;
|
||||||
@ -64,6 +66,8 @@ public class MacroTextfield extends SearchTextfield {
|
|||||||
|
|
||||||
int textColorDisabled = getColor(DrawType.TEXT, ButtonState.DISABLED);
|
int textColorDisabled = getColor(DrawType.TEXT, ButtonState.DISABLED);
|
||||||
|
|
||||||
|
GlStateManager.color(1, 1, 1);
|
||||||
|
|
||||||
DrawUtils.drawRoundedRect(x - 4, y - 4, x + width + 5, y + height + 5, 0, 83886080);
|
DrawUtils.drawRoundedRect(x - 4, y - 4, x + width + 5, y + height + 5, 0, 83886080);
|
||||||
DrawUtils.drawRoundedRect(x - 3, y - 3, x + width + 4, y + height + 4, 0, 369098752);
|
DrawUtils.drawRoundedRect(x - 3, y - 3, x + width + 4, y + height + 4, 0, 369098752);
|
||||||
DrawUtils.drawRoundedRect(x - 2, y - 2, x + width + 3, y + height + 3, 0, 587202560);
|
DrawUtils.drawRoundedRect(x - 2, y - 2, x + width + 3, y + height + 3, 0, 587202560);
|
||||||
@ -92,17 +96,18 @@ public class MacroTextfield extends SearchTextfield {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int labelWidth = (int)Minecraft.getMinecraft().fontRendererObj.getStringWidth(textToDraw + 1);
|
int labelWidth = (int)FontManager.baloo17.getStringWidth(textToDraw + 1);
|
||||||
int comp = 0;
|
int comp = 0;
|
||||||
int toRender = index;
|
int toRender = index;
|
||||||
while(labelWidth >= width + textPadding * 2) {
|
while(labelWidth >= width + textPadding * 2) {
|
||||||
if(comp < index){
|
if(comp < index){
|
||||||
textToDraw = textToDraw.substring(1);
|
textToDraw = textToDraw.substring(1);
|
||||||
labelWidth = (int)Minecraft.getMinecraft().fontRendererObj.getStringWidth(textToDraw + 1);
|
|
||||||
|
labelWidth = (int)FontManager.baloo17.getStringWidth(textToDraw + 1);
|
||||||
toRender--;
|
toRender--;
|
||||||
} else if(comp > index){
|
} else if(comp > index){
|
||||||
textToDraw = textToDraw.substring(0, textToDraw.length() - 1);
|
textToDraw = textToDraw.substring(0, textToDraw.length() - 1);
|
||||||
labelWidth = (int)Minecraft.getMinecraft().fontRendererObj.getStringWidth(textToDraw + 1);
|
labelWidth = (int)FontManager.baloo17.getStringWidth(textToDraw + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
comp++;
|
comp++;
|
||||||
@ -117,9 +122,9 @@ public class MacroTextfield extends SearchTextfield {
|
|||||||
toRender = 0;
|
toRender = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int textHeight = (int)Minecraft.getMinecraft().fontRendererObj.FONT_HEIGHT;
|
int textHeight = (int)FontManager.baloo17.FONT_HEIGHT;
|
||||||
|
|
||||||
drawVerticalLine(x + (int)Minecraft.getMinecraft().fontRendererObj.getStringWidth(textToDraw.substring(0, toRender)) + 1, y + height / 2 - textHeight / 2, textHeight, 1, textColor);
|
drawVerticalLine(x + (int)FontManager.baloo17.getStringWidth(textToDraw.substring(0, toRender)) + 4, y + height / 2 - textHeight / 2, textHeight, 1, textColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
int renderIndex = comp;
|
int renderIndex = comp;
|
||||||
@ -133,7 +138,7 @@ public class MacroTextfield extends SearchTextfield {
|
|||||||
|
|
||||||
if(textToDraw.isEmpty() && !isFocused()) {
|
if(textToDraw.isEmpty() && !isFocused()) {
|
||||||
textToDraw = placeholderText;
|
textToDraw = placeholderText;
|
||||||
xAdd = width / 2 - Minecraft.getMinecraft().fontRendererObj.getStringWidth(placeholderText) / 2;
|
xAdd = (int) (width / 2 - FontManager.baloo17.getStringWidth(placeholderText) / 2);
|
||||||
textColor = PLACEHOLDER_COLOR.getRGB();
|
textColor = PLACEHOLDER_COLOR.getRGB();
|
||||||
|
|
||||||
if(textToDraw.length() == 3) {
|
if(textToDraw.length() == 3) {
|
||||||
@ -141,7 +146,7 @@ public class MacroTextfield extends SearchTextfield {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Minecraft.getMinecraft().fontRendererObj.drawString(textToDraw, x + xAdd, y + height / 2 - (int)Minecraft.getMinecraft().fontRendererObj.FONT_HEIGHT / 2, textColor);
|
FontManager.baloo17.drawString(textToDraw, x + xAdd, y + height / 2 - (float) (int) FontManager.baloo17.getHeight(textToDraw) / 2, textColor);
|
||||||
|
|
||||||
if(lastState == ButtonState.HOVER && mouseDown) {
|
if(lastState == ButtonState.HOVER && mouseDown) {
|
||||||
focused = true;
|
focused = true;
|
||||||
@ -169,7 +174,7 @@ public class MacroTextfield extends SearchTextfield {
|
|||||||
bestIndex = i;
|
bestIndex = i;
|
||||||
}
|
}
|
||||||
|
|
||||||
position += (int)Minecraft.getMinecraft().fontRendererObj.getStringWidth(text.charAt(i) + "");
|
position += (int)FontManager.baloo17.getStringWidth(text.charAt(i) + "");
|
||||||
}
|
}
|
||||||
|
|
||||||
if(mouseX > position) {
|
if(mouseX > position) {
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package rip.athena.client.gui.hud.components.mods;
|
package rip.athena.client.gui.hud.components.mods;
|
||||||
|
|
||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.Minecraft;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
import rip.athena.client.gui.framework.components.MenuButton;
|
import rip.athena.client.gui.framework.components.MenuButton;
|
||||||
import rip.athena.client.gui.framework.draw.ButtonState;
|
import rip.athena.client.gui.framework.draw.ButtonState;
|
||||||
import rip.athena.client.gui.framework.draw.DrawType;
|
import rip.athena.client.gui.framework.draw.DrawType;
|
||||||
@ -34,7 +35,7 @@ public class CategoryButton extends MenuButton {
|
|||||||
int backgroundColor = getColor(DrawType.BACKGROUND, lastState);
|
int backgroundColor = getColor(DrawType.BACKGROUND, lastState);
|
||||||
int textColor = getColor(DrawType.TEXT, lastState);
|
int textColor = getColor(DrawType.TEXT, lastState);
|
||||||
|
|
||||||
Minecraft.getMinecraft().fontRendererObj.drawString(text, x + (width / 2 - getStringWidth(text) / 2), y + height / 2 - (getStringHeight(text) / 2) - 3, textColor);
|
FontManager.baloo17.drawString(text, x + (width / 2 - getStringWidth(text) / 2), y + height / 2 - (getStringHeight(text) / 2) - 3, textColor);
|
||||||
|
|
||||||
if(isActive()) {
|
if(isActive()) {
|
||||||
drawHorizontalLine(x + (width / 2 - getStringWidth(text) / 2), y + 29, (int)Minecraft.getMinecraft().fontRendererObj.getStringWidth(text), 2, textColor);
|
drawHorizontalLine(x + (width / 2 - getStringWidth(text) / 2), y + 29, (int)Minecraft.getMinecraft().fontRendererObj.getStringWidth(text), 2, textColor);
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package rip.athena.client.gui.hud.components.mods;
|
package rip.athena.client.gui.hud.components.mods;
|
||||||
|
|
||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.Minecraft;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
import rip.athena.client.gui.framework.components.MenuLabel;
|
import rip.athena.client.gui.framework.components.MenuLabel;
|
||||||
import rip.athena.client.gui.framework.draw.ButtonState;
|
import rip.athena.client.gui.framework.draw.ButtonState;
|
||||||
import rip.athena.client.gui.framework.draw.DrawType;
|
import rip.athena.client.gui.framework.draw.DrawType;
|
||||||
@ -28,16 +29,16 @@ public class FeatureText extends MenuLabel {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void drawText(String text, int x, int y, int color) {
|
public void drawText(String text, int x, int y, int color) {
|
||||||
Minecraft.getMinecraft().fontRendererObj.drawString(text, x, y, color);
|
FontManager.baloo17.drawString(text, x, y, color);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getStringWidth(String text) {
|
public int getStringWidth(String text) {
|
||||||
return Minecraft.getMinecraft().fontRendererObj.getStringWidth(text);
|
return (int) FontManager.baloo17.getStringWidth(text);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getStringHeight(String text) {
|
public int getStringHeight(String text) {
|
||||||
return Minecraft.getMinecraft().fontRendererObj.FONT_HEIGHT;
|
return (int) FontManager.baloo17.getHeight(text);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -15,7 +15,6 @@ public class FeatureValueText extends FeatureText {
|
|||||||
super(text, x, y);
|
super(text, x, y);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onInitColors() {
|
public void onInitColors() {
|
||||||
super.onInitColors();
|
super.onInitColors();
|
||||||
|
@ -2,6 +2,7 @@ package rip.athena.client.gui.hud.components.mods;
|
|||||||
|
|
||||||
|
|
||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.Minecraft;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
import rip.athena.client.gui.framework.components.MenuButton;
|
import rip.athena.client.gui.framework.components.MenuButton;
|
||||||
import rip.athena.client.gui.framework.draw.ButtonState;
|
import rip.athena.client.gui.framework.draw.ButtonState;
|
||||||
import rip.athena.client.gui.framework.draw.DrawType;
|
import rip.athena.client.gui.framework.draw.DrawType;
|
||||||
@ -124,7 +125,7 @@ public class GoBackButton extends MenuButton {
|
|||||||
DrawUtils.drawRoundedRect(x, y, x + width + 1, y + height + 1, rounding, lineColor);
|
DrawUtils.drawRoundedRect(x, y, x + width + 1, y + height + 1, rounding, lineColor);
|
||||||
DrawUtils.drawRoundedRect(x + 1, y + 1, x + width, y + height, rounding, backgroundColor);
|
DrawUtils.drawRoundedRect(x + 1, y + 1, x + width, y + height, rounding, backgroundColor);
|
||||||
|
|
||||||
Minecraft.getMinecraft().fontRendererObj.drawString(text, x + (width / 2 - getStringWidth(text) / 2), y + height / 2 - (getStringHeight(text) / 2), textColor);
|
FontManager.baloo17.drawString(text, x + (width / 2 - getStringWidth(text) / 2), y + height / 2 - (getStringHeight(text) / 2), textColor);
|
||||||
|
|
||||||
x -= 20;
|
x -= 20;
|
||||||
width = 30;
|
width = 30;
|
||||||
@ -152,11 +153,11 @@ public class GoBackButton extends MenuButton {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getStringWidth(String string) {
|
public int getStringWidth(String string) {
|
||||||
return Minecraft.getMinecraft().fontRendererObj.getStringWidth(string);
|
return (int) FontManager.baloo17.getStringWidth(string);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getStringHeight(String string) {
|
public int getStringHeight(String string) {
|
||||||
return Minecraft.getMinecraft().fontRendererObj.FONT_HEIGHT;
|
return (int) FontManager.baloo17.FONT_HEIGHT;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
package rip.athena.client.gui.hud.components.mods;
|
package rip.athena.client.gui.hud.components.mods;
|
||||||
|
|
||||||
|
import net.minecraft.client.renderer.GlStateManager;
|
||||||
import rip.athena.client.gui.framework.components.MenuCheckbox;
|
import rip.athena.client.gui.framework.components.MenuCheckbox;
|
||||||
import rip.athena.client.gui.framework.draw.ButtonState;
|
import rip.athena.client.gui.framework.draw.ButtonState;
|
||||||
import rip.athena.client.gui.framework.draw.DrawType;
|
import rip.athena.client.gui.framework.draw.DrawType;
|
||||||
@ -17,9 +18,9 @@ public class MenuModCheckbox extends MenuCheckbox {
|
|||||||
super.onInitColors();
|
super.onInitColors();
|
||||||
|
|
||||||
setColor(DrawType.BACKGROUND, ButtonState.NORMAL, new Color(0, 0, 0, 0));
|
setColor(DrawType.BACKGROUND, ButtonState.NORMAL, new Color(0, 0, 0, 0));
|
||||||
setColor(DrawType.BACKGROUND, ButtonState.ACTIVE, new Color(12, 83, 33, 255));
|
setColor(DrawType.BACKGROUND, ButtonState.ACTIVE, new Color(231, 27, 44, 255));
|
||||||
setColor(DrawType.BACKGROUND, ButtonState.HOVER, new Color(6, 42, 16, 255));
|
setColor(DrawType.BACKGROUND, ButtonState.HOVER, new Color(100, 40, 40, 255));
|
||||||
setColor(DrawType.BACKGROUND, ButtonState.HOVERACTIVE, new Color(18, 126, 48, 255));
|
setColor(DrawType.BACKGROUND, ButtonState.HOVERACTIVE, new Color(239, 46, 90, 255));
|
||||||
|
|
||||||
setColor(DrawType.LINE, ButtonState.NORMAL, new Color(43, 43, 43, 255));
|
setColor(DrawType.LINE, ButtonState.NORMAL, new Color(43, 43, 43, 255));
|
||||||
setColor(DrawType.LINE, ButtonState.ACTIVE, new Color(53, 53, 53, 255));
|
setColor(DrawType.LINE, ButtonState.ACTIVE, new Color(53, 53, 53, 255));
|
||||||
@ -35,12 +36,14 @@ public class MenuModCheckbox extends MenuCheckbox {
|
|||||||
|
|
||||||
int backgroundColor = getColor(DrawType.BACKGROUND, lastState);
|
int backgroundColor = getColor(DrawType.BACKGROUND, lastState);
|
||||||
int lineColor = getColor(DrawType.LINE, lastState);
|
int lineColor = getColor(DrawType.LINE, lastState);
|
||||||
|
GlStateManager.color(1, 1, 1);
|
||||||
|
|
||||||
drawHorizontalLine(x, y, width + 1, 1, lineColor);
|
drawHorizontalLine(x, y, width + 1, 1, lineColor);
|
||||||
drawVerticalLine(x, y + 1, height - 1, 1, lineColor);
|
drawVerticalLine(x, y + 1, height - 1, 1, lineColor);
|
||||||
drawHorizontalLine(x, y + height, width + 1, 1, lineColor);
|
drawHorizontalLine(x, y + height, width + 1, 1, lineColor);
|
||||||
drawVerticalLine(x + width, y + 1, height - 1, 1, lineColor);
|
drawVerticalLine(x + width, y + 1, height - 1, 1, lineColor);
|
||||||
|
|
||||||
|
|
||||||
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(x + 2, y + 2, width - 3, height - 3, lineColor);
|
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(x + 2, y + 2, width - 3, height - 3, lineColor);
|
||||||
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(x + 3, y + 3, width - 5, height - 5, backgroundColor);
|
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(x + 3, y + 3, width - 5, height - 5, backgroundColor);
|
||||||
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
package rip.athena.client.gui.hud.components.mods;
|
package rip.athena.client.gui.hud.components.mods;
|
||||||
|
|
||||||
|
import net.minecraft.client.renderer.GlStateManager;
|
||||||
import rip.athena.client.gui.framework.components.MenuColorPicker;
|
import rip.athena.client.gui.framework.components.MenuColorPicker;
|
||||||
import rip.athena.client.gui.framework.draw.ButtonState;
|
import rip.athena.client.gui.framework.draw.ButtonState;
|
||||||
import rip.athena.client.gui.framework.draw.DrawType;
|
import rip.athena.client.gui.framework.draw.DrawType;
|
||||||
@ -28,6 +29,7 @@ public class MenuModColorPicker extends MenuColorPicker {
|
|||||||
int x = this.getRenderX();
|
int x = this.getRenderX();
|
||||||
int y = this.getRenderY();
|
int y = this.getRenderY();
|
||||||
int lineColor = getColor(DrawType.LINE, lastState);
|
int lineColor = getColor(DrawType.LINE, lastState);
|
||||||
|
GlStateManager.color(1, 1, 1);
|
||||||
|
|
||||||
drawHorizontalLine(x, y, width + 1, 1, lineColor);
|
drawHorizontalLine(x, y, width + 1, 1, lineColor);
|
||||||
drawVerticalLine(x, y + 1, height - 1, 1, lineColor);
|
drawVerticalLine(x, y + 1, height - 1, 1, lineColor);
|
||||||
|
@ -2,6 +2,7 @@ package rip.athena.client.gui.hud.components.mods;
|
|||||||
|
|
||||||
|
|
||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.Minecraft;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
import rip.athena.client.gui.framework.MenuComponent;
|
import rip.athena.client.gui.framework.MenuComponent;
|
||||||
import rip.athena.client.gui.framework.MenuPriority;
|
import rip.athena.client.gui.framework.MenuPriority;
|
||||||
import rip.athena.client.gui.framework.draw.ButtonState;
|
import rip.athena.client.gui.framework.draw.ButtonState;
|
||||||
@ -187,7 +188,7 @@ public class MenuModKeybind extends MenuComponent {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void drawText(String text, int x, int y, int color) {
|
public void drawText(String text, int x, int y, int color) {
|
||||||
Minecraft.getMinecraft().fontRendererObj.drawString(text, x, y, color);
|
FontManager.baloo17.drawString(text, x, y, color);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -2,6 +2,7 @@ package rip.athena.client.gui.hud.components.mods;
|
|||||||
|
|
||||||
|
|
||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.Minecraft;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
import rip.athena.client.gui.framework.MenuPriority;
|
import rip.athena.client.gui.framework.MenuPriority;
|
||||||
import rip.athena.client.gui.framework.components.MenuDropdown;
|
import rip.athena.client.gui.framework.components.MenuDropdown;
|
||||||
import rip.athena.client.gui.framework.draw.ButtonState;
|
import rip.athena.client.gui.framework.draw.ButtonState;
|
||||||
@ -116,8 +117,8 @@ public class MenuModList extends MenuDropdown {
|
|||||||
backgroundColor = defBg;
|
backgroundColor = defBg;
|
||||||
}
|
}
|
||||||
|
|
||||||
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(x, y, cursorWidth, height + 1, popupColor);
|
//rip.athena.client.gui.framework.draw.DrawImpl.drawRect(x, y, cursorWidth, height + 1, popupColor);
|
||||||
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(x + 1, y + 1, cursorWidth - 2, height - 1, backgroundColor);
|
//rip.athena.client.gui.framework.draw.DrawImpl.drawRect(x + 1, y + 1, cursorWidth - 2, height - 1, backgroundColor);
|
||||||
drawText("<", x + 3 + (cursorWidth / 2) - getStringWidth("<") / 2, y + height / 2 - getStringHeight("<") / 2, textColor);
|
drawText("<", x + 3 + (cursorWidth / 2) - getStringWidth("<") / 2, y + height / 2 - getStringHeight("<") / 2, textColor);
|
||||||
|
|
||||||
if(mouseX < x + width - cursorWidth - 1) {
|
if(mouseX < x + width - cursorWidth - 1) {
|
||||||
@ -126,8 +127,8 @@ public class MenuModList extends MenuDropdown {
|
|||||||
backgroundColor = cache;
|
backgroundColor = cache;
|
||||||
}
|
}
|
||||||
|
|
||||||
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(x + width - cursorWidth, y, cursorWidth, height + 1, popupColor);
|
//rip.athena.client.gui.framework.draw.DrawImpl.drawRect(x + width - cursorWidth, y, cursorWidth, height + 1, popupColor);
|
||||||
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(x + width - cursorWidth + 1, y + 1, cursorWidth - 2, height - 1, backgroundColor);
|
//rip.athena.client.gui.framework.draw.DrawImpl.drawRect(x + width - cursorWidth + 1, y + 1, cursorWidth - 2, height - 1, backgroundColor);
|
||||||
drawText(">", x + width - cursorWidth + 3 + (cursorWidth / 2) - getStringWidth(">") / 2, y + height / 2 - getStringHeight(">") / 2, textColor);
|
drawText(">", x + width - cursorWidth + 3 + (cursorWidth / 2) - getStringWidth(">") / 2, y + height / 2 - getStringHeight(">") / 2, textColor);
|
||||||
|
|
||||||
String text = values[index].toUpperCase();
|
String text = values[index].toUpperCase();
|
||||||
@ -138,16 +139,16 @@ public class MenuModList extends MenuDropdown {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void drawText(String text, int x, int y, int color) {
|
public void drawText(String text, int x, int y, int color) {
|
||||||
Minecraft.getMinecraft().fontRendererObj.drawString(text, x, y, color);
|
FontManager.baloo17.drawString(text, x, y, color);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getStringWidth(String string) {
|
public int getStringWidth(String string) {
|
||||||
return Minecraft.getMinecraft().fontRendererObj.getStringWidth(string);
|
return (int) FontManager.baloo17.getStringWidth(string);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getStringHeight(String string) {
|
public int getStringHeight(String string) {
|
||||||
return Minecraft.getMinecraft().fontRendererObj.FONT_HEIGHT;
|
return (int) FontManager.baloo17.FONT_HEIGHT;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@ package rip.athena.client.gui.hud.components.mods;
|
|||||||
|
|
||||||
|
|
||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.Minecraft;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
import rip.athena.client.gui.framework.components.MenuSlider;
|
import rip.athena.client.gui.framework.components.MenuSlider;
|
||||||
import rip.athena.client.gui.framework.draw.ButtonState;
|
import rip.athena.client.gui.framework.draw.ButtonState;
|
||||||
import rip.athena.client.gui.framework.draw.DrawType;
|
import rip.athena.client.gui.framework.draw.DrawType;
|
||||||
@ -129,16 +130,16 @@ public class MenuModSlider extends MenuSlider {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void drawText(String text, int x, int y, int color) {
|
public void drawText(String text, int x, int y, int color) {
|
||||||
Minecraft.getMinecraft().fontRendererObj.drawString(text, x, y, color);
|
FontManager.baloo17.drawString(text, x, y, color);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getStringWidth(String string) {
|
public int getStringWidth(String string) {
|
||||||
return Minecraft.getMinecraft().fontRendererObj.getStringWidth(string);
|
return (int) FontManager.baloo17.getStringWidth(string);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getStringHeight(String string) {
|
public int getStringHeight(String string) {
|
||||||
return Minecraft.getMinecraft().fontRendererObj.FONT_HEIGHT;
|
return (int) FontManager.baloo17.getHeight(string);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@ package rip.athena.client.gui.hud.components.mods;
|
|||||||
|
|
||||||
|
|
||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.Minecraft;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
import rip.athena.client.gui.framework.components.MenuButton;
|
import rip.athena.client.gui.framework.components.MenuButton;
|
||||||
import rip.athena.client.gui.framework.draw.ButtonState;
|
import rip.athena.client.gui.framework.draw.ButtonState;
|
||||||
import rip.athena.client.gui.framework.draw.DrawType;
|
import rip.athena.client.gui.framework.draw.DrawType;
|
||||||
@ -53,10 +54,10 @@ public class ModCategoryButton extends MenuButton {
|
|||||||
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(x + 15, y, width - 35, height, backgroundColor);
|
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(x + 15, y, width - 35, height, backgroundColor);
|
||||||
|
|
||||||
if(image != null) {
|
if(image != null) {
|
||||||
drawImage(image, x + 5, y + (height / 2 - IMAGE_SIZE / 2), IMAGE_SIZE, IMAGE_SIZE);
|
//drawImage(image, x + 5, y + (height / 2 - IMAGE_SIZE / 2), IMAGE_SIZE, IMAGE_SIZE);
|
||||||
Minecraft.getMinecraft().fontRendererObj.drawString(text, x + IMAGE_SIZE + 5 + 5, y + height / 2 - (getStringHeight(text) / 2) - 1, textColor);
|
FontManager.baloo17.drawString(text, x + IMAGE_SIZE + 5 + 5, y + height / 2 - (getStringHeight(text) / 2) - 1, textColor);
|
||||||
} else {
|
} else {
|
||||||
Minecraft.getMinecraft().fontRendererObj.drawString(text, x + (width / 2 - getStringWidth(text) / 2), y + height / 2 - (getStringHeight(text) / 2), textColor);
|
FontManager.baloo17.drawString(text, x + (width / 2 - getStringWidth(text) / 2), y + height / 2 - (getStringHeight(text) / 2), textColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
mouseDown = false;
|
mouseDown = false;
|
||||||
|
@ -2,6 +2,7 @@ package rip.athena.client.gui.hud.components.mods;
|
|||||||
|
|
||||||
|
|
||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.Minecraft;
|
||||||
|
import net.minecraft.client.renderer.GlStateManager;
|
||||||
import rip.athena.client.gui.framework.TextPattern;
|
import rip.athena.client.gui.framework.TextPattern;
|
||||||
import rip.athena.client.gui.framework.components.MenuTextField;
|
import rip.athena.client.gui.framework.components.MenuTextField;
|
||||||
import rip.athena.client.gui.framework.draw.ButtonState;
|
import rip.athena.client.gui.framework.draw.ButtonState;
|
||||||
|
@ -2,6 +2,7 @@ package rip.athena.client.gui.hud.components.mods;
|
|||||||
|
|
||||||
|
|
||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.Minecraft;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
import rip.athena.client.gui.framework.components.MenuButton;
|
import rip.athena.client.gui.framework.components.MenuButton;
|
||||||
import rip.athena.client.gui.framework.draw.ButtonState;
|
import rip.athena.client.gui.framework.draw.ButtonState;
|
||||||
import rip.athena.client.gui.framework.draw.DrawType;
|
import rip.athena.client.gui.framework.draw.DrawType;
|
||||||
@ -105,24 +106,22 @@ public class ModsButton extends MenuButton {
|
|||||||
int lineColor = getColor(DrawType.LINE, lastState);
|
int lineColor = getColor(DrawType.LINE, lastState);
|
||||||
int textColor = getColor(DrawType.TEXT, lastState);
|
int textColor = getColor(DrawType.TEXT, lastState);
|
||||||
|
|
||||||
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(x, y, width, height, backgroundColor);
|
|
||||||
|
|
||||||
drawHorizontalLine(x, y, width + 1, 1, lineColor);
|
drawHorizontalLine(x, y, width + 1, 1, lineColor);
|
||||||
drawVerticalLine(x, y + 1, height - 1, 1, lineColor);
|
drawVerticalLine(x, y + 1, height - 1, 1, lineColor);
|
||||||
drawHorizontalLine(x, y + height, width + 1, 1, lineColor);
|
drawHorizontalLine(x, y + height, width + 1, 1, lineColor);
|
||||||
drawVerticalLine(x + width, y + 1, height - 1, 1, lineColor);
|
drawVerticalLine(x + width, y + 1, height - 1, 1, lineColor);
|
||||||
|
|
||||||
Minecraft.getMinecraft().fontRendererObj.drawString(text, x + (width / 2 - getStringWidth(text) / 2), y + height / 2 - (getStringHeight(text) / 2), textColor);
|
FontManager.baloo17.drawString(text, x + (width / 2 - getStringWidth(text) / 2), y + height / 2 - (getStringHeight(text) / 2), textColor);
|
||||||
mouseDown = false;
|
mouseDown = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getStringWidth(String string) {
|
public int getStringWidth(String string) {
|
||||||
return Minecraft.getMinecraft().fontRendererObj.getStringWidth(string);
|
return (int) FontManager.baloo17.getStringWidth(string);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getStringHeight(String string) {
|
public int getStringHeight(String string) {
|
||||||
return Minecraft.getMinecraft().fontRendererObj.FONT_HEIGHT;
|
return (int) FontManager.baloo17.getHeight(string);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@ package rip.athena.client.gui.hud.components.mods;
|
|||||||
|
|
||||||
|
|
||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.Minecraft;
|
||||||
|
import net.minecraft.client.renderer.GlStateManager;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
import rip.athena.client.gui.framework.MenuComponent;
|
import rip.athena.client.gui.framework.MenuComponent;
|
||||||
import rip.athena.client.gui.framework.draw.ButtonState;
|
import rip.athena.client.gui.framework.draw.ButtonState;
|
||||||
import rip.athena.client.gui.framework.draw.DrawType;
|
import rip.athena.client.gui.framework.draw.DrawType;
|
||||||
@ -47,7 +49,7 @@ public class ModuleBox extends MenuComponent {
|
|||||||
toAdd = " " + toAdd;
|
toAdd = " " + toAdd;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(Minecraft.getMinecraft().fontRendererObj.getStringWidth(curWord.toString() + toAdd) + MIN_SPACING > width) {
|
if(FontManager.baloo17.getStringWidth(curWord.toString() + toAdd) + MIN_SPACING > width) {
|
||||||
lines.add(curWord.toString());
|
lines.add(curWord.toString());
|
||||||
curWord.setLength(0);
|
curWord.setLength(0);
|
||||||
toAdd = word;
|
toAdd = word;
|
||||||
@ -61,7 +63,7 @@ public class ModuleBox extends MenuComponent {
|
|||||||
tHeight = 0;
|
tHeight = 0;
|
||||||
|
|
||||||
for(String line : lines) {
|
for(String line : lines) {
|
||||||
tHeight += Minecraft.getMinecraft().fontRendererObj.FONT_HEIGHT;
|
tHeight += FontManager.baloo17.getHeight(line);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -168,6 +170,7 @@ public class ModuleBox extends MenuComponent {
|
|||||||
|
|
||||||
int defaultColor = getColor(DrawType.BACKGROUND, ButtonState.NORMAL);
|
int defaultColor = getColor(DrawType.BACKGROUND, ButtonState.NORMAL);
|
||||||
int drawColor = defaultColor;
|
int drawColor = defaultColor;
|
||||||
|
GlStateManager.color(1, 1, 1);
|
||||||
|
|
||||||
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(x + 1, y + 1, width - 1, height - 1, defaultColor);
|
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(x + 1, y + 1, width - 1, height - 1, defaultColor);
|
||||||
|
|
||||||
@ -184,8 +187,8 @@ public class ModuleBox extends MenuComponent {
|
|||||||
int yPos = y + (height / 2) - tHeight / 2 - 5;
|
int yPos = y + (height / 2) - tHeight / 2 - 5;
|
||||||
|
|
||||||
for(String line : lines) {
|
for(String line : lines) {
|
||||||
Minecraft.getMinecraft().fontRendererObj.drawString(line, x + width / 2 - Minecraft.getMinecraft().fontRendererObj.getStringWidth(line) / 2, yPos, textColor);
|
FontManager.vision30.drawString(line, x + (float) width / 2 - FontManager.vision30.getStringWidth(line) / 2, yPos, textColor);
|
||||||
yPos += Minecraft.getMinecraft().fontRendererObj.FONT_HEIGHT;
|
yPos += FontManager.vision30.getHeight(line);
|
||||||
}
|
}
|
||||||
|
|
||||||
int mouseX = parent.getMouseX();
|
int mouseX = parent.getMouseX();
|
||||||
@ -197,21 +200,22 @@ public class ModuleBox extends MenuComponent {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
drawShadowUp(x + 10, y + height - 30, width - 20);
|
/*drawShadowUp(x + 10, y + height - 30, width - 20);
|
||||||
drawShadowLeft(x + 10, y + height - 30, 20);
|
drawShadowLeft(x + 10, y + height - 30, 20);
|
||||||
drawShadowDown(x + 10, y + height - 10, width - 20);
|
drawShadowDown(x + 10, y + height - 10, width - 20);
|
||||||
drawShadowRight(x + width - 10, y + height - 30, 20);
|
drawShadowRight(x + width - 10, y + height - 30, 20);*/
|
||||||
|
|
||||||
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(x + 10, y + height - 10 - 20, width - 20, 20, module.isToggled() ? INACTIVE : ACTIVE);
|
drawHorizontalLine(x + 10, y + height - 30, width - 20, 1, new Color(43, 43, 43, 225).getRGB());
|
||||||
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(x + 11, y + height - 10 - 19, width - 22, 18, drawColor);
|
drawVerticalLine(x + 10, y + height - 30, 20, 1, new Color(43, 43, 43, 225).getRGB());
|
||||||
|
drawHorizontalLine(x + 10, y + height - 10, width - 20, 1, new Color(43, 43, 43, 225).getRGB());
|
||||||
|
drawVerticalLine(x + width - 10, y + height - 30, 20, 1, new Color(43, 43, 43, 225).getRGB());
|
||||||
|
|
||||||
|
//rip.athena.client.gui.framework.draw.DrawImpl.drawRect(x + 10, y + height - 10 - 20, width - 20, 20, module.isToggled() ? INACTIVE : ACTIVE);
|
||||||
|
//rip.athena.client.gui.framework.draw.DrawImpl.drawRect(x + 11, y + height - 10 - 19, width - 22, 18, drawColor);
|
||||||
|
|
||||||
String text = module.isToggled() ? "ENABLED" : "DISABLED";
|
String text = module.isToggled() ? "ENABLED" : "DISABLED";
|
||||||
|
|
||||||
GL11.glColor4f(1F, 1F, 1F, 1F);
|
FontManager.baloo17.drawString(text, x + (float) width / 2 - FontManager.baloo17.getStringWidth(text) / 2, y + height - 10 - 15, module.isToggled() ? new Color(0, 200, 0, 255).getRGB() : new Color(200, 0, 0, 225).getRGB());
|
||||||
|
|
||||||
Minecraft.getMinecraft().fontRendererObj.drawString(text, x + 13 + width / 2 - Minecraft.getMinecraft().fontRendererObj.getStringWidth(text) / 2, y + height - 10 - 17, textColor);
|
|
||||||
|
|
||||||
GL11.glColor4f(1F, 1F, 1F, 1F);
|
|
||||||
|
|
||||||
if(!module.getEntries().isEmpty()) {
|
if(!module.getEntries().isEmpty()) {
|
||||||
drawColor = defaultColor;
|
drawColor = defaultColor;
|
||||||
|
@ -2,6 +2,7 @@ package rip.athena.client.gui.hud.components.mods;
|
|||||||
|
|
||||||
|
|
||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.Minecraft;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
import rip.athena.client.gui.framework.TextPattern;
|
import rip.athena.client.gui.framework.TextPattern;
|
||||||
import rip.athena.client.gui.framework.components.MenuTextField;
|
import rip.athena.client.gui.framework.components.MenuTextField;
|
||||||
import rip.athena.client.gui.framework.draw.ButtonState;
|
import rip.athena.client.gui.framework.draw.ButtonState;
|
||||||
@ -82,17 +83,17 @@ public class SearchTextfield extends MenuTextField {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int labelWidth = (int) Minecraft.getMinecraft().fontRendererObj.getStringWidth(textToDraw + 1);
|
int labelWidth = (int) FontManager.baloo17.getStringWidth(textToDraw + 1);
|
||||||
int comp = 0;
|
int comp = 0;
|
||||||
int toRender = index;
|
int toRender = index;
|
||||||
while(labelWidth >= width) {
|
while(labelWidth >= width) {
|
||||||
if(comp < index){
|
if(comp < index){
|
||||||
textToDraw = textToDraw.substring(1);
|
textToDraw = textToDraw.substring(1);
|
||||||
labelWidth = (int)Minecraft.getMinecraft().fontRendererObj.getStringWidth(textToDraw + 1);
|
labelWidth = (int)FontManager.baloo17.getStringWidth(textToDraw + 1);
|
||||||
toRender--;
|
toRender--;
|
||||||
} else if(comp > index){
|
} else if(comp > index){
|
||||||
textToDraw = textToDraw.substring(0, textToDraw.length() - 1);
|
textToDraw = textToDraw.substring(0, textToDraw.length() - 1);
|
||||||
labelWidth = (int)Minecraft.getMinecraft().fontRendererObj.getStringWidth(textToDraw + 1);
|
labelWidth = (int)FontManager.baloo17.getStringWidth(textToDraw + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
comp++;
|
comp++;
|
||||||
@ -107,9 +108,9 @@ public class SearchTextfield extends MenuTextField {
|
|||||||
toRender = 0;
|
toRender = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int textHeight = (int)Minecraft.getMinecraft().fontRendererObj.FONT_HEIGHT;
|
int textHeight = (int)FontManager.baloo17.getHeight(textToDraw);
|
||||||
|
|
||||||
drawVerticalLine(x + 10 + (int)Minecraft.getMinecraft().fontRendererObj.getStringWidth(textToDraw.substring(0, toRender)) + 1, y + height / 2 - textHeight / 2, textHeight, 1, textColor);
|
drawVerticalLine(x + 10 + (int)FontManager.baloo17.getStringWidth(textToDraw.substring(0, toRender)) + 1, y + height / 2 - textHeight / 2, textHeight, 1, textColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
int renderIndex = comp;
|
int renderIndex = comp;
|
||||||
@ -127,7 +128,7 @@ public class SearchTextfield extends MenuTextField {
|
|||||||
textColor = PLACEHOLDER_COLOR.getRGB();
|
textColor = PLACEHOLDER_COLOR.getRGB();
|
||||||
}
|
}
|
||||||
|
|
||||||
Minecraft.getMinecraft().fontRendererObj.drawString(textToDraw, x + 10 + minOffset + xAdd, y + height / 2 - (int)Minecraft.getMinecraft().fontRendererObj.FONT_HEIGHT / 2, textColor);
|
FontManager.baloo17.drawString(textToDraw, x + 10 + minOffset + xAdd, y + (float) height / 2 - (float) (int) FontManager.baloo17.getHeight(textToDraw) / 2, textColor);
|
||||||
|
|
||||||
if(lastState == ButtonState.HOVER && mouseDown) {
|
if(lastState == ButtonState.HOVER && mouseDown) {
|
||||||
focused = true;
|
focused = true;
|
||||||
@ -155,7 +156,7 @@ public class SearchTextfield extends MenuTextField {
|
|||||||
bestIndex = i;
|
bestIndex = i;
|
||||||
}
|
}
|
||||||
|
|
||||||
position += (int)Minecraft.getMinecraft().fontRendererObj.getStringWidth(text.charAt(i) + "");
|
position += (int)FontManager.baloo17.getStringWidth(text.charAt(i) + "");
|
||||||
}
|
}
|
||||||
|
|
||||||
if(mouseX > position) {
|
if(mouseX > position) {
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package rip.athena.client.gui.hud.pages;
|
package rip.athena.client.gui.hud.pages;
|
||||||
|
|
||||||
import rip.athena.client.Athena;
|
import rip.athena.client.Athena;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
import rip.athena.client.gui.framework.Menu;
|
import rip.athena.client.gui.framework.Menu;
|
||||||
import rip.athena.client.gui.framework.MenuComponent;
|
import rip.athena.client.gui.framework.MenuComponent;
|
||||||
import rip.athena.client.gui.hud.IngameMenu;
|
import rip.athena.client.gui.hud.IngameMenu;
|
||||||
@ -391,13 +392,13 @@ public class CosmeticsPage extends Page {
|
|||||||
|
|
||||||
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(menu.getX() + menu.getWidth() - width, menu.getY() + 58, width, height + 1, ModCategoryButton.MAIN_COLOR);
|
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(menu.getX() + menu.getWidth() - width, menu.getY() + 58, width, height + 1, ModCategoryButton.MAIN_COLOR);
|
||||||
drawShadowDown(menu.getX() + menu.getWidth() - width, y + height, width);
|
drawShadowDown(menu.getX() + menu.getWidth() - width, y + height, width);
|
||||||
Minecraft.getMinecraft().fontRendererObj.drawString("COSMETIC SETTINGS", menu.getX() + menu.getWidth() - width / 2 - Minecraft.getMinecraft().fontRendererObj.getStringWidth("COSMETIC SETTINGS") / 2, y + height / 2 - Minecraft.getMinecraft().fontRendererObj.FONT_HEIGHT / 2, IngameMenu.MENU_HEADER_TEXT_COLOR);
|
FontManager.baloo17.drawString("COSMETIC SETTINGS", menu.getX() + menu.getWidth() - width / 2 - FontManager.baloo17.getStringWidth("COSMETIC SETTINGS") / 2, y + height / 2 - FontManager.baloo17.getHeight("COSMETIC SETTINGS") / 2, IngameMenu.MENU_HEADER_TEXT_COLOR);
|
||||||
|
|
||||||
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(menu.getX(), menu.getY() + 58, width, menu.getHeight() - 58, MacrosPage.MENU_SIDE_BG_COLOR);
|
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(menu.getX(), menu.getY() + 58, width, menu.getHeight() - 58, MacrosPage.MENU_SIDE_BG_COLOR);
|
||||||
|
|
||||||
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(menu.getX(), menu.getY() + 58, width, height + 1, ModCategoryButton.MAIN_COLOR);
|
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(menu.getX(), menu.getY() + 58, width, height + 1, ModCategoryButton.MAIN_COLOR);
|
||||||
drawShadowDown(menu.getX(), y + height, width);
|
drawShadowDown(menu.getX(), y + height, width);
|
||||||
Minecraft.getMinecraft().fontRendererObj.drawString("COSMETICS", menu.getX() + width / 2 - Minecraft.getMinecraft().fontRendererObj.getStringWidth("COSMETICS") / 2, y + height / 2 - Minecraft.getMinecraft().fontRendererObj.FONT_HEIGHT / 2, IngameMenu.MENU_HEADER_TEXT_COLOR);
|
FontManager.baloo17.drawString("COSMETICS", menu.getX() + width / 2 - FontManager.baloo17.getStringWidth("COSMETICS") / 2, y + height / 2 - FontManager.baloo17.getHeight("COSMETICS") / 2, IngameMenu.MENU_HEADER_TEXT_COLOR);
|
||||||
|
|
||||||
drawShadowDown(menu.getX(), y - 1, width);
|
drawShadowDown(menu.getX(), y - 1, width);
|
||||||
drawShadowDown(menu.getX() + menu.getWidth() - width, y - 1, width);
|
drawShadowDown(menu.getX() + menu.getWidth() - width, y - 1, width);
|
||||||
@ -405,19 +406,19 @@ public class CosmeticsPage extends Page {
|
|||||||
x += 3;
|
x += 3;
|
||||||
y += 50;
|
y += 50;
|
||||||
|
|
||||||
Minecraft.getMinecraft().fontRendererObj.drawString("EMOTE WHEEL KEYBIND", x, y, IngameMenu.MENU_HEADER_TEXT_COLOR);
|
FontManager.baloo17.drawString("EMOTE WHEEL KEYBIND", x, y, IngameMenu.MENU_HEADER_TEXT_COLOR);
|
||||||
|
|
||||||
y += 60;
|
y += 60;
|
||||||
|
|
||||||
Minecraft.getMinecraft().fontRendererObj.drawString("ENABLED EMOTES", x, y, IngameMenu.MENU_HEADER_TEXT_COLOR);
|
FontManager.baloo17.drawString("ENABLED EMOTES", x, y, IngameMenu.MENU_HEADER_TEXT_COLOR);
|
||||||
|
|
||||||
y += 150;
|
y += 150;
|
||||||
|
|
||||||
Minecraft.getMinecraft().fontRendererObj.drawString("CAPE LOCATION", x, y, IngameMenu.MENU_HEADER_TEXT_COLOR);
|
FontManager.baloo17.drawString("CAPE LOCATION", x, y, IngameMenu.MENU_HEADER_TEXT_COLOR);
|
||||||
|
|
||||||
y += 60;
|
y += 60;
|
||||||
|
|
||||||
Minecraft.getMinecraft().fontRendererObj.drawString("BANDANA LOCATION", x, y, IngameMenu.MENU_HEADER_TEXT_COLOR);
|
FontManager.baloo17.drawString("BANDANA LOCATION", x, y, IngameMenu.MENU_HEADER_TEXT_COLOR);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -281,7 +281,6 @@ public class FPSPage extends Page {
|
|||||||
|
|
||||||
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(menu.getX(), menu.getY() + 58, width, height + 1, ModCategoryButton.MAIN_COLOR);
|
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(menu.getX(), menu.getY() + 58, width, height + 1, ModCategoryButton.MAIN_COLOR);
|
||||||
drawShadowDown(menu.getX(), y + height, width);
|
drawShadowDown(menu.getX(), y + height, width);
|
||||||
|
|
||||||
drawShadowDown(menu.getX(), y - 1, width);
|
drawShadowDown(menu.getX(), y - 1, width);
|
||||||
|
|
||||||
Minecraft.getMinecraft().fontRendererObj.drawString("FPS", menu.getX() + width / 2 - Minecraft.getMinecraft().fontRendererObj.getStringWidth("FPS") / 2, y + height / 2 - Minecraft.getMinecraft().fontRendererObj.FONT_HEIGHT / 2, IngameMenu.MENU_HEADER_TEXT_COLOR);
|
Minecraft.getMinecraft().fontRendererObj.drawString("FPS", menu.getX() + width / 2 - Minecraft.getMinecraft().fontRendererObj.getStringWidth("FPS") / 2, y + height / 2 - Minecraft.getMinecraft().fontRendererObj.FONT_HEIGHT / 2, IngameMenu.MENU_HEADER_TEXT_COLOR);
|
||||||
@ -515,7 +514,7 @@ public class FPSPage extends Page {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void loadLowSettings() {
|
private void loadLowSettings() {
|
||||||
/*Minecraft.getMinecraft().gameSettings.fancyGraphics = false;
|
Minecraft.getMinecraft().gameSettings.fancyGraphics = false;
|
||||||
Minecraft.getMinecraft().gameSettings.renderDistanceChunks = 2;
|
Minecraft.getMinecraft().gameSettings.renderDistanceChunks = 2;
|
||||||
Minecraft.getMinecraft().gameSettings.ofFogType = 3;
|
Minecraft.getMinecraft().gameSettings.ofFogType = 3;
|
||||||
Minecraft.getMinecraft().gameSettings.ofFogStart = 0.2F;
|
Minecraft.getMinecraft().gameSettings.ofFogStart = 0.2F;
|
||||||
@ -580,11 +579,11 @@ public class FPSPage extends Page {
|
|||||||
Minecraft.getMinecraft().gameSettings.useVbo = true;
|
Minecraft.getMinecraft().gameSettings.useVbo = true;
|
||||||
Minecraft.getMinecraft().gameSettings.allowBlockAlternatives = false;
|
Minecraft.getMinecraft().gameSettings.allowBlockAlternatives = false;
|
||||||
Minecraft.getMinecraft().gameSettings.saveOptions();
|
Minecraft.getMinecraft().gameSettings.saveOptions();
|
||||||
Minecraft.getMinecraft().gameSettings.loadOfOptions();*/
|
Minecraft.getMinecraft().gameSettings.loadOfOptions();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void loadMedmedSettings() {
|
private void loadMedmedSettings() {
|
||||||
/*Minecraft.getMinecraft().gameSettings.fancyGraphics = true;
|
Minecraft.getMinecraft().gameSettings.fancyGraphics = true;
|
||||||
Minecraft.getMinecraft().gameSettings.renderDistanceChunks = 8;
|
Minecraft.getMinecraft().gameSettings.renderDistanceChunks = 8;
|
||||||
Minecraft.getMinecraft().gameSettings.ofFogType = 3;
|
Minecraft.getMinecraft().gameSettings.ofFogType = 3;
|
||||||
Minecraft.getMinecraft().gameSettings.ofFogStart = 0.2F;
|
Minecraft.getMinecraft().gameSettings.ofFogStart = 0.2F;
|
||||||
@ -649,11 +648,11 @@ public class FPSPage extends Page {
|
|||||||
Minecraft.getMinecraft().gameSettings.useVbo = true;
|
Minecraft.getMinecraft().gameSettings.useVbo = true;
|
||||||
Minecraft.getMinecraft().gameSettings.allowBlockAlternatives = false;
|
Minecraft.getMinecraft().gameSettings.allowBlockAlternatives = false;
|
||||||
Minecraft.getMinecraft().gameSettings.saveOptions();
|
Minecraft.getMinecraft().gameSettings.saveOptions();
|
||||||
Minecraft.getMinecraft().gameSettings.loadOfOptions();*/
|
Minecraft.getMinecraft().gameSettings.loadOfOptions();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void loadHighSettings() {
|
private void loadHighSettings() {
|
||||||
/*Minecraft.getMinecraft().gameSettings.fancyGraphics = true;
|
Minecraft.getMinecraft().gameSettings.fancyGraphics = true;
|
||||||
Minecraft.getMinecraft().gameSettings.renderDistanceChunks = 32;
|
Minecraft.getMinecraft().gameSettings.renderDistanceChunks = 32;
|
||||||
Minecraft.getMinecraft().gameSettings.ofFogType = 1;
|
Minecraft.getMinecraft().gameSettings.ofFogType = 1;
|
||||||
Minecraft.getMinecraft().gameSettings.ofFogStart = 0.6F;
|
Minecraft.getMinecraft().gameSettings.ofFogStart = 0.6F;
|
||||||
@ -678,7 +677,6 @@ public class FPSPage extends Page {
|
|||||||
Minecraft.getMinecraft().gameSettings.ofVoidParticles = true;
|
Minecraft.getMinecraft().gameSettings.ofVoidParticles = true;
|
||||||
Minecraft.getMinecraft().gameSettings.ofWaterParticles = true;
|
Minecraft.getMinecraft().gameSettings.ofWaterParticles = true;
|
||||||
Minecraft.getMinecraft().gameSettings.ofPortalParticles = true;
|
Minecraft.getMinecraft().gameSettings.ofPortalParticles = true;
|
||||||
Minecraft.getMinecraft().gameSettings.ofPortalParticles = true;
|
|
||||||
Minecraft.getMinecraft().gameSettings.ofFireworkParticles = true;
|
Minecraft.getMinecraft().gameSettings.ofFireworkParticles = true;
|
||||||
Minecraft.getMinecraft().gameSettings.ofDrippingWaterLava = true;
|
Minecraft.getMinecraft().gameSettings.ofDrippingWaterLava = true;
|
||||||
Minecraft.getMinecraft().gameSettings.ofAnimatedTerrain = true;
|
Minecraft.getMinecraft().gameSettings.ofAnimatedTerrain = true;
|
||||||
@ -718,7 +716,7 @@ public class FPSPage extends Page {
|
|||||||
Minecraft.getMinecraft().gameSettings.useVbo = true;
|
Minecraft.getMinecraft().gameSettings.useVbo = true;
|
||||||
Minecraft.getMinecraft().gameSettings.allowBlockAlternatives = false;
|
Minecraft.getMinecraft().gameSettings.allowBlockAlternatives = false;
|
||||||
Minecraft.getMinecraft().gameSettings.saveOptions();
|
Minecraft.getMinecraft().gameSettings.saveOptions();
|
||||||
Minecraft.getMinecraft().gameSettings.loadOfOptions();*/
|
Minecraft.getMinecraft().gameSettings.loadOfOptions();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void initSettings(Module module) {
|
private void initSettings(Module module) {
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package rip.athena.client.gui.hud.pages;
|
package rip.athena.client.gui.hud.pages;
|
||||||
|
|
||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.Minecraft;
|
||||||
|
import net.minecraft.client.renderer.GlStateManager;
|
||||||
import net.minecraft.util.ResourceLocation;
|
import net.minecraft.util.ResourceLocation;
|
||||||
import rip.athena.client.Athena;
|
import rip.athena.client.Athena;
|
||||||
import rip.athena.client.config.ConfigEntry;
|
import rip.athena.client.config.ConfigEntry;
|
||||||
@ -61,7 +62,7 @@ public class ModsPage extends Page {
|
|||||||
int y = menu.getY() + 59;
|
int y = menu.getY() + 59;
|
||||||
int height = 32;
|
int height = 32;
|
||||||
|
|
||||||
drawVerticalLine(menu.getX() + 215, y + height - 30, height + 382, 3, new Color(27, 27, 27, 225).getRGB());
|
drawVerticalLine(menu.getX() + 215, y + height - 30, height + 398, 3, new Color(27, 27, 27, 225).getRGB());
|
||||||
|
|
||||||
y += 50;
|
y += 50;
|
||||||
|
|
||||||
@ -79,13 +80,13 @@ public class ModsPage extends Page {
|
|||||||
drawShadowUp(menu.getX() + 15, y - 2, 200);
|
drawShadowUp(menu.getX() + 15, y - 2, 200);
|
||||||
|
|
||||||
if(modCategory != null) {
|
if(modCategory != null) {
|
||||||
FontManager.vision30.drawString(activeModule != null ? "SETTINGS | " : modCategory.getText(), menu.getX() + 255, menu.getY() + 80, IngameMenu.MENU_HEADER_TEXT_COLOR);
|
FontManager.baloo17.drawString(activeModule != null ? "SETTINGS | " : modCategory.getText(), menu.getX() + 255, menu.getY() + 80, IngameMenu.MENU_HEADER_TEXT_COLOR);
|
||||||
|
|
||||||
if(activeModule != null) {
|
if(activeModule != null) {
|
||||||
int offset = (int) FontManager.vision30.getStringWidth("SETTINGS | ");
|
int offset = (int) FontManager.baloo17.getStringWidth("SETTINGS | ");
|
||||||
String text = activeModule.getName().toUpperCase().trim();
|
String text = activeModule.getName().toUpperCase().trim();
|
||||||
|
|
||||||
FontManager.vision30.drawString(text, menu.getX() + 255 + offset, menu.getY() + 80, MENU_HEADER_TEXT_COLOR_MOD);
|
FontManager.baloo17.drawString(text, menu.getX() + 255 + offset, menu.getY() + 80, MENU_HEADER_TEXT_COLOR_MOD);
|
||||||
|
|
||||||
drawShadowUp(menu.getX() + 255, menu.getY() + 110 + 25 + 2, menu.getWidth() - 286);
|
drawShadowUp(menu.getX() + 255, menu.getY() + 110 + 25 + 2, menu.getWidth() - 286);
|
||||||
drawShadowLeft(menu.getX() + 255 + 2, menu.getY() + 110 + 25, menu.getHeight() - 110 - 50 - 5);
|
drawShadowLeft(menu.getX() + 255 + 2, menu.getY() + 110 + 25, menu.getHeight() - 110 - 50 - 5);
|
||||||
@ -213,7 +214,7 @@ public class ModsPage extends Page {
|
|||||||
ModScrollPane pane = new ModScrollPane(255, 140, menu.getWidth() - 255 - 32, menu.getHeight() - 141, false);
|
ModScrollPane pane = new ModScrollPane(255, 140, menu.getWidth() - 255 - 32, menu.getHeight() - 141, false);
|
||||||
menu.addComponent(pane);
|
menu.addComponent(pane);
|
||||||
|
|
||||||
menu.addComponent(new ModCategoryButton("EDIT HUD", 0, menu.getHeight() - height - 1, 225, height) {
|
menu.addComponent(new ModCategoryButton("EDIT HUD", 0, menu.getHeight() - height - 2, 225, height) {
|
||||||
@Override
|
@Override
|
||||||
public void onAction() {
|
public void onAction() {
|
||||||
setActive(false);
|
setActive(false);
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
package rip.athena.client.gui.hud.pages;
|
package rip.athena.client.gui.hud.pages;
|
||||||
|
|
||||||
|
import net.minecraft.client.renderer.GlStateManager;
|
||||||
import rip.athena.client.Athena;
|
import rip.athena.client.Athena;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
import rip.athena.client.gui.framework.Menu;
|
import rip.athena.client.gui.framework.Menu;
|
||||||
import rip.athena.client.gui.framework.TextPattern;
|
import rip.athena.client.gui.framework.TextPattern;
|
||||||
import rip.athena.client.gui.hud.IngameMenu;
|
import rip.athena.client.gui.hud.IngameMenu;
|
||||||
@ -214,7 +216,7 @@ public class ProfilesPage extends Page {
|
|||||||
int y = menu.getY() + 59;
|
int y = menu.getY() + 59;
|
||||||
int height = 32;
|
int height = 32;
|
||||||
|
|
||||||
Minecraft.getMinecraft().fontRendererObj.drawString("PROFILES", menu.getX() + 31, menu.getY() + 80, IngameMenu.MENU_HEADER_TEXT_COLOR);
|
FontManager.baloo17.drawString("PROFILES", menu.getX() + 31, menu.getY() + 80, IngameMenu.MENU_HEADER_TEXT_COLOR);
|
||||||
|
|
||||||
drawHorizontalLine(menu.getX() + 31, menu.getY() + 110, menu.getWidth() - width - 31 * 2, 3, IngameMenu.MENU_LINE_COLOR);
|
drawHorizontalLine(menu.getX() + 31, menu.getY() + 110, menu.getWidth() - width - 31 * 2, 3, IngameMenu.MENU_LINE_COLOR);
|
||||||
|
|
||||||
@ -222,24 +224,24 @@ public class ProfilesPage extends Page {
|
|||||||
|
|
||||||
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(menu.getX() + menu.getWidth() - width, menu.getY() + 58, width, height + 1, ModCategoryButton.MAIN_COLOR);
|
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(menu.getX() + menu.getWidth() - width, menu.getY() + 58, width, height + 1, ModCategoryButton.MAIN_COLOR);
|
||||||
drawShadowDown(menu.getX() + menu.getWidth() - width, y + height, width);
|
drawShadowDown(menu.getX() + menu.getWidth() - width, y + height, width);
|
||||||
Minecraft.getMinecraft().fontRendererObj.drawString("CREATE NEW PROFILE", menu.getX() + menu.getWidth() - width / 2 - Minecraft.getMinecraft().fontRendererObj.getStringWidth("CREATE NEW PROFILE") / 2, y + height / 2 - Minecraft.getMinecraft().fontRendererObj.FONT_HEIGHT / 2, IngameMenu.MENU_HEADER_TEXT_COLOR);
|
FontManager.baloo17.drawString("CREATE NEW PROFILE", menu.getX() + menu.getWidth() - (float) width / 2 - FontManager.baloo17.getStringWidth("CREATE NEW PROFILE") / 2, y + (float) height / 2 - FontManager.baloo17.getHeight("CREATE NEW PROFILE") / 2, IngameMenu.MENU_HEADER_TEXT_COLOR);
|
||||||
|
|
||||||
drawShadowDown(menu.getX() + menu.getWidth() - width, y - 1, width);
|
drawShadowDown(menu.getX() + menu.getWidth() - width, y - 1, width);
|
||||||
|
|
||||||
y += 60;
|
y += 60;
|
||||||
|
|
||||||
Minecraft.getMinecraft().fontRendererObj.drawString("ENTER NAME", x, y, IngameMenu.MENU_HEADER_TEXT_COLOR);
|
FontManager.baloo17.drawString("ENTER NAME", x, y, IngameMenu.MENU_HEADER_TEXT_COLOR);
|
||||||
|
|
||||||
y += 120;
|
y += 120;
|
||||||
|
|
||||||
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(menu.getX() + menu.getWidth() - width, y, width, height + 1, ModCategoryButton.MAIN_COLOR);
|
rip.athena.client.gui.framework.draw.DrawImpl.drawRect(menu.getX() + menu.getWidth() - width, y, width, height + 1, ModCategoryButton.MAIN_COLOR);
|
||||||
drawShadowDown(menu.getX() + menu.getWidth() - width, y + height, width);
|
drawShadowDown(menu.getX() + menu.getWidth() - width, y + height, width);
|
||||||
drawShadowUp(menu.getX() + menu.getWidth() - width, y, width);
|
drawShadowUp(menu.getX() + menu.getWidth() - width, y, width);
|
||||||
Minecraft.getMinecraft().fontRendererObj.drawString("DOWNLOAD PROFILE", menu.getX() + menu.getWidth() - width / 2 - Minecraft.getMinecraft().fontRendererObj.getStringWidth("DOWNLOAD PROFILE") / 2, y + height / 2 - Minecraft.getMinecraft().fontRendererObj.FONT_HEIGHT / 2, IngameMenu.MENU_HEADER_TEXT_COLOR);
|
FontManager.baloo17.drawString("DOWNLOAD PROFILE", menu.getX() + menu.getWidth() - (float) width / 2 - FontManager.baloo17.getStringWidth("DOWNLOAD PROFILE") / 2, y + (float) height / 2 - FontManager.baloo17.getHeight("DOWNLOAD PROFILE") / 2, IngameMenu.MENU_HEADER_TEXT_COLOR);
|
||||||
|
|
||||||
y += 50;
|
y += 50;
|
||||||
|
|
||||||
Minecraft.getMinecraft().fontRendererObj.drawString("PROFILE CODE", x, y, IngameMenu.MENU_HEADER_TEXT_COLOR);
|
FontManager.baloo17.drawString("PROFILE CODE", x, y, IngameMenu.MENU_HEADER_TEXT_COLOR);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
6
src/main/java/rip/athena/client/gui/menu/AthenaMenu.java
Normal file
6
src/main/java/rip/athena/client/gui/menu/AthenaMenu.java
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
package rip.athena.client.gui.menu;
|
||||||
|
|
||||||
|
import net.minecraft.client.gui.GuiScreen;
|
||||||
|
|
||||||
|
public class AthenaMenu extends GuiScreen {
|
||||||
|
}
|
@ -0,0 +1,68 @@
|
|||||||
|
package rip.athena.client.modules.impl.render;
|
||||||
|
|
||||||
|
import org.lwjgl.input.Keyboard;
|
||||||
|
import rip.athena.client.config.ConfigValue;
|
||||||
|
import rip.athena.client.events.SubscribeEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderType;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
|
import rip.athena.client.modules.Category;
|
||||||
|
import rip.athena.client.modules.Module;
|
||||||
|
|
||||||
|
import java.awt.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Athena Development
|
||||||
|
* @project Athena-Client
|
||||||
|
* @date 6/1/2023
|
||||||
|
*/
|
||||||
|
public class FPS10Mod extends Module {
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Background")
|
||||||
|
private boolean backGround = true;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Color")
|
||||||
|
private Color color = Color.WHITE;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Background Color")
|
||||||
|
private Color background = new Color(0, 0, 0, 150);
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Custom Font")
|
||||||
|
private boolean customFont = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Static Chroma")
|
||||||
|
private boolean isUsingStaticChroma = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Wave Chroma")
|
||||||
|
private boolean isUsingWaveChroma = false;
|
||||||
|
|
||||||
|
public FPS10Mod() {
|
||||||
|
super("FPS10", Category.RENDER);
|
||||||
|
|
||||||
|
setKeyBind(Keyboard.KEY_F);
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onRender(RenderEvent event) {
|
||||||
|
if (event.getRenderType() != RenderType.INGAME_OVERLAY) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mc.gameSettings.showDebugInfo) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
String string = mc.debug.split(" fps")[0] + " FPS";
|
||||||
|
FontManager.baloo17.drawString(string, 200, 50, -1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onEnable() {
|
||||||
|
super.onEnable();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onDisable() {
|
||||||
|
super.onDisable();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,68 @@
|
|||||||
|
package rip.athena.client.modules.impl.render;
|
||||||
|
|
||||||
|
import org.lwjgl.input.Keyboard;
|
||||||
|
import rip.athena.client.config.ConfigValue;
|
||||||
|
import rip.athena.client.events.SubscribeEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderType;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
|
import rip.athena.client.modules.Category;
|
||||||
|
import rip.athena.client.modules.Module;
|
||||||
|
|
||||||
|
import java.awt.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Athena Development
|
||||||
|
* @project Athena-Client
|
||||||
|
* @date 6/1/2023
|
||||||
|
*/
|
||||||
|
public class FPS11Mod extends Module {
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Background")
|
||||||
|
private boolean backGround = true;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Color")
|
||||||
|
private Color color = Color.WHITE;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Background Color")
|
||||||
|
private Color background = new Color(0, 0, 0, 150);
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Custom Font")
|
||||||
|
private boolean customFont = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Static Chroma")
|
||||||
|
private boolean isUsingStaticChroma = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Wave Chroma")
|
||||||
|
private boolean isUsingWaveChroma = false;
|
||||||
|
|
||||||
|
public FPS11Mod() {
|
||||||
|
super("FPS11", Category.RENDER);
|
||||||
|
|
||||||
|
setKeyBind(Keyboard.KEY_F);
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onRender(RenderEvent event) {
|
||||||
|
if (event.getRenderType() != RenderType.INGAME_OVERLAY) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mc.gameSettings.showDebugInfo) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
String string = mc.debug.split(" fps")[0] + " FPS";
|
||||||
|
FontManager.baloo17.drawString(string, 200, 50, -1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onEnable() {
|
||||||
|
super.onEnable();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onDisable() {
|
||||||
|
super.onDisable();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,68 @@
|
|||||||
|
package rip.athena.client.modules.impl.render;
|
||||||
|
|
||||||
|
import org.lwjgl.input.Keyboard;
|
||||||
|
import rip.athena.client.config.ConfigValue;
|
||||||
|
import rip.athena.client.events.SubscribeEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderType;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
|
import rip.athena.client.modules.Category;
|
||||||
|
import rip.athena.client.modules.Module;
|
||||||
|
|
||||||
|
import java.awt.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Athena Development
|
||||||
|
* @project Athena-Client
|
||||||
|
* @date 6/1/2023
|
||||||
|
*/
|
||||||
|
public class FPS12Mod extends Module {
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Background")
|
||||||
|
private boolean backGround = true;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Color")
|
||||||
|
private Color color = Color.WHITE;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Background Color")
|
||||||
|
private Color background = new Color(0, 0, 0, 150);
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Custom Font")
|
||||||
|
private boolean customFont = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Static Chroma")
|
||||||
|
private boolean isUsingStaticChroma = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Wave Chroma")
|
||||||
|
private boolean isUsingWaveChroma = false;
|
||||||
|
|
||||||
|
public FPS12Mod() {
|
||||||
|
super("FPS12", Category.RENDER);
|
||||||
|
|
||||||
|
setKeyBind(Keyboard.KEY_F);
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onRender(RenderEvent event) {
|
||||||
|
if (event.getRenderType() != RenderType.INGAME_OVERLAY) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mc.gameSettings.showDebugInfo) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
String string = mc.debug.split(" fps")[0] + " FPS";
|
||||||
|
FontManager.baloo17.drawString(string, 200, 50, -1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onEnable() {
|
||||||
|
super.onEnable();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onDisable() {
|
||||||
|
super.onDisable();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,68 @@
|
|||||||
|
package rip.athena.client.modules.impl.render;
|
||||||
|
|
||||||
|
import org.lwjgl.input.Keyboard;
|
||||||
|
import rip.athena.client.config.ConfigValue;
|
||||||
|
import rip.athena.client.events.SubscribeEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderType;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
|
import rip.athena.client.modules.Category;
|
||||||
|
import rip.athena.client.modules.Module;
|
||||||
|
|
||||||
|
import java.awt.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Athena Development
|
||||||
|
* @project Athena-Client
|
||||||
|
* @date 6/1/2023
|
||||||
|
*/
|
||||||
|
public class FPS13Mod extends Module {
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Background")
|
||||||
|
private boolean backGround = true;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Color")
|
||||||
|
private Color color = Color.WHITE;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Background Color")
|
||||||
|
private Color background = new Color(0, 0, 0, 150);
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Custom Font")
|
||||||
|
private boolean customFont = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Static Chroma")
|
||||||
|
private boolean isUsingStaticChroma = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Wave Chroma")
|
||||||
|
private boolean isUsingWaveChroma = false;
|
||||||
|
|
||||||
|
public FPS13Mod() {
|
||||||
|
super("FPS13", Category.RENDER);
|
||||||
|
|
||||||
|
setKeyBind(Keyboard.KEY_F);
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onRender(RenderEvent event) {
|
||||||
|
if (event.getRenderType() != RenderType.INGAME_OVERLAY) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mc.gameSettings.showDebugInfo) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
String string = mc.debug.split(" fps")[0] + " FPS";
|
||||||
|
FontManager.baloo17.drawString(string, 200, 50, -1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onEnable() {
|
||||||
|
super.onEnable();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onDisable() {
|
||||||
|
super.onDisable();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,68 @@
|
|||||||
|
package rip.athena.client.modules.impl.render;
|
||||||
|
|
||||||
|
import org.lwjgl.input.Keyboard;
|
||||||
|
import rip.athena.client.config.ConfigValue;
|
||||||
|
import rip.athena.client.events.SubscribeEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderType;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
|
import rip.athena.client.modules.Category;
|
||||||
|
import rip.athena.client.modules.Module;
|
||||||
|
|
||||||
|
import java.awt.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Athena Development
|
||||||
|
* @project Athena-Client
|
||||||
|
* @date 6/1/2023
|
||||||
|
*/
|
||||||
|
public class FPS14Mod extends Module {
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Background")
|
||||||
|
private boolean backGround = true;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Color")
|
||||||
|
private Color color = Color.WHITE;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Background Color")
|
||||||
|
private Color background = new Color(0, 0, 0, 150);
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Custom Font")
|
||||||
|
private boolean customFont = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Static Chroma")
|
||||||
|
private boolean isUsingStaticChroma = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Wave Chroma")
|
||||||
|
private boolean isUsingWaveChroma = false;
|
||||||
|
|
||||||
|
public FPS14Mod() {
|
||||||
|
super("FPS14", Category.RENDER);
|
||||||
|
|
||||||
|
setKeyBind(Keyboard.KEY_F);
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onRender(RenderEvent event) {
|
||||||
|
if (event.getRenderType() != RenderType.INGAME_OVERLAY) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mc.gameSettings.showDebugInfo) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
String string = mc.debug.split(" fps")[0] + " FPS";
|
||||||
|
FontManager.baloo17.drawString(string, 200, 50, -1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onEnable() {
|
||||||
|
super.onEnable();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onDisable() {
|
||||||
|
super.onDisable();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,68 @@
|
|||||||
|
package rip.athena.client.modules.impl.render;
|
||||||
|
|
||||||
|
import org.lwjgl.input.Keyboard;
|
||||||
|
import rip.athena.client.config.ConfigValue;
|
||||||
|
import rip.athena.client.events.SubscribeEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderType;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
|
import rip.athena.client.modules.Category;
|
||||||
|
import rip.athena.client.modules.Module;
|
||||||
|
|
||||||
|
import java.awt.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Athena Development
|
||||||
|
* @project Athena-Client
|
||||||
|
* @date 6/1/2023
|
||||||
|
*/
|
||||||
|
public class FPS15Mod extends Module {
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Background")
|
||||||
|
private boolean backGround = true;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Color")
|
||||||
|
private Color color = Color.WHITE;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Background Color")
|
||||||
|
private Color background = new Color(0, 0, 0, 150);
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Custom Font")
|
||||||
|
private boolean customFont = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Static Chroma")
|
||||||
|
private boolean isUsingStaticChroma = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Wave Chroma")
|
||||||
|
private boolean isUsingWaveChroma = false;
|
||||||
|
|
||||||
|
public FPS15Mod() {
|
||||||
|
super("FPS15", Category.RENDER);
|
||||||
|
|
||||||
|
setKeyBind(Keyboard.KEY_F);
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onRender(RenderEvent event) {
|
||||||
|
if (event.getRenderType() != RenderType.INGAME_OVERLAY) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mc.gameSettings.showDebugInfo) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
String string = mc.debug.split(" fps")[0] + " FPS";
|
||||||
|
FontManager.baloo17.drawString(string, 200, 50, -1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onEnable() {
|
||||||
|
super.onEnable();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onDisable() {
|
||||||
|
super.onDisable();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,68 @@
|
|||||||
|
package rip.athena.client.modules.impl.render;
|
||||||
|
|
||||||
|
import org.lwjgl.input.Keyboard;
|
||||||
|
import rip.athena.client.config.ConfigValue;
|
||||||
|
import rip.athena.client.events.SubscribeEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderType;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
|
import rip.athena.client.modules.Category;
|
||||||
|
import rip.athena.client.modules.Module;
|
||||||
|
|
||||||
|
import java.awt.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Athena Development
|
||||||
|
* @project Athena-Client
|
||||||
|
* @date 6/1/2023
|
||||||
|
*/
|
||||||
|
public class FPS16Mod extends Module {
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Background")
|
||||||
|
private boolean backGround = true;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Color")
|
||||||
|
private Color color = Color.WHITE;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Background Color")
|
||||||
|
private Color background = new Color(0, 0, 0, 150);
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Custom Font")
|
||||||
|
private boolean customFont = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Static Chroma")
|
||||||
|
private boolean isUsingStaticChroma = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Wave Chroma")
|
||||||
|
private boolean isUsingWaveChroma = false;
|
||||||
|
|
||||||
|
public FPS16Mod() {
|
||||||
|
super("FPS16", Category.RENDER);
|
||||||
|
|
||||||
|
setKeyBind(Keyboard.KEY_F);
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onRender(RenderEvent event) {
|
||||||
|
if (event.getRenderType() != RenderType.INGAME_OVERLAY) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mc.gameSettings.showDebugInfo) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
String string = mc.debug.split(" fps")[0] + " FPS";
|
||||||
|
FontManager.baloo17.drawString(string, 200, 50, -1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onEnable() {
|
||||||
|
super.onEnable();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onDisable() {
|
||||||
|
super.onDisable();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,68 @@
|
|||||||
|
package rip.athena.client.modules.impl.render;
|
||||||
|
|
||||||
|
import org.lwjgl.input.Keyboard;
|
||||||
|
import rip.athena.client.config.ConfigValue;
|
||||||
|
import rip.athena.client.events.SubscribeEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderType;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
|
import rip.athena.client.modules.Category;
|
||||||
|
import rip.athena.client.modules.Module;
|
||||||
|
|
||||||
|
import java.awt.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Athena Development
|
||||||
|
* @project Athena-Client
|
||||||
|
* @date 6/1/2023
|
||||||
|
*/
|
||||||
|
public class FPS17Mod extends Module {
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Background")
|
||||||
|
private boolean backGround = true;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Color")
|
||||||
|
private Color color = Color.WHITE;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Background Color")
|
||||||
|
private Color background = new Color(0, 0, 0, 150);
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Custom Font")
|
||||||
|
private boolean customFont = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Static Chroma")
|
||||||
|
private boolean isUsingStaticChroma = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Wave Chroma")
|
||||||
|
private boolean isUsingWaveChroma = false;
|
||||||
|
|
||||||
|
public FPS17Mod() {
|
||||||
|
super("FPS17", Category.RENDER);
|
||||||
|
|
||||||
|
setKeyBind(Keyboard.KEY_F);
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onRender(RenderEvent event) {
|
||||||
|
if (event.getRenderType() != RenderType.INGAME_OVERLAY) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mc.gameSettings.showDebugInfo) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
String string = mc.debug.split(" fps")[0] + " FPS";
|
||||||
|
FontManager.baloo17.drawString(string, 200, 50, -1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onEnable() {
|
||||||
|
super.onEnable();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onDisable() {
|
||||||
|
super.onDisable();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,68 @@
|
|||||||
|
package rip.athena.client.modules.impl.render;
|
||||||
|
|
||||||
|
import org.lwjgl.input.Keyboard;
|
||||||
|
import rip.athena.client.config.ConfigValue;
|
||||||
|
import rip.athena.client.events.SubscribeEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderType;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
|
import rip.athena.client.modules.Category;
|
||||||
|
import rip.athena.client.modules.Module;
|
||||||
|
|
||||||
|
import java.awt.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Athena Development
|
||||||
|
* @project Athena-Client
|
||||||
|
* @date 6/1/2023
|
||||||
|
*/
|
||||||
|
public class FPS18Mod extends Module {
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Background")
|
||||||
|
private boolean backGround = true;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Color")
|
||||||
|
private Color color = Color.WHITE;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Background Color")
|
||||||
|
private Color background = new Color(0, 0, 0, 150);
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Custom Font")
|
||||||
|
private boolean customFont = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Static Chroma")
|
||||||
|
private boolean isUsingStaticChroma = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Wave Chroma")
|
||||||
|
private boolean isUsingWaveChroma = false;
|
||||||
|
|
||||||
|
public FPS18Mod() {
|
||||||
|
super("FPS18", Category.RENDER);
|
||||||
|
|
||||||
|
setKeyBind(Keyboard.KEY_F);
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onRender(RenderEvent event) {
|
||||||
|
if (event.getRenderType() != RenderType.INGAME_OVERLAY) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mc.gameSettings.showDebugInfo) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
String string = mc.debug.split(" fps")[0] + " FPS";
|
||||||
|
FontManager.baloo17.drawString(string, 200, 50, -1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onEnable() {
|
||||||
|
super.onEnable();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onDisable() {
|
||||||
|
super.onDisable();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,68 @@
|
|||||||
|
package rip.athena.client.modules.impl.render;
|
||||||
|
|
||||||
|
import org.lwjgl.input.Keyboard;
|
||||||
|
import rip.athena.client.config.ConfigValue;
|
||||||
|
import rip.athena.client.events.SubscribeEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderType;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
|
import rip.athena.client.modules.Category;
|
||||||
|
import rip.athena.client.modules.Module;
|
||||||
|
|
||||||
|
import java.awt.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Athena Development
|
||||||
|
* @project Athena-Client
|
||||||
|
* @date 6/1/2023
|
||||||
|
*/
|
||||||
|
public class FPS19Mod extends Module {
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Background")
|
||||||
|
private boolean backGround = true;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Color")
|
||||||
|
private Color color = Color.WHITE;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Background Color")
|
||||||
|
private Color background = new Color(0, 0, 0, 150);
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Custom Font")
|
||||||
|
private boolean customFont = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Static Chroma")
|
||||||
|
private boolean isUsingStaticChroma = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Wave Chroma")
|
||||||
|
private boolean isUsingWaveChroma = false;
|
||||||
|
|
||||||
|
public FPS19Mod() {
|
||||||
|
super("FPS19", Category.RENDER);
|
||||||
|
|
||||||
|
setKeyBind(Keyboard.KEY_F);
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onRender(RenderEvent event) {
|
||||||
|
if (event.getRenderType() != RenderType.INGAME_OVERLAY) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mc.gameSettings.showDebugInfo) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
String string = mc.debug.split(" fps")[0] + " FPS";
|
||||||
|
FontManager.baloo17.drawString(string, 200, 50, -1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onEnable() {
|
||||||
|
super.onEnable();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onDisable() {
|
||||||
|
super.onDisable();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,68 @@
|
|||||||
|
package rip.athena.client.modules.impl.render;
|
||||||
|
|
||||||
|
import org.lwjgl.input.Keyboard;
|
||||||
|
import rip.athena.client.config.ConfigValue;
|
||||||
|
import rip.athena.client.events.SubscribeEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderType;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
|
import rip.athena.client.modules.Category;
|
||||||
|
import rip.athena.client.modules.Module;
|
||||||
|
|
||||||
|
import java.awt.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Athena Development
|
||||||
|
* @project Athena-Client
|
||||||
|
* @date 6/1/2023
|
||||||
|
*/
|
||||||
|
public class FPS2Mod extends Module {
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Background")
|
||||||
|
private boolean backGround = true;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Color")
|
||||||
|
private Color color = Color.WHITE;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Background Color")
|
||||||
|
private Color background = new Color(0, 0, 0, 150);
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Custom Font")
|
||||||
|
private boolean customFont = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Static Chroma")
|
||||||
|
private boolean isUsingStaticChroma = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Wave Chroma")
|
||||||
|
private boolean isUsingWaveChroma = false;
|
||||||
|
|
||||||
|
public FPS2Mod() {
|
||||||
|
super("FPS2", Category.RENDER);
|
||||||
|
|
||||||
|
setKeyBind(Keyboard.KEY_F);
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onRender(RenderEvent event) {
|
||||||
|
if (event.getRenderType() != RenderType.INGAME_OVERLAY) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mc.gameSettings.showDebugInfo) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
String string = mc.debug.split(" fps")[0] + " FPS";
|
||||||
|
FontManager.baloo17.drawString(string, 200, 50, -1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onEnable() {
|
||||||
|
super.onEnable();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onDisable() {
|
||||||
|
super.onDisable();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,68 @@
|
|||||||
|
package rip.athena.client.modules.impl.render;
|
||||||
|
|
||||||
|
import org.lwjgl.input.Keyboard;
|
||||||
|
import rip.athena.client.config.ConfigValue;
|
||||||
|
import rip.athena.client.events.SubscribeEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderType;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
|
import rip.athena.client.modules.Category;
|
||||||
|
import rip.athena.client.modules.Module;
|
||||||
|
|
||||||
|
import java.awt.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Athena Development
|
||||||
|
* @project Athena-Client
|
||||||
|
* @date 6/1/2023
|
||||||
|
*/
|
||||||
|
public class FPS3Mod extends Module {
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Background")
|
||||||
|
private boolean backGround = true;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Color")
|
||||||
|
private Color color = Color.WHITE;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Background Color")
|
||||||
|
private Color background = new Color(0, 0, 0, 150);
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Custom Font")
|
||||||
|
private boolean customFont = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Static Chroma")
|
||||||
|
private boolean isUsingStaticChroma = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Wave Chroma")
|
||||||
|
private boolean isUsingWaveChroma = false;
|
||||||
|
|
||||||
|
public FPS3Mod() {
|
||||||
|
super("FPS3", Category.RENDER);
|
||||||
|
|
||||||
|
setKeyBind(Keyboard.KEY_F);
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onRender(RenderEvent event) {
|
||||||
|
if (event.getRenderType() != RenderType.INGAME_OVERLAY) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mc.gameSettings.showDebugInfo) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
String string = mc.debug.split(" fps")[0] + " FPS";
|
||||||
|
FontManager.baloo17.drawString(string, 200, 50, -1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onEnable() {
|
||||||
|
super.onEnable();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onDisable() {
|
||||||
|
super.onDisable();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,68 @@
|
|||||||
|
package rip.athena.client.modules.impl.render;
|
||||||
|
|
||||||
|
import org.lwjgl.input.Keyboard;
|
||||||
|
import rip.athena.client.config.ConfigValue;
|
||||||
|
import rip.athena.client.events.SubscribeEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderType;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
|
import rip.athena.client.modules.Category;
|
||||||
|
import rip.athena.client.modules.Module;
|
||||||
|
|
||||||
|
import java.awt.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Athena Development
|
||||||
|
* @project Athena-Client
|
||||||
|
* @date 6/1/2023
|
||||||
|
*/
|
||||||
|
public class FPS4Mod extends Module {
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Background")
|
||||||
|
private boolean backGround = true;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Color")
|
||||||
|
private Color color = Color.WHITE;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Background Color")
|
||||||
|
private Color background = new Color(0, 0, 0, 150);
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Custom Font")
|
||||||
|
private boolean customFont = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Static Chroma")
|
||||||
|
private boolean isUsingStaticChroma = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Wave Chroma")
|
||||||
|
private boolean isUsingWaveChroma = false;
|
||||||
|
|
||||||
|
public FPS4Mod() {
|
||||||
|
super("FPS4", Category.RENDER);
|
||||||
|
|
||||||
|
setKeyBind(Keyboard.KEY_F);
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onRender(RenderEvent event) {
|
||||||
|
if (event.getRenderType() != RenderType.INGAME_OVERLAY) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mc.gameSettings.showDebugInfo) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
String string = mc.debug.split(" fps")[0] + " FPS";
|
||||||
|
FontManager.baloo17.drawString(string, 200, 50, -1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onEnable() {
|
||||||
|
super.onEnable();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onDisable() {
|
||||||
|
super.onDisable();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,68 @@
|
|||||||
|
package rip.athena.client.modules.impl.render;
|
||||||
|
|
||||||
|
import org.lwjgl.input.Keyboard;
|
||||||
|
import rip.athena.client.config.ConfigValue;
|
||||||
|
import rip.athena.client.events.SubscribeEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderType;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
|
import rip.athena.client.modules.Category;
|
||||||
|
import rip.athena.client.modules.Module;
|
||||||
|
|
||||||
|
import java.awt.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Athena Development
|
||||||
|
* @project Athena-Client
|
||||||
|
* @date 6/1/2023
|
||||||
|
*/
|
||||||
|
public class FPS5Mod extends Module {
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Background")
|
||||||
|
private boolean backGround = true;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Color")
|
||||||
|
private Color color = Color.WHITE;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Background Color")
|
||||||
|
private Color background = new Color(0, 0, 0, 150);
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Custom Font")
|
||||||
|
private boolean customFont = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Static Chroma")
|
||||||
|
private boolean isUsingStaticChroma = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Wave Chroma")
|
||||||
|
private boolean isUsingWaveChroma = false;
|
||||||
|
|
||||||
|
public FPS5Mod() {
|
||||||
|
super("FPS5", Category.RENDER);
|
||||||
|
|
||||||
|
setKeyBind(Keyboard.KEY_F);
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onRender(RenderEvent event) {
|
||||||
|
if (event.getRenderType() != RenderType.INGAME_OVERLAY) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mc.gameSettings.showDebugInfo) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
String string = mc.debug.split(" fps")[0] + " FPS";
|
||||||
|
FontManager.baloo17.drawString(string, 200, 50, -1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onEnable() {
|
||||||
|
super.onEnable();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onDisable() {
|
||||||
|
super.onDisable();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,68 @@
|
|||||||
|
package rip.athena.client.modules.impl.render;
|
||||||
|
|
||||||
|
import org.lwjgl.input.Keyboard;
|
||||||
|
import rip.athena.client.config.ConfigValue;
|
||||||
|
import rip.athena.client.events.SubscribeEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderType;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
|
import rip.athena.client.modules.Category;
|
||||||
|
import rip.athena.client.modules.Module;
|
||||||
|
|
||||||
|
import java.awt.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Athena Development
|
||||||
|
* @project Athena-Client
|
||||||
|
* @date 6/1/2023
|
||||||
|
*/
|
||||||
|
public class FPS6Mod extends Module {
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Background")
|
||||||
|
private boolean backGround = true;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Color")
|
||||||
|
private Color color = Color.WHITE;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Background Color")
|
||||||
|
private Color background = new Color(0, 0, 0, 150);
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Custom Font")
|
||||||
|
private boolean customFont = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Static Chroma")
|
||||||
|
private boolean isUsingStaticChroma = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Wave Chroma")
|
||||||
|
private boolean isUsingWaveChroma = false;
|
||||||
|
|
||||||
|
public FPS6Mod() {
|
||||||
|
super("FPS6", Category.RENDER);
|
||||||
|
|
||||||
|
setKeyBind(Keyboard.KEY_F);
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onRender(RenderEvent event) {
|
||||||
|
if (event.getRenderType() != RenderType.INGAME_OVERLAY) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mc.gameSettings.showDebugInfo) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
String string = mc.debug.split(" fps")[0] + " FPS";
|
||||||
|
FontManager.baloo17.drawString(string, 200, 50, -1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onEnable() {
|
||||||
|
super.onEnable();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onDisable() {
|
||||||
|
super.onDisable();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,68 @@
|
|||||||
|
package rip.athena.client.modules.impl.render;
|
||||||
|
|
||||||
|
import org.lwjgl.input.Keyboard;
|
||||||
|
import rip.athena.client.config.ConfigValue;
|
||||||
|
import rip.athena.client.events.SubscribeEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderType;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
|
import rip.athena.client.modules.Category;
|
||||||
|
import rip.athena.client.modules.Module;
|
||||||
|
|
||||||
|
import java.awt.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Athena Development
|
||||||
|
* @project Athena-Client
|
||||||
|
* @date 6/1/2023
|
||||||
|
*/
|
||||||
|
public class FPS7Mod extends Module {
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Background")
|
||||||
|
private boolean backGround = true;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Color")
|
||||||
|
private Color color = Color.WHITE;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Background Color")
|
||||||
|
private Color background = new Color(0, 0, 0, 150);
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Custom Font")
|
||||||
|
private boolean customFont = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Static Chroma")
|
||||||
|
private boolean isUsingStaticChroma = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Wave Chroma")
|
||||||
|
private boolean isUsingWaveChroma = false;
|
||||||
|
|
||||||
|
public FPS7Mod() {
|
||||||
|
super("FPS7", Category.RENDER);
|
||||||
|
|
||||||
|
setKeyBind(Keyboard.KEY_F);
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onRender(RenderEvent event) {
|
||||||
|
if (event.getRenderType() != RenderType.INGAME_OVERLAY) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mc.gameSettings.showDebugInfo) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
String string = mc.debug.split(" fps")[0] + " FPS";
|
||||||
|
FontManager.baloo17.drawString(string, 200, 50, -1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onEnable() {
|
||||||
|
super.onEnable();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onDisable() {
|
||||||
|
super.onDisable();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,68 @@
|
|||||||
|
package rip.athena.client.modules.impl.render;
|
||||||
|
|
||||||
|
import org.lwjgl.input.Keyboard;
|
||||||
|
import rip.athena.client.config.ConfigValue;
|
||||||
|
import rip.athena.client.events.SubscribeEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderType;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
|
import rip.athena.client.modules.Category;
|
||||||
|
import rip.athena.client.modules.Module;
|
||||||
|
|
||||||
|
import java.awt.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Athena Development
|
||||||
|
* @project Athena-Client
|
||||||
|
* @date 6/1/2023
|
||||||
|
*/
|
||||||
|
public class FPS8Mod extends Module {
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Background")
|
||||||
|
private boolean backGround = true;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Color")
|
||||||
|
private Color color = Color.WHITE;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Background Color")
|
||||||
|
private Color background = new Color(0, 0, 0, 150);
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Custom Font")
|
||||||
|
private boolean customFont = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Static Chroma")
|
||||||
|
private boolean isUsingStaticChroma = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Wave Chroma")
|
||||||
|
private boolean isUsingWaveChroma = false;
|
||||||
|
|
||||||
|
public FPS8Mod() {
|
||||||
|
super("FPS8", Category.RENDER);
|
||||||
|
|
||||||
|
setKeyBind(Keyboard.KEY_F);
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onRender(RenderEvent event) {
|
||||||
|
if (event.getRenderType() != RenderType.INGAME_OVERLAY) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mc.gameSettings.showDebugInfo) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
String string = mc.debug.split(" fps")[0] + " FPS";
|
||||||
|
FontManager.baloo17.drawString(string, 200, 50, -1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onEnable() {
|
||||||
|
super.onEnable();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onDisable() {
|
||||||
|
super.onDisable();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,68 @@
|
|||||||
|
package rip.athena.client.modules.impl.render;
|
||||||
|
|
||||||
|
import org.lwjgl.input.Keyboard;
|
||||||
|
import rip.athena.client.config.ConfigValue;
|
||||||
|
import rip.athena.client.events.SubscribeEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderEvent;
|
||||||
|
import rip.athena.client.events.types.render.RenderType;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
|
import rip.athena.client.modules.Category;
|
||||||
|
import rip.athena.client.modules.Module;
|
||||||
|
|
||||||
|
import java.awt.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Athena Development
|
||||||
|
* @project Athena-Client
|
||||||
|
* @date 6/1/2023
|
||||||
|
*/
|
||||||
|
public class FPS9Mod extends Module {
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Background")
|
||||||
|
private boolean backGround = true;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Color")
|
||||||
|
private Color color = Color.WHITE;
|
||||||
|
|
||||||
|
@ConfigValue.Color(name = "Background Color")
|
||||||
|
private Color background = new Color(0, 0, 0, 150);
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Custom Font")
|
||||||
|
private boolean customFont = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Static Chroma")
|
||||||
|
private boolean isUsingStaticChroma = false;
|
||||||
|
|
||||||
|
@ConfigValue.Boolean(name = "Wave Chroma")
|
||||||
|
private boolean isUsingWaveChroma = false;
|
||||||
|
|
||||||
|
public FPS9Mod() {
|
||||||
|
super("FPS9", Category.RENDER);
|
||||||
|
|
||||||
|
setKeyBind(Keyboard.KEY_F);
|
||||||
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void onRender(RenderEvent event) {
|
||||||
|
if (event.getRenderType() != RenderType.INGAME_OVERLAY) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mc.gameSettings.showDebugInfo) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
String string = mc.debug.split(" fps")[0] + " FPS";
|
||||||
|
FontManager.baloo17.drawString(string, 200, 50, -1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onEnable() {
|
||||||
|
super.onEnable();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onDisable() {
|
||||||
|
super.onDisable();
|
||||||
|
}
|
||||||
|
}
|
@ -6,6 +6,7 @@ import rip.athena.client.config.ConfigValue;
|
|||||||
import rip.athena.client.events.SubscribeEvent;
|
import rip.athena.client.events.SubscribeEvent;
|
||||||
import rip.athena.client.events.types.render.RenderEvent;
|
import rip.athena.client.events.types.render.RenderEvent;
|
||||||
import rip.athena.client.events.types.render.RenderType;
|
import rip.athena.client.events.types.render.RenderType;
|
||||||
|
import rip.athena.client.font.FontManager;
|
||||||
import rip.athena.client.modules.Category;
|
import rip.athena.client.modules.Category;
|
||||||
import rip.athena.client.modules.Module;
|
import rip.athena.client.modules.Module;
|
||||||
|
|
||||||
@ -53,7 +54,7 @@ public class FPSMod extends Module {
|
|||||||
}
|
}
|
||||||
|
|
||||||
String string = mc.debug.split(" fps")[0] + " FPS";
|
String string = mc.debug.split(" fps")[0] + " FPS";
|
||||||
mc.fontRendererObj.drawString(string, 200, 50, -1);
|
FontManager.baloo17.drawString(string, 200, 50, -1);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -14,7 +14,7 @@ import rip.athena.client.modules.Module;
|
|||||||
public class GUIMod extends Module {
|
public class GUIMod extends Module {
|
||||||
|
|
||||||
private int width = 1035;
|
private int width = 1035;
|
||||||
private int height = 485;
|
private int height = 525;
|
||||||
|
|
||||||
public IngameMenu menuImpl;
|
public IngameMenu menuImpl;
|
||||||
private Menu menu;
|
private Menu menu;
|
||||||
|
459
workspace/hs_err_pid10488.log
Normal file
459
workspace/hs_err_pid10488.log
Normal file
@ -0,0 +1,459 @@
|
|||||||
|
#
|
||||||
|
# A fatal error has been detected by the Java Runtime Environment:
|
||||||
|
#
|
||||||
|
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ffe922e366c, pid=10488, tid=0x0000000000000d18
|
||||||
|
#
|
||||||
|
# JRE version: Java(TM) SE Runtime Environment (8.0_202-b08) (build 1.8.0_202-b08)
|
||||||
|
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.202-b08 mixed mode windows-amd64 compressed oops)
|
||||||
|
# Problematic frame:
|
||||||
|
# C [igxelpicd64.dll+0x13366c]
|
||||||
|
#
|
||||||
|
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
|
||||||
|
#
|
||||||
|
# If you would like to submit a bug report, please visit:
|
||||||
|
# http://bugreport.java.com/bugreport/crash.jsp
|
||||||
|
#
|
||||||
|
|
||||||
|
--------------- T H R E A D ---------------
|
||||||
|
|
||||||
|
Current thread (0x000000001e965000): VMThread [stack: 0x00000000203e0000,0x00000000204e0000] [id=3352]
|
||||||
|
|
||||||
|
siginfo: ExceptionCode=0xc0000005, reading address 0x00000000000356f8
|
||||||
|
|
||||||
|
Registers:
|
||||||
|
RAX=0x000000002998f208, RBX=0x000000002998f100, RCX=0x0000000000000000, RDX=0x0000000000000000
|
||||||
|
RSP=0x00000000204de440, RBP=0x0000000000000000, RSI=0x000000002998f6d0, RDI=0x000000002984e5b0
|
||||||
|
R8 =0x0000000000000014, R9 =0x0000000000000000, R10=0x0000000000000000, R11=0x0000000000000000
|
||||||
|
R12=0x0000000000000000, R13=0x000000003b7047a0, R14=0x000000000d184300, R15=0x0000000000000016
|
||||||
|
RIP=0x00007ffe922e366c, EFLAGS=0x0000000000010202
|
||||||
|
|
||||||
|
Top of Stack: (sp=0x00000000204de440)
|
||||||
|
0x00000000204de440: 0000000029751b40 00007ffee6d3f070
|
||||||
|
0x00000000204de450: 0000000000000002 00007ffee6f30eb4
|
||||||
|
0x00000000204de460: 00000000000000c2 000000003cbb53a0
|
||||||
|
0x00000000204de470: 000000002486c250 000000000000005d
|
||||||
|
0x00000000204de480: 00000000298038f8 000000000d1843a7
|
||||||
|
0x00000000204de490: 0000000000000000 000000000000000e
|
||||||
|
0x00000000204de4a0: 0000000000000000 0000000000000000
|
||||||
|
0x00000000204de4b0: 00000000204de5c0 00007ffe9245bc3c
|
||||||
|
0x00000000204de4c0: 0000000029751b40 000000002984e5b0
|
||||||
|
0x00000000204de4d0: 00007ffee6f09300 000095164b883a00
|
||||||
|
0x00000000204de4e0: 0000000000000594 00007404195e0000
|
||||||
|
0x00000000204de4f0: 0000000000000000 00007ffee6ead23b
|
||||||
|
0x00000000204de500: 0000000000000001 00000000204de6b0
|
||||||
|
0x00000000204de510: 0000000000000002 00000000003c0000
|
||||||
|
0x00000000204de520: 00007ffee6ef79d0 00007ffe924519a0
|
||||||
|
0x00000000204de530: 00000000000004b4 00000000003c1c04
|
||||||
|
|
||||||
|
Instructions: (pc=0x00007ffe922e366c)
|
||||||
|
0x00007ffe922e364c: 83 20 01 00 00 48 8d 04 d5 21 00 00 00 48 03 c2
|
||||||
|
0x00007ffe922e365c: 48 8d 04 c3 48 85 c0 0f 85 ff 00 00 00 49 8b cb
|
||||||
|
0x00007ffe922e366c: 48 3b 8d f8 56 03 00 0f 87 f3 02 00 00 4c 39 9b
|
||||||
|
0x00007ffe922e367c: 48 06 00 00 0f 85 31 da 86 00 44 8b 97 c8 01 00
|
||||||
|
|
||||||
|
|
||||||
|
Register to memory mapping:
|
||||||
|
|
||||||
|
RAX=0x000000002998f208 is an unknown value
|
||||||
|
RBX=0x000000002998f100 is an unknown value
|
||||||
|
RCX=0x0000000000000000 is an unknown value
|
||||||
|
RDX=0x0000000000000000 is an unknown value
|
||||||
|
RSP=0x00000000204de440 is an unknown value
|
||||||
|
RBP=0x0000000000000000 is an unknown value
|
||||||
|
RSI=0x000000002998f6d0 is an unknown value
|
||||||
|
RDI=0x000000002984e5b0 is an unknown value
|
||||||
|
R8 =0x0000000000000014 is an unknown value
|
||||||
|
R9 =0x0000000000000000 is an unknown value
|
||||||
|
R10=0x0000000000000000 is an unknown value
|
||||||
|
R11=0x0000000000000000 is an unknown value
|
||||||
|
R12=0x0000000000000000 is an unknown value
|
||||||
|
R13=0x000000003b7047a0 is an unknown value
|
||||||
|
R14=0x000000000d184300 is an unknown value
|
||||||
|
R15=0x0000000000000016 is an unknown value
|
||||||
|
|
||||||
|
|
||||||
|
Stack: [0x00000000203e0000,0x00000000204e0000], sp=0x00000000204de440, free space=1017k
|
||||||
|
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
|
||||||
|
|
||||||
|
VM_Operation (0x0000000020adee40): Exit, mode: safepoint, requested by thread 0x0000000034c33000
|
||||||
|
|
||||||
|
|
||||||
|
--------------- P R O C E S S ---------------
|
||||||
|
|
||||||
|
Java Threads: ( => current thread )
|
||||||
|
0x0000000025bde000 JavaThread "AWT-Shutdown" [_thread_blocked, id=11036, stack(0x000000002f550000,0x000000002f650000)]
|
||||||
|
0x0000000034c33000 JavaThread "SIGINT handler" daemon [_thread_blocked, id=8736, stack(0x00000000209e0000,0x0000000020ae0000)]
|
||||||
|
0x0000000034c31000 JavaThread "File IO Thread" [_thread_blocked, id=4460, stack(0x0000000026890000,0x0000000026990000)]
|
||||||
|
0x0000000034c2c800 JavaThread "Netty Server IO #1" daemon [_thread_in_native, id=17588, stack(0x0000000043da0000,0x0000000043ea0000)]
|
||||||
|
0x00000000266cc000 JavaThread "Netty Local Client IO #0" daemon [_thread_blocked, id=12064, stack(0x0000000043ca0000,0x0000000043da0000)]
|
||||||
|
0x00000000266c7800 JavaThread "Netty Server IO #0" daemon [_thread_in_native, id=13496, stack(0x00000000437e0000,0x00000000438e0000)]
|
||||||
|
0x00000000266c9800 JavaThread "Server thread" [_thread_blocked, id=10988, stack(0x00000000434d0000,0x00000000435d0000)]
|
||||||
|
0x00000000266cd800 JavaThread "Snooper Timer" daemon [_thread_blocked, id=16996, stack(0x00000000431d0000,0x00000000432d0000)]
|
||||||
|
0x00000000266cb000 JavaThread "LWJGL Timer" daemon [_thread_blocked, id=1628, stack(0x000000003c090000,0x000000003c190000)]
|
||||||
|
0x00000000266cc800 JavaThread "Chunk Batcher 1" daemon [_thread_blocked, id=8136, stack(0x0000000032dc0000,0x0000000032ec0000)]
|
||||||
|
0x00000000266ca800 JavaThread "Chunk Batcher 0" daemon [_thread_blocked, id=7324, stack(0x00000000322a0000,0x00000000323a0000)]
|
||||||
|
0x00000000266c8000 JavaThread "Thread-8" [_thread_blocked, id=14904, stack(0x00000000324a0000,0x00000000325a0000)]
|
||||||
|
0x0000000026c16000 JavaThread "Thread-7" [_thread_blocked, id=13048, stack(0x00000000323a0000,0x00000000324a0000)]
|
||||||
|
0x0000000022f2f000 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=16920, stack(0x0000000027fd0000,0x00000000280d0000)]
|
||||||
|
0x0000000026805800 JavaThread "Timer hack thread" daemon [_thread_blocked, id=10824, stack(0x0000000027ed0000,0x0000000027fd0000)]
|
||||||
|
0x0000000025ff5800 JavaThread "Snooper Timer" daemon [_thread_blocked, id=7556, stack(0x00000000255c0000,0x00000000256c0000)]
|
||||||
|
0x000000001eae4000 JavaThread "Service Thread" daemon [_thread_blocked, id=19528, stack(0x00000000219e0000,0x0000000021ae0000)]
|
||||||
|
0x000000001ea51000 JavaThread "C1 CompilerThread11" daemon [_thread_blocked, id=13728, stack(0x00000000218e0000,0x00000000219e0000)]
|
||||||
|
0x000000001ea47800 JavaThread "C1 CompilerThread10" daemon [_thread_blocked, id=20384, stack(0x00000000217e0000,0x00000000218e0000)]
|
||||||
|
0x000000001ea3e800 JavaThread "C1 CompilerThread9" daemon [_thread_blocked, id=17456, stack(0x00000000216e0000,0x00000000217e0000)]
|
||||||
|
0x000000001ea3c000 JavaThread "C1 CompilerThread8" daemon [_thread_blocked, id=19228, stack(0x00000000215e0000,0x00000000216e0000)]
|
||||||
|
0x000000001ea33000 JavaThread "C2 CompilerThread7" daemon [_thread_blocked, id=7512, stack(0x00000000214e0000,0x00000000215e0000)]
|
||||||
|
0x000000001ea30800 JavaThread "C2 CompilerThread6" daemon [_thread_blocked, id=16684, stack(0x00000000213e0000,0x00000000214e0000)]
|
||||||
|
0x000000001ea2e800 JavaThread "C2 CompilerThread5" daemon [_thread_blocked, id=21096, stack(0x00000000212e0000,0x00000000213e0000)]
|
||||||
|
0x000000001ea2e000 JavaThread "C2 CompilerThread4" daemon [_thread_blocked, id=11960, stack(0x00000000210e0000,0x00000000211e0000)]
|
||||||
|
0x000000001ea2d000 JavaThread "C2 CompilerThread3" daemon [_thread_blocked, id=15020, stack(0x0000000020fe0000,0x00000000210e0000)]
|
||||||
|
0x000000001ea2a800 JavaThread "C2 CompilerThread2" daemon [_thread_blocked, id=17128, stack(0x0000000020ee0000,0x0000000020fe0000)]
|
||||||
|
0x000000001ea23800 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=16448, stack(0x0000000020de0000,0x0000000020ee0000)]
|
||||||
|
0x000000001ea21800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=13936, stack(0x0000000020ce0000,0x0000000020de0000)]
|
||||||
|
0x000000001e9bf800 JavaThread "JDWP Event Helper Thread" daemon [_thread_blocked, id=20076, stack(0x0000000020ae0000,0x0000000020be0000)]
|
||||||
|
0x000000001e9a7800 JavaThread "Attach Listener" daemon [_thread_blocked, id=9932, stack(0x00000000208e0000,0x00000000209e0000)]
|
||||||
|
0x000000001e9a6800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=9524, stack(0x00000000207e0000,0x00000000208e0000)]
|
||||||
|
0x000000001e98e000 JavaThread "Finalizer" daemon [_thread_blocked, id=11712, stack(0x00000000205e0000,0x00000000206e0000)]
|
||||||
|
0x000000001e987800 JavaThread "Reference Handler" daemon [_thread_blocked, id=18184, stack(0x00000000204e0000,0x00000000205e0000)]
|
||||||
|
0x0000000002b44800 JavaThread "Client thread" [_thread_blocked, id=11152, stack(0x0000000002580000,0x0000000002680000)]
|
||||||
|
|
||||||
|
Other Threads:
|
||||||
|
=>0x000000001e965000 VMThread [stack: 0x00000000203e0000,0x00000000204e0000] [id=3352]
|
||||||
|
|
||||||
|
VM state:at safepoint (shutting down)
|
||||||
|
|
||||||
|
VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
|
||||||
|
[0x0000000002b41cd0] Threads_lock - owner thread: 0x000000001e965000
|
||||||
|
|
||||||
|
heap address: 0x00000006c5a00000, size: 4006 MB, Compressed Oops mode: Zero based, Oop shift amount: 3
|
||||||
|
Narrow klass base: 0x0000000000000000, Narrow klass shift: 3
|
||||||
|
Compressed class space size: 1073741824 Address: 0x00000007c0000000
|
||||||
|
|
||||||
|
Heap:
|
||||||
|
PSYoungGen total 831488K, used 31280K [0x000000076c900000, 0x00000007a1000000, 0x00000007c0000000)
|
||||||
|
eden space 804864K, 2% used [0x000000076c900000,0x000000076d964210,0x000000079db00000)
|
||||||
|
from space 26624K, 54% used [0x000000079db00000,0x000000079e928000,0x000000079f500000)
|
||||||
|
to space 25600K, 0% used [0x000000079f700000,0x000000079f700000,0x00000007a1000000)
|
||||||
|
ParOldGen total 764416K, used 426784K [0x00000006c5a00000, 0x00000006f4480000, 0x000000076c900000)
|
||||||
|
object space 764416K, 55% used [0x00000006c5a00000,0x00000006dfac8050,0x00000006f4480000)
|
||||||
|
Metaspace used 46923K, capacity 47427K, committed 47576K, reserved 1091584K
|
||||||
|
class space used 5434K, capacity 5575K, committed 5632K, reserved 1048576K
|
||||||
|
|
||||||
|
Card table byte_map: [0x0000000012000000,0x00000000127e0000] byte_map_base: 0x000000000e9d3000
|
||||||
|
|
||||||
|
Marking Bits: (ParMarkBitMap*) 0x0000000060ce5ce0
|
||||||
|
Begin Bits: [0x0000000013c20000, 0x0000000017ab8000)
|
||||||
|
End Bits: [0x0000000017ab8000, 0x000000001b950000)
|
||||||
|
|
||||||
|
Polling page: 0x0000000000b00000
|
||||||
|
|
||||||
|
CodeCache: size=245760Kb used=39523Kb max_used=41185Kb free=206236Kb
|
||||||
|
bounds [0x0000000002c40000, 0x0000000005520000, 0x0000000011c40000]
|
||||||
|
total_blobs=9368 nmethods=8477 adapters=807
|
||||||
|
compilation: enabled
|
||||||
|
|
||||||
|
Compilation events (10 events):
|
||||||
|
Event: 1025.000 Thread 0x000000001ea51000 12696 1 java.lang.StackTraceElement::getClassName (5 bytes)
|
||||||
|
Event: 1025.000 Thread 0x000000001ea51000 nmethod 12696 0x0000000003c460d0 code [0x0000000003c46220, 0x0000000003c46330]
|
||||||
|
Event: 1025.000 Thread 0x000000001ea3c000 nmethod 12694 0x0000000003464d90 code [0x0000000003464ee0, 0x00000000034650f0]
|
||||||
|
Event: 1025.001 Thread 0x000000001ea3e800 12697 1 sun.nio.cs.StreamEncoder::isOpen (5 bytes)
|
||||||
|
Event: 1025.001 Thread 0x000000001ea3e800 nmethod 12697 0x000000000348e250 code [0x000000000348e3a0, 0x000000000348e4b0]
|
||||||
|
Event: 1025.001 Thread 0x000000001ea21800 12698 4 java.lang.String::valueOf (14 bytes)
|
||||||
|
Event: 1025.002 Thread 0x000000001ea47800 nmethod 12695 0x0000000003d34590 code [0x0000000003d346e0, 0x0000000003d347f0]
|
||||||
|
Event: 1025.002 Thread 0x000000001ea21800 nmethod 12698 0x000000000456cd50 code [0x000000000456ce80, 0x000000000456cef8]
|
||||||
|
Event: 1025.005 Thread 0x000000001ea47800 12699 s 3 java.io.ExpiringCache::clear (10 bytes)
|
||||||
|
Event: 1025.005 Thread 0x000000001ea47800 nmethod 12699 0x0000000003b4e590 code [0x0000000003b4e700, 0x0000000003b4ea88]
|
||||||
|
|
||||||
|
GC Heap History (10 events):
|
||||||
|
Event: 982.494 GC heap before
|
||||||
|
{Heap before GC invocations=120 (full 7):
|
||||||
|
PSYoungGen total 827904K, used 812224K [0x000000076c900000, 0x00000007a1200000, 0x00000007c0000000)
|
||||||
|
eden space 797696K, 100% used [0x000000076c900000,0x000000079d400000,0x000000079d400000)
|
||||||
|
from space 30208K, 48% used [0x000000079f480000,0x00000007a02b0000,0x00000007a1200000)
|
||||||
|
to space 31744K, 0% used [0x000000079d400000,0x000000079d400000,0x000000079f300000)
|
||||||
|
ParOldGen total 764416K, used 426744K [0x00000006c5a00000, 0x00000006f4480000, 0x000000076c900000)
|
||||||
|
object space 764416K, 55% used [0x00000006c5a00000,0x00000006dfabe050,0x00000006f4480000)
|
||||||
|
Metaspace used 46903K, capacity 47427K, committed 47576K, reserved 1091584K
|
||||||
|
class space used 5430K, capacity 5575K, committed 5632K, reserved 1048576K
|
||||||
|
Event: 982.497 GC heap after
|
||||||
|
Heap after GC invocations=120 (full 7):
|
||||||
|
PSYoungGen total 829440K, used 14336K [0x000000076c900000, 0x00000007a1280000, 0x00000007c0000000)
|
||||||
|
eden space 797696K, 0% used [0x000000076c900000,0x000000076c900000,0x000000079d400000)
|
||||||
|
from space 31744K, 45% used [0x000000079d400000,0x000000079e200000,0x000000079f300000)
|
||||||
|
to space 30208K, 0% used [0x000000079f500000,0x000000079f500000,0x00000007a1280000)
|
||||||
|
ParOldGen total 764416K, used 426744K [0x00000006c5a00000, 0x00000006f4480000, 0x000000076c900000)
|
||||||
|
object space 764416K, 55% used [0x00000006c5a00000,0x00000006dfabe050,0x00000006f4480000)
|
||||||
|
Metaspace used 46903K, capacity 47427K, committed 47576K, reserved 1091584K
|
||||||
|
class space used 5430K, capacity 5575K, committed 5632K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 992.395 GC heap before
|
||||||
|
{Heap before GC invocations=121 (full 7):
|
||||||
|
PSYoungGen total 829440K, used 812032K [0x000000076c900000, 0x00000007a1280000, 0x00000007c0000000)
|
||||||
|
eden space 797696K, 100% used [0x000000076c900000,0x000000079d400000,0x000000079d400000)
|
||||||
|
from space 31744K, 45% used [0x000000079d400000,0x000000079e200000,0x000000079f300000)
|
||||||
|
to space 30208K, 0% used [0x000000079f500000,0x000000079f500000,0x00000007a1280000)
|
||||||
|
ParOldGen total 764416K, used 426744K [0x00000006c5a00000, 0x00000006f4480000, 0x000000076c900000)
|
||||||
|
object space 764416K, 55% used [0x00000006c5a00000,0x00000006dfabe050,0x00000006f4480000)
|
||||||
|
Metaspace used 46905K, capacity 47427K, committed 47576K, reserved 1091584K
|
||||||
|
class space used 5430K, capacity 5575K, committed 5632K, reserved 1048576K
|
||||||
|
Event: 992.399 GC heap after
|
||||||
|
Heap after GC invocations=121 (full 7):
|
||||||
|
PSYoungGen total 828416K, used 15744K [0x000000076c900000, 0x00000007a0f80000, 0x00000007c0000000)
|
||||||
|
eden space 801280K, 0% used [0x000000076c900000,0x000000076c900000,0x000000079d780000)
|
||||||
|
from space 27136K, 58% used [0x000000079f500000,0x00000007a0460000,0x00000007a0f80000)
|
||||||
|
to space 28672K, 0% used [0x000000079d780000,0x000000079d780000,0x000000079f380000)
|
||||||
|
ParOldGen total 764416K, used 426752K [0x00000006c5a00000, 0x00000006f4480000, 0x000000076c900000)
|
||||||
|
object space 764416K, 55% used [0x00000006c5a00000,0x00000006dfac0050,0x00000006f4480000)
|
||||||
|
Metaspace used 46905K, capacity 47427K, committed 47576K, reserved 1091584K
|
||||||
|
class space used 5430K, capacity 5575K, committed 5632K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 1003.712 GC heap before
|
||||||
|
{Heap before GC invocations=122 (full 7):
|
||||||
|
PSYoungGen total 828416K, used 817024K [0x000000076c900000, 0x00000007a0f80000, 0x00000007c0000000)
|
||||||
|
eden space 801280K, 100% used [0x000000076c900000,0x000000079d780000,0x000000079d780000)
|
||||||
|
from space 27136K, 58% used [0x000000079f500000,0x00000007a0460000,0x00000007a0f80000)
|
||||||
|
to space 28672K, 0% used [0x000000079d780000,0x000000079d780000,0x000000079f380000)
|
||||||
|
ParOldGen total 764416K, used 426752K [0x00000006c5a00000, 0x00000006f4480000, 0x000000076c900000)
|
||||||
|
object space 764416K, 55% used [0x00000006c5a00000,0x00000006dfac0050,0x00000006f4480000)
|
||||||
|
Metaspace used 46905K, capacity 47427K, committed 47576K, reserved 1091584K
|
||||||
|
class space used 5430K, capacity 5575K, committed 5632K, reserved 1048576K
|
||||||
|
Event: 1003.716 GC heap after
|
||||||
|
Heap after GC invocations=122 (full 7):
|
||||||
|
PSYoungGen total 829952K, used 14656K [0x000000076c900000, 0x00000007a1080000, 0x00000007c0000000)
|
||||||
|
eden space 801280K, 0% used [0x000000076c900000,0x000000076c900000,0x000000079d780000)
|
||||||
|
from space 28672K, 51% used [0x000000079d780000,0x000000079e5d0000,0x000000079f380000)
|
||||||
|
to space 27648K, 0% used [0x000000079f580000,0x000000079f580000,0x00000007a1080000)
|
||||||
|
ParOldGen total 764416K, used 426768K [0x00000006c5a00000, 0x00000006f4480000, 0x000000076c900000)
|
||||||
|
object space 764416K, 55% used [0x00000006c5a00000,0x00000006dfac4050,0x00000006f4480000)
|
||||||
|
Metaspace used 46905K, capacity 47427K, committed 47576K, reserved 1091584K
|
||||||
|
class space used 5430K, capacity 5575K, committed 5632K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 1014.585 GC heap before
|
||||||
|
{Heap before GC invocations=123 (full 7):
|
||||||
|
PSYoungGen total 829952K, used 815936K [0x000000076c900000, 0x00000007a1080000, 0x00000007c0000000)
|
||||||
|
eden space 801280K, 100% used [0x000000076c900000,0x000000079d780000,0x000000079d780000)
|
||||||
|
from space 28672K, 51% used [0x000000079d780000,0x000000079e5d0000,0x000000079f380000)
|
||||||
|
to space 27648K, 0% used [0x000000079f580000,0x000000079f580000,0x00000007a1080000)
|
||||||
|
ParOldGen total 764416K, used 426768K [0x00000006c5a00000, 0x00000006f4480000, 0x000000076c900000)
|
||||||
|
object space 764416K, 55% used [0x00000006c5a00000,0x00000006dfac4050,0x00000006f4480000)
|
||||||
|
Metaspace used 46905K, capacity 47427K, committed 47576K, reserved 1091584K
|
||||||
|
class space used 5430K, capacity 5575K, committed 5632K, reserved 1048576K
|
||||||
|
Event: 1014.590 GC heap after
|
||||||
|
Heap after GC invocations=123 (full 7):
|
||||||
|
PSYoungGen total 830976K, used 14496K [0x000000076c900000, 0x00000007a0f00000, 0x00000007c0000000)
|
||||||
|
eden space 804864K, 0% used [0x000000076c900000,0x000000076c900000,0x000000079db00000)
|
||||||
|
from space 26112K, 55% used [0x000000079f580000,0x00000007a03a8000,0x00000007a0f00000)
|
||||||
|
to space 26624K, 0% used [0x000000079db00000,0x000000079db00000,0x000000079f500000)
|
||||||
|
ParOldGen total 764416K, used 426768K [0x00000006c5a00000, 0x00000006f4480000, 0x000000076c900000)
|
||||||
|
object space 764416K, 55% used [0x00000006c5a00000,0x00000006dfac4050,0x00000006f4480000)
|
||||||
|
Metaspace used 46905K, capacity 47427K, committed 47576K, reserved 1091584K
|
||||||
|
class space used 5430K, capacity 5575K, committed 5632K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 1025.045 GC heap before
|
||||||
|
{Heap before GC invocations=124 (full 7):
|
||||||
|
PSYoungGen total 830976K, used 819360K [0x000000076c900000, 0x00000007a0f00000, 0x00000007c0000000)
|
||||||
|
eden space 804864K, 100% used [0x000000076c900000,0x000000079db00000,0x000000079db00000)
|
||||||
|
from space 26112K, 55% used [0x000000079f580000,0x00000007a03a8000,0x00000007a0f00000)
|
||||||
|
to space 26624K, 0% used [0x000000079db00000,0x000000079db00000,0x000000079f500000)
|
||||||
|
ParOldGen total 764416K, used 426768K [0x00000006c5a00000, 0x00000006f4480000, 0x000000076c900000)
|
||||||
|
object space 764416K, 55% used [0x00000006c5a00000,0x00000006dfac4050,0x00000006f4480000)
|
||||||
|
Metaspace used 46923K, capacity 47427K, committed 47576K, reserved 1091584K
|
||||||
|
class space used 5434K, capacity 5575K, committed 5632K, reserved 1048576K
|
||||||
|
Event: 1025.048 GC heap after
|
||||||
|
Heap after GC invocations=124 (full 7):
|
||||||
|
PSYoungGen total 831488K, used 14496K [0x000000076c900000, 0x00000007a1000000, 0x00000007c0000000)
|
||||||
|
eden space 804864K, 0% used [0x000000076c900000,0x000000076c900000,0x000000079db00000)
|
||||||
|
from space 26624K, 54% used [0x000000079db00000,0x000000079e928000,0x000000079f500000)
|
||||||
|
to space 25600K, 0% used [0x000000079f700000,0x000000079f700000,0x00000007a1000000)
|
||||||
|
ParOldGen total 764416K, used 426784K [0x00000006c5a00000, 0x00000006f4480000, 0x000000076c900000)
|
||||||
|
object space 764416K, 55% used [0x00000006c5a00000,0x00000006dfac8050,0x00000006f4480000)
|
||||||
|
Metaspace used 46923K, capacity 47427K, committed 47576K, reserved 1091584K
|
||||||
|
class space used 5434K, capacity 5575K, committed 5632K, reserved 1048576K
|
||||||
|
}
|
||||||
|
|
||||||
|
Deoptimization events (10 events):
|
||||||
|
Event: 1024.992 Thread 0x00000000266c7800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000035f6c80 method=io.netty.util.internal.MpscLinkedQueue.offer(Ljava/lang/Object;)Z @ 18
|
||||||
|
Event: 1024.992 Thread 0x00000000266c9000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000031bbd88 method=org.apache.logging.log4j.status.StatusLogger.isEnabled(Lorg/apache/logging/log4j/Level;Lorg/apache/logging/log4j/Marker;)Z @ 18
|
||||||
|
Event: 1024.996 Thread 0x00000000266c7800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000004012a14 method=io.netty.util.internal.MpscLinkedQueue.poll()Ljava/lang/Object; @ 26
|
||||||
|
Event: 1024.996 Thread 0x00000000266c7800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000004b065b4 method=io.netty.channel.AbstractChannelHandlerContext.executor()Lio/netty/util/concurrent/EventExecutor; @ 11
|
||||||
|
Event: 1024.996 Thread 0x00000000266c7800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000004b065b4 method=io.netty.channel.AbstractChannelHandlerContext.executor()Lio/netty/util/concurrent/EventExecutor; @ 11
|
||||||
|
Event: 1024.996 Thread 0x00000000266c7800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000004012a14 method=io.netty.util.internal.MpscLinkedQueue.poll()Ljava/lang/Object; @ 26
|
||||||
|
Event: 1024.996 Thread 0x00000000266c9000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000000000421ffd4 method=java.text.SimpleDateFormat.zeroPaddingNumber(IIILjava/lang/StringBuffer;)V @ 118
|
||||||
|
Event: 1024.996 Thread 0x00000000266c9000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000048e5c68 method=java.text.DecimalFormat.subformat(Ljava/lang/StringBuffer;Ljava/text/Format$FieldDelegate;ZZIIII)Ljava/lang/StringBuffer; @ 865
|
||||||
|
Event: 1025.091 Thread 0x0000000034c33000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x000000000305f044 method=java.util.AbstractCollection.toArray()[Ljava/lang/Object; @ 22
|
||||||
|
Event: 1025.091 Thread 0x0000000034c33000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000004944e50 method=java.util.Collections.reverse(Ljava/util/List;)V @ 1
|
||||||
|
|
||||||
|
Classes redefined (1 events):
|
||||||
|
Event: 0.142 Thread 0x000000001e965000 redefined class name=java.io.FileOutputStream, count=1
|
||||||
|
|
||||||
|
Internal exceptions (10 events):
|
||||||
|
Event: 1025.038 Thread 0x0000000026c16000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x000000079aa9f820) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 1025.042 Thread 0x0000000026c16000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x000000079aa9fac8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 1025.049 Thread 0x0000000026c16000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x000000076d836a08) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 1025.057 Thread 0x0000000026c16000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x000000076d836cb0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 1025.065 Thread 0x0000000026c16000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x000000076d836f58) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 1025.069 Thread 0x0000000026c16000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x000000076d837200) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 1025.075 Thread 0x0000000026c16000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x000000076d8374a8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 1025.078 Thread 0x0000000026c16000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x000000076d837750) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 1025.083 Thread 0x0000000026c16000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x000000076d8379f8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 1025.088 Thread 0x0000000026c16000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x000000076d837ca0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
|
||||||
|
Events (10 events):
|
||||||
|
Event: 1025.088 Thread 0x0000000026c16000 DEOPT PACKING pc=0x000000000455d45c sp=0x000000003249f170
|
||||||
|
Event: 1025.088 Thread 0x0000000026c16000 DEOPT UNPACKING pc=0x0000000002c87890 sp=0x000000003249ee88 mode 1
|
||||||
|
Event: 1025.090 Thread 0x0000000034c2d000 Thread exited: 0x0000000034c2d000
|
||||||
|
Event: 1025.091 Thread 0x0000000034c33000 Uncommon trap: trap_request=0xffffffc6 fr.pc=0x000000000305f044
|
||||||
|
Event: 1025.091 Thread 0x0000000034c33000 DEOPT PACKING pc=0x000000000305f044 sp=0x0000000020adece0
|
||||||
|
Event: 1025.091 Thread 0x0000000034c33000 DEOPT UNPACKING pc=0x0000000002c8583b sp=0x0000000020adeca8 mode 2
|
||||||
|
Event: 1025.091 Thread 0x0000000034c33000 Uncommon trap: trap_request=0xffffffde fr.pc=0x0000000004944e50
|
||||||
|
Event: 1025.091 Thread 0x0000000034c33000 DEOPT PACKING pc=0x0000000004944e50 sp=0x0000000020adecf0
|
||||||
|
Event: 1025.091 Thread 0x0000000034c33000 DEOPT UNPACKING pc=0x0000000002c8583b sp=0x0000000020aded28 mode 2
|
||||||
|
Event: 1025.092 Executing VM operation: Exit
|
||||||
|
|
||||||
|
|
||||||
|
Dynamic libraries:
|
||||||
|
0x00007ff75c730000 - 0x00007ff75c767000 C:\Program Files\Java\jdk1.8.0_202\bin\java.exe
|
||||||
|
0x00007ffee6e90000 - 0x00007ffee7088000 C:\WINDOWS\SYSTEM32\ntdll.dll
|
||||||
|
0x00007ffee6bf0000 - 0x00007ffee6caf000 C:\WINDOWS\System32\KERNEL32.DLL
|
||||||
|
0x00007ffee68f0000 - 0x00007ffee6be6000 C:\WINDOWS\System32\KERNELBASE.dll
|
||||||
|
0x0000000073460000 - 0x000000007349b000 C:\WINDOWS\System32\cyinjct.dll
|
||||||
|
0x00007ffee6770000 - 0x00007ffee677c000 C:\WINDOWS\System32\ntnativeapi.dll
|
||||||
|
0x00007ffee6750000 - 0x00007ffee676e000 C:\WINDOWS\System32\cyvera.dll
|
||||||
|
0x00007ffee66e0000 - 0x00007ffee6749000 C:\WINDOWS\System32\cyvrtrap.dll
|
||||||
|
0x00007ffee5570000 - 0x00007ffee561f000 C:\WINDOWS\System32\ADVAPI32.dll
|
||||||
|
0x00007ffee60e0000 - 0x00007ffee617e000 C:\WINDOWS\System32\msvcrt.dll
|
||||||
|
0x00007ffee5220000 - 0x00007ffee52bc000 C:\WINDOWS\System32\sechost.dll
|
||||||
|
0x00007ffee67c0000 - 0x00007ffee68e6000 C:\WINDOWS\System32\RPCRT4.dll
|
||||||
|
0x00007ffee6cb0000 - 0x00007ffee6e4d000 C:\WINDOWS\System32\USER32.dll
|
||||||
|
0x00007ffee4620000 - 0x00007ffee4642000 C:\WINDOWS\System32\win32u.dll
|
||||||
|
0x00007ffee5fc0000 - 0x00007ffee5fec000 C:\WINDOWS\System32\GDI32.dll
|
||||||
|
0x00007ffee49b0000 - 0x00007ffee4ac5000 C:\WINDOWS\System32\gdi32full.dll
|
||||||
|
0x00007ffee4860000 - 0x00007ffee48fd000 C:\WINDOWS\System32\msvcp_win.dll
|
||||||
|
0x00007ffee4650000 - 0x00007ffee4750000 C:\WINDOWS\System32\ucrtbase.dll
|
||||||
|
0x00007ffec1bc0000 - 0x00007ffec1e5a000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.19041.1110_none_60b5254171f9507e\COMCTL32.dll
|
||||||
|
0x00007ffee5b00000 - 0x00007ffee5b30000 C:\WINDOWS\System32\IMM32.DLL
|
||||||
|
0x0000000061400000 - 0x00000000614d2000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\msvcr100.dll
|
||||||
|
0x00000000604c0000 - 0x0000000060d65000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\server\jvm.dll
|
||||||
|
0x00007ffee57c0000 - 0x00007ffee57c8000 C:\WINDOWS\System32\PSAPI.DLL
|
||||||
|
0x00007ffedf6d0000 - 0x00007ffedf6d9000 C:\WINDOWS\SYSTEM32\WSOCK32.dll
|
||||||
|
0x00007ffee5f50000 - 0x00007ffee5fbb000 C:\WINDOWS\System32\WS2_32.dll
|
||||||
|
0x00007ffec5030000 - 0x00007ffec5057000 C:\WINDOWS\SYSTEM32\WINMM.dll
|
||||||
|
0x00007ffedddb0000 - 0x00007ffedddba000 C:\WINDOWS\SYSTEM32\VERSION.dll
|
||||||
|
0x00007ffedc960000 - 0x00007ffedc96f000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\verify.dll
|
||||||
|
0x00007ffeca120000 - 0x00007ffeca149000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\java.dll
|
||||||
|
0x00007ffed8fa0000 - 0x00007ffed8fd5000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\jdwp.dll
|
||||||
|
0x00007ffeda810000 - 0x00007ffeda818000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\npt.dll
|
||||||
|
0x00007ffed8f70000 - 0x00007ffed8f93000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\instrument.dll
|
||||||
|
0x00007ffee66a0000 - 0x00007ffee66d7000 C:\Program Files\Palo Alto Networks\Traps\cyjagent.dll
|
||||||
|
0x00007ffed4290000 - 0x00007ffed42a6000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\zip.dll
|
||||||
|
0x00007ffee4ad0000 - 0x00007ffee5214000 C:\WINDOWS\System32\SHELL32.dll
|
||||||
|
0x00007ffee1f40000 - 0x00007ffee26d3000 C:\WINDOWS\SYSTEM32\windows.storage.dll
|
||||||
|
0x00007ffee5b30000 - 0x00007ffee5e84000 C:\WINDOWS\System32\combase.dll
|
||||||
|
0x00007ffee3dd0000 - 0x00007ffee3dfe000 C:\WINDOWS\SYSTEM32\Wldp.dll
|
||||||
|
0x00007ffee6180000 - 0x00007ffee622d000 C:\WINDOWS\System32\SHCORE.dll
|
||||||
|
0x00007ffee5e90000 - 0x00007ffee5ee5000 C:\WINDOWS\System32\shlwapi.dll
|
||||||
|
0x00007ffee4390000 - 0x00007ffee43af000 C:\WINDOWS\SYSTEM32\profapi.dll
|
||||||
|
0x00007ffeda800000 - 0x00007ffeda809000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\dt_socket.dll
|
||||||
|
0x00007ffee3bb0000 - 0x00007ffee3c1a000 C:\WINDOWS\system32\mswsock.dll
|
||||||
|
0x00007ffed8f60000 - 0x00007ffed8f6d000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\management.dll
|
||||||
|
0x00007ffed3980000 - 0x00007ffed399a000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\net.dll
|
||||||
|
0x00007ffed13d0000 - 0x00007ffed15bc000 C:\WINDOWS\SYSTEM32\urlmon.dll
|
||||||
|
0x00007ffedcd00000 - 0x00007ffedcfb1000 C:\WINDOWS\SYSTEM32\iertutil.dll
|
||||||
|
0x00007ffee3070000 - 0x00007ffee3098000 C:\WINDOWS\SYSTEM32\srvcli.dll
|
||||||
|
0x00007ffee38b0000 - 0x00007ffee38bc000 C:\WINDOWS\SYSTEM32\netutils.dll
|
||||||
|
0x00007ffed43d0000 - 0x00007ffed43e2000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\nio.dll
|
||||||
|
0x00007ffeab2e0000 - 0x00007ffeab2f7000 C:\WINDOWS\system32\napinsp.dll
|
||||||
|
0x00007ffeab300000 - 0x00007ffeab31b000 C:\WINDOWS\system32\pnrpnsp.dll
|
||||||
|
0x00007ffeded70000 - 0x00007ffeded85000 C:\WINDOWS\system32\wshbth.dll
|
||||||
|
0x00007ffede0f0000 - 0x00007ffede10d000 C:\WINDOWS\system32\NLAapi.dll
|
||||||
|
0x00007ffee3870000 - 0x00007ffee38ac000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
|
||||||
|
0x00007ffee38c0000 - 0x00007ffee398b000 C:\WINDOWS\SYSTEM32\DNSAPI.dll
|
||||||
|
0x00007ffee5850000 - 0x00007ffee5858000 C:\WINDOWS\System32\NSI.dll
|
||||||
|
0x00007ffeab320000 - 0x00007ffeab332000 C:\WINDOWS\System32\winrnr.dll
|
||||||
|
0x00007ffeddf50000 - 0x00007ffeddfd2000 C:\WINDOWS\System32\fwpuclnt.dll
|
||||||
|
0x00007ffee4830000 - 0x00007ffee4857000 C:\WINDOWS\System32\bcrypt.dll
|
||||||
|
0x00007ffedd130000 - 0x00007ffedd13a000 C:\Windows\System32\rasadhlp.dll
|
||||||
|
0x0000000180000000 - 0x0000000180053000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\lwjgl64.dll
|
||||||
|
0x00007ffea9980000 - 0x00007ffea9aa5000 C:\WINDOWS\SYSTEM32\OPENGL32.dll
|
||||||
|
0x00007ffed8ca0000 - 0x00007ffed8ccc000 C:\WINDOWS\SYSTEM32\GLU32.dll
|
||||||
|
0x00007ffee3e10000 - 0x00007ffee3e28000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll
|
||||||
|
0x00007ffee3370000 - 0x00007ffee33a4000 C:\WINDOWS\system32\rsaenh.dll
|
||||||
|
0x00007ffee4310000 - 0x00007ffee433e000 C:\WINDOWS\SYSTEM32\USERENV.dll
|
||||||
|
0x00007ffee4750000 - 0x00007ffee47d2000 C:\WINDOWS\System32\bcryptprimitives.dll
|
||||||
|
0x00007ffee3d40000 - 0x00007ffee3d4c000 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
|
||||||
|
0x00007ffeddee0000 - 0x00007ffeddef7000 C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL
|
||||||
|
0x00007ffeddec0000 - 0x00007ffeddedd000 C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL
|
||||||
|
0x00007ffe931b0000 - 0x00007ffe93349000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\awt.dll
|
||||||
|
0x00007ffee53f0000 - 0x00007ffee54bd000 C:\WINDOWS\System32\OLEAUT32.dll
|
||||||
|
0x00007ffee1180000 - 0x00007ffee1211000 C:\WINDOWS\SYSTEM32\apphelp.dll
|
||||||
|
0x00007ffeddb00000 - 0x00007ffeddbae000 C:\WINDOWS\SYSTEM32\mscms.dll
|
||||||
|
0x00007ffedda90000 - 0x00007ffeddaa1000 C:\WINDOWS\SYSTEM32\ColorAdapterClient.dll
|
||||||
|
0x00007ffee2d60000 - 0x00007ffee2d72000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll
|
||||||
|
0x00007ffee54c0000 - 0x00007ffee5569000 C:\WINDOWS\System32\clbcatq.dll
|
||||||
|
0x00007ffed06d0000 - 0x00007ffed0713000 C:\Windows\System32\Windows.Internal.Graphics.Display.DisplayColorManagement.dll
|
||||||
|
0x00007ffee47e0000 - 0x00007ffee482e000 C:\WINDOWS\System32\cfgmgr32.dll
|
||||||
|
0x00007ffee1820000 - 0x00007ffee18be000 C:\WINDOWS\system32\uxtheme.dll
|
||||||
|
0x00007ffee5620000 - 0x00007ffee5734000 C:\WINDOWS\System32\MSCTF.dll
|
||||||
|
0x00007ffec9a60000 - 0x00007ffec9b5a000 C:\WINDOWS\SYSTEM32\textinputframework.dll
|
||||||
|
0x00007ffee0bf0000 - 0x00007ffee0f4e000 C:\WINDOWS\System32\CoreUIComponents.dll
|
||||||
|
0x00007ffee0f50000 - 0x00007ffee1042000 C:\WINDOWS\System32\CoreMessaging.dll
|
||||||
|
0x00007ffee35c0000 - 0x00007ffee35f3000 C:\WINDOWS\SYSTEM32\ntmarta.dll
|
||||||
|
0x00007ffee0520000 - 0x00007ffee0674000 C:\WINDOWS\SYSTEM32\wintypes.dll
|
||||||
|
0x00007ffed4fa0000 - 0x00007ffed50a4000 C:\Windows\System32\AppXDeploymentClient.dll
|
||||||
|
0x00007ffe921b0000 - 0x00007ffe931a3000 C:\WINDOWS\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_307c52ae370e15f2\igxelpicd64.dll
|
||||||
|
0x00007ffee52c0000 - 0x00007ffee53ea000 C:\WINDOWS\System32\ole32.dll
|
||||||
|
0x00007ffee1950000 - 0x00007ffee197f000 C:\WINDOWS\system32\dwmapi.dll
|
||||||
|
0x00007ffee2ae0000 - 0x00007ffee2bd3000 C:\WINDOWS\system32\dxgi.dll
|
||||||
|
0x00007ffe90070000 - 0x00007ffe904c3000 C:\WINDOWS\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_307c52ae370e15f2\igdml64.dll
|
||||||
|
0x00007ffecdc00000 - 0x00007ffecdfc7000 C:\WINDOWS\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_307c52ae370e15f2\igdgmm64.dll
|
||||||
|
0x00007ffe815f0000 - 0x00007ffe81633000 C:\WINDOWS\SYSTEM32\icm32.dll
|
||||||
|
0x00007ffeca5e0000 - 0x00007ffecdbf1000 C:\WINDOWS\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_307c52ae370e15f2\igc64.dll
|
||||||
|
0x00007ffee3990000 - 0x00007ffee39db000 C:\WINDOWS\SYSTEM32\powrprof.dll
|
||||||
|
0x00007ffee3850000 - 0x00007ffee3862000 C:\WINDOWS\SYSTEM32\UMPDC.dll
|
||||||
|
0x0000000026a70000 - 0x0000000026aa8000 C:\Users\remgab001\AppData\Local\Temp\jna\jna1866738200587367287.dll
|
||||||
|
0x0000000070a40000 - 0x0000000070adc000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\avutil-ttv-51.dll
|
||||||
|
0x0000000065980000 - 0x00000000659d6000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\swresample-ttv-0.dll
|
||||||
|
0x000000006eb80000 - 0x000000006ec50000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\libmp3lame-ttv.dll
|
||||||
|
0x00007ffe3a610000 - 0x00007ffe3b9b4000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\libmfxsw64.dll
|
||||||
|
0x00007ffe9a350000 - 0x00007ffe9a4bd000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\twitchsdk.dll
|
||||||
|
0x00007ffec4920000 - 0x00007ffec4df9000 C:\WINDOWS\SYSTEM32\WININET.dll
|
||||||
|
0x00000000280d0000 - 0x0000000028134000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\OpenAL64.dll
|
||||||
|
0x00007ffedbfa0000 - 0x00007ffedc025000 C:\WINDOWS\System32\MMDevApi.dll
|
||||||
|
0x00007ffee4200000 - 0x00007ffee422c000 C:\WINDOWS\System32\DEVOBJ.dll
|
||||||
|
0x00007ffe91f90000 - 0x00007ffe9202c000 C:\WINDOWS\SYSTEM32\dsound.dll
|
||||||
|
0x00007ffec4e00000 - 0x00007ffec4e26000 C:\WINDOWS\SYSTEM32\winmmbase.dll
|
||||||
|
0x00007ffedc0f0000 - 0x00007ffedc272000 C:\WINDOWS\SYSTEM32\AUDIOSES.DLL
|
||||||
|
0x00007ffee1a60000 - 0x00007ffee1a74000 C:\WINDOWS\SYSTEM32\resourcepolicyclient.dll
|
||||||
|
0x00007ffe954f0000 - 0x00007ffe95537000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\fontmanager.dll
|
||||||
|
0x00007ffe8f2b0000 - 0x00007ffe8f2f2000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\t2k.dll
|
||||||
|
0x00007ffeb1190000 - 0x00007ffeb11ba000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\dcpr.dll
|
||||||
|
0x00007ffee27b0000 - 0x00007ffee2994000 C:\WINDOWS\SYSTEM32\dbghelp.dll
|
||||||
|
|
||||||
|
VM Arguments:
|
||||||
|
jvm_args: -agentlib:jdwp=transport=dt_socket,address=127.0.0.1:61547,suspend=y,server=n -Djava.library.path=versions/1.8.8/1.8.8-natives/ -javaagent:C:\Users\remgab001\AppData\Local\JetBrains\IdeaIC2023.1\captureAgent\debugger-agent.jar -Dfile.encoding=UTF-8 -agentpath:C:\Program Files\Palo Alto Networks\Traps\cyjagent.dll
|
||||||
|
java_command: Start
|
||||||
|
java_class_path (initial): C:\Program Files\Java\jdk1.8.0_202\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\deploy.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\access-bridge-64.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\cldrdata.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\dnsns.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\jaccess.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\jfxrt.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\localedata.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\nashorn.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\sunec.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\sunjce_provider.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\sunmscapi.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\sunpkcs11.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\zipfs.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\javaws.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jce.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jfr.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jfxswt.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\management-agent.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\plugin.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\resources.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\rt.jar;C:\Users\remgab001\Desktop\Athena-Client\target\classes;C:\Users\remgab001\.m2\repository\net\minecraft\minecraft\1.8.8\minecraft-1.8.8.jar;C:\Users\remgab001\.m2\repository\org\json\json\20230227\json-20230227.jar;C:\Users\remgab001\.m2\repository\org\reflections\reflections\0.10.2\reflections-0.10.2.jar;C:\Users\remgab001\.m2\repository\org\javassist\javassist\3.28.0-GA\javassist-3.28.0-GA.jar;C:\Users\remgab001\.m2\repository\com\google\code\findbugs\jsr305\3.0.2\jsr305-3.0.2.jar;C:\Users\remgab001\.m2\repository\org\slf4j\slf4j-api\1.7.32\slf4j-api-1.7.32.jar;C:\Users\remgab001\.m2\repository\oshi-project\oshi-core\1.1\oshi-core-1.1.jar;
|
||||||
|
Launcher Type: SUN_STANDARD
|
||||||
|
|
||||||
|
Environment Variables:
|
||||||
|
PATH=C:\Program Files\Google\Chrome\Application;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\nodejs\;C:\Program Files\Git\cmd;C:\Users\remgab001\AppData\Local\Microsoft\WindowsApps;C:\Users\remgab001\AppData\Roaming\npm;C:\Users\remgab001\AppData\Local\Programs\Microsoft VS Code\bin
|
||||||
|
USERNAME=remgab001
|
||||||
|
OS=Windows_NT
|
||||||
|
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 154 Stepping 3, GenuineIntel
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
--------------- S Y S T E M ---------------
|
||||||
|
|
||||||
|
OS: Windows 10.0 , 64 bit Build 19041 (10.0.19041.2913)
|
||||||
|
|
||||||
|
CPU:total 20 (initial active 20) (10 cores per cpu, 2 threads per core) family 6 model 154 stepping 3, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, clmul, erms, 3dnowpref, lzcnt, ht, tsc, tscinvbit, bmi1, bmi2, adx
|
||||||
|
|
||||||
|
Memory: 4k page, physical 16400820k(1983436k free), swap 33178036k(12085124k free)
|
||||||
|
|
||||||
|
vm_info: Java HotSpot(TM) 64-Bit Server VM (25.202-b08) for windows-amd64 JRE (1.8.0_202-b08), built on Dec 15 2018 19:54:30 by "java_re" with MS VC++ 10.0 (VS2010)
|
||||||
|
|
||||||
|
time: Fri Jun 02 13:00:05 2023
|
||||||
|
timezone: Vest-Europa (sommertid)
|
||||||
|
elapsed time: 1025 seconds (0d 0h 17m 5s)
|
||||||
|
|
456
workspace/hs_err_pid11320.log
Normal file
456
workspace/hs_err_pid11320.log
Normal file
@ -0,0 +1,456 @@
|
|||||||
|
#
|
||||||
|
# A fatal error has been detected by the Java Runtime Environment:
|
||||||
|
#
|
||||||
|
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ffe9248366c, pid=11320, tid=0x0000000000002f00
|
||||||
|
#
|
||||||
|
# JRE version: Java(TM) SE Runtime Environment (8.0_202-b08) (build 1.8.0_202-b08)
|
||||||
|
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.202-b08 mixed mode windows-amd64 compressed oops)
|
||||||
|
# Problematic frame:
|
||||||
|
# C [igxelpicd64.dll+0x13366c]
|
||||||
|
#
|
||||||
|
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
|
||||||
|
#
|
||||||
|
# If you would like to submit a bug report, please visit:
|
||||||
|
# http://bugreport.java.com/bugreport/crash.jsp
|
||||||
|
#
|
||||||
|
|
||||||
|
--------------- T H R E A D ---------------
|
||||||
|
|
||||||
|
Current thread (0x000000001e7f4800): VMThread [stack: 0x0000000020270000,0x0000000020370000] [id=12032]
|
||||||
|
|
||||||
|
siginfo: ExceptionCode=0xc0000005, reading address 0x00000000000356f8
|
||||||
|
|
||||||
|
Registers:
|
||||||
|
RAX=0x000000003a6b8a68, RBX=0x000000003a6b8960, RCX=0x0000000000000000, RDX=0x0000000000000000
|
||||||
|
RSP=0x000000002036e550, RBP=0x0000000000000000, RSI=0x000000003a6b8f30, RDI=0x0000000029dbaa40
|
||||||
|
R8 =0x0000000000000014, R9 =0x0000000000000000, R10=0x0000000000000000, R11=0x0000000000000000
|
||||||
|
R12=0x0000000000000000, R13=0x000000003a6b8ff0, R14=0x00000000008afd00, R15=0x0000000000000016
|
||||||
|
RIP=0x00007ffe9248366c, EFLAGS=0x0000000000010202
|
||||||
|
|
||||||
|
Top of Stack: (sp=0x000000002036e550)
|
||||||
|
0x000000002036e550: 0000000000712430 00007ffee6d3f070
|
||||||
|
0x000000002036e560: 0000000000000002 00007ffee6f30eb4
|
||||||
|
0x000000002036e570: 000000000000ffff 00000000274b0180
|
||||||
|
0x000000002036e580: 00000000247b3000 000000000000000d
|
||||||
|
0x000000002036e590: 0000000028290478 00000000008afd03
|
||||||
|
0x000000002036e5a0: 0000000000000000 000000000000000d
|
||||||
|
0x000000002036e5b0: 0000000000000000 0000000000000000
|
||||||
|
0x000000002036e5c0: 000000002036e6d0 00007ffe925fbc3c
|
||||||
|
0x000000002036e5d0: 0000000000712430 0000000029dbaa40
|
||||||
|
0x000000002036e5e0: 00007ffee6f09300 000000001e7f3900
|
||||||
|
0x000000002036e5f0: 0000000000002204 000074041d3a0000
|
||||||
|
0x000000002036e600: 0000000000000000 00007ffee6ead23b
|
||||||
|
0x000000002036e610: 0000000000000001 000000002036e7c0
|
||||||
|
0x000000002036e620: 0000000000000002 0000000000360000
|
||||||
|
0x000000002036e630: 00007ffee6ef79d0 00007ffe925f19a0
|
||||||
|
0x000000002036e640: 00000000000004b4 0000000000361c04
|
||||||
|
|
||||||
|
Instructions: (pc=0x00007ffe9248366c)
|
||||||
|
0x00007ffe9248364c: 83 20 01 00 00 48 8d 04 d5 21 00 00 00 48 03 c2
|
||||||
|
0x00007ffe9248365c: 48 8d 04 c3 48 85 c0 0f 85 ff 00 00 00 49 8b cb
|
||||||
|
0x00007ffe9248366c: 48 3b 8d f8 56 03 00 0f 87 f3 02 00 00 4c 39 9b
|
||||||
|
0x00007ffe9248367c: 48 06 00 00 0f 85 31 da 86 00 44 8b 97 c8 01 00
|
||||||
|
|
||||||
|
|
||||||
|
Register to memory mapping:
|
||||||
|
|
||||||
|
RAX=0x000000003a6b8a68 is an unknown value
|
||||||
|
RBX=0x000000003a6b8960 is an unknown value
|
||||||
|
RCX=0x0000000000000000 is an unknown value
|
||||||
|
RDX=0x0000000000000000 is an unknown value
|
||||||
|
RSP=0x000000002036e550 is an unknown value
|
||||||
|
RBP=0x0000000000000000 is an unknown value
|
||||||
|
RSI=0x000000003a6b8f30 is an unknown value
|
||||||
|
RDI=0x0000000029dbaa40 is an unknown value
|
||||||
|
R8 =0x0000000000000014 is an unknown value
|
||||||
|
R9 =0x0000000000000000 is an unknown value
|
||||||
|
R10=0x0000000000000000 is an unknown value
|
||||||
|
R11=0x0000000000000000 is an unknown value
|
||||||
|
R12=0x0000000000000000 is an unknown value
|
||||||
|
R13=0x000000003a6b8ff0 is an unknown value
|
||||||
|
R14=0x00000000008afd00 is an unknown value
|
||||||
|
R15=0x0000000000000016 is an unknown value
|
||||||
|
|
||||||
|
|
||||||
|
Stack: [0x0000000020270000,0x0000000020370000], sp=0x000000002036e550, free space=1017k
|
||||||
|
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
|
||||||
|
|
||||||
|
VM_Operation (0x000000002096efd0): Exit, mode: safepoint, requested by thread 0x00000000266d5800
|
||||||
|
|
||||||
|
|
||||||
|
--------------- P R O C E S S ---------------
|
||||||
|
|
||||||
|
Java Threads: ( => current thread )
|
||||||
|
0x000000001e850800 JavaThread "AWT-Shutdown" [_thread_blocked, id=16584, stack(0x0000000020a70000,0x0000000020b70000)]
|
||||||
|
0x00000000266d5800 JavaThread "SIGINT handler" daemon [_thread_blocked, id=1628, stack(0x0000000020870000,0x0000000020970000)]
|
||||||
|
0x00000000266da000 JavaThread "File IO Thread" [_thread_blocked, id=21108, stack(0x0000000030540000,0x0000000030640000)]
|
||||||
|
0x00000000266d8000 JavaThread "pool-2-thread-1" [_thread_blocked, id=10920, stack(0x0000000044d20000,0x0000000044e20000)]
|
||||||
|
0x000000001e852800 JavaThread "Netty Server IO #1" daemon [_thread_in_native, id=15252, stack(0x0000000044720000,0x0000000044820000)]
|
||||||
|
0x000000001e851000 JavaThread "Netty Local Client IO #0" daemon [_thread_blocked, id=9004, stack(0x0000000044620000,0x0000000044720000)]
|
||||||
|
0x000000001e852000 JavaThread "Netty Server IO #0" daemon [_thread_in_native, id=2508, stack(0x0000000033910000,0x0000000033a10000)]
|
||||||
|
0x0000000026512800 JavaThread "LWJGL Timer" daemon [_thread_blocked, id=12540, stack(0x0000000044320000,0x0000000044420000)]
|
||||||
|
0x0000000026517000 JavaThread "Chunk Batcher 1" daemon [_thread_blocked, id=4948, stack(0x00000000351e0000,0x00000000352e0000)]
|
||||||
|
0x0000000026511800 JavaThread "Chunk Batcher 0" daemon [_thread_blocked, id=8428, stack(0x00000000332c0000,0x00000000333c0000)]
|
||||||
|
0x000000001e854000 JavaThread "Thread-8" [_thread_blocked, id=19340, stack(0x0000000031060000,0x0000000031160000)]
|
||||||
|
0x00000000247b3000 JavaThread "Thread-7" [_thread_blocked, id=4800, stack(0x0000000033400000,0x0000000033500000)]
|
||||||
|
0x000000002650c800 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=11916, stack(0x0000000027d70000,0x0000000027e70000)]
|
||||||
|
0x0000000028866800 JavaThread "Timer hack thread" daemon [_thread_blocked, id=15380, stack(0x0000000025620000,0x0000000025720000)]
|
||||||
|
0x00000000266d0800 JavaThread "Snooper Timer" daemon [_thread_blocked, id=12184, stack(0x0000000025520000,0x0000000025620000)]
|
||||||
|
0x000000001e979000 JavaThread "Service Thread" daemon [_thread_blocked, id=7188, stack(0x0000000021870000,0x0000000021970000)]
|
||||||
|
0x000000001e924000 JavaThread "C1 CompilerThread11" daemon [_thread_blocked, id=14876, stack(0x0000000021770000,0x0000000021870000)]
|
||||||
|
0x000000001e911000 JavaThread "C1 CompilerThread10" daemon [_thread_blocked, id=1780, stack(0x0000000021670000,0x0000000021770000)]
|
||||||
|
0x000000001e8f4000 JavaThread "C1 CompilerThread9" daemon [_thread_blocked, id=9052, stack(0x0000000021570000,0x0000000021670000)]
|
||||||
|
0x000000001e8e8800 JavaThread "C1 CompilerThread8" daemon [_thread_blocked, id=17544, stack(0x0000000021470000,0x0000000021570000)]
|
||||||
|
0x000000001e8d7800 JavaThread "C2 CompilerThread7" daemon [_thread_blocked, id=13580, stack(0x0000000021370000,0x0000000021470000)]
|
||||||
|
0x000000001e8cd000 JavaThread "C2 CompilerThread6" daemon [_thread_blocked, id=4876, stack(0x0000000021270000,0x0000000021370000)]
|
||||||
|
0x000000001e8c3000 JavaThread "C2 CompilerThread5" daemon [_thread_blocked, id=6740, stack(0x0000000021170000,0x0000000021270000)]
|
||||||
|
0x000000001e8c2800 JavaThread "C2 CompilerThread4" daemon [_thread_blocked, id=9668, stack(0x0000000021070000,0x0000000021170000)]
|
||||||
|
0x000000001e8c1800 JavaThread "C2 CompilerThread3" daemon [_thread_blocked, id=10308, stack(0x0000000020f70000,0x0000000021070000)]
|
||||||
|
0x000000001e8c1000 JavaThread "C2 CompilerThread2" daemon [_thread_blocked, id=10084, stack(0x0000000020d70000,0x0000000020e70000)]
|
||||||
|
0x000000001e8ba000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=15680, stack(0x0000000020c70000,0x0000000020d70000)]
|
||||||
|
0x000000001e870800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=20464, stack(0x0000000020b70000,0x0000000020c70000)]
|
||||||
|
0x000000001e84f800 JavaThread "JDWP Event Helper Thread" daemon [_thread_blocked, id=12324, stack(0x0000000020970000,0x0000000020a70000)]
|
||||||
|
0x000000001e839800 JavaThread "Attach Listener" daemon [_thread_blocked, id=16776, stack(0x0000000020770000,0x0000000020870000)]
|
||||||
|
0x000000001e838000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=5100, stack(0x0000000020670000,0x0000000020770000)]
|
||||||
|
0x000000001cb4b000 JavaThread "Finalizer" daemon [_thread_blocked, id=18188, stack(0x0000000020470000,0x0000000020570000)]
|
||||||
|
0x000000001e818000 JavaThread "Reference Handler" daemon [_thread_blocked, id=18324, stack(0x0000000020370000,0x0000000020470000)]
|
||||||
|
0x0000000002b64800 JavaThread "Client thread" [_thread_blocked, id=14088, stack(0x0000000002520000,0x0000000002620000)]
|
||||||
|
|
||||||
|
Other Threads:
|
||||||
|
=>0x000000001e7f4800 VMThread [stack: 0x0000000020270000,0x0000000020370000] [id=12032]
|
||||||
|
|
||||||
|
VM state:at safepoint (shutting down)
|
||||||
|
|
||||||
|
VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
|
||||||
|
[0x0000000002b619d0] Threads_lock - owner thread: 0x000000001e7f4800
|
||||||
|
|
||||||
|
heap address: 0x00000006c5a00000, size: 4006 MB, Compressed Oops mode: Zero based, Oop shift amount: 3
|
||||||
|
Narrow klass base: 0x0000000000000000, Narrow klass shift: 3
|
||||||
|
Compressed class space size: 1073741824 Address: 0x00000007c0000000
|
||||||
|
|
||||||
|
Heap:
|
||||||
|
PSYoungGen total 569344K, used 85208K [0x000000076c900000, 0x0000000799d00000, 0x00000007c0000000)
|
||||||
|
eden space 516608K, 10% used [0x000000076c900000,0x000000076fceac00,0x000000078c180000)
|
||||||
|
from space 52736K, 60% used [0x000000078c180000,0x000000078e0cb458,0x000000078f500000)
|
||||||
|
to space 53248K, 0% used [0x0000000796900000,0x0000000796900000,0x0000000799d00000)
|
||||||
|
ParOldGen total 253952K, used 121840K [0x00000006c5a00000, 0x00000006d5200000, 0x000000076c900000)
|
||||||
|
object space 253952K, 47% used [0x00000006c5a00000,0x00000006cd0fc350,0x00000006d5200000)
|
||||||
|
Metaspace used 45882K, capacity 46353K, committed 46592K, reserved 1089536K
|
||||||
|
class space used 5407K, capacity 5548K, committed 5632K, reserved 1048576K
|
||||||
|
|
||||||
|
Card table byte_map: [0x0000000012020000,0x0000000012800000] byte_map_base: 0x000000000e9f3000
|
||||||
|
|
||||||
|
Marking Bits: (ParMarkBitMap*) 0x0000000060ce5ce0
|
||||||
|
Begin Bits: [0x0000000013c40000, 0x0000000017ad8000)
|
||||||
|
End Bits: [0x0000000017ad8000, 0x000000001b970000)
|
||||||
|
|
||||||
|
Polling page: 0x00000000003f0000
|
||||||
|
|
||||||
|
CodeCache: size=245760Kb used=32646Kb max_used=34735Kb free=213113Kb
|
||||||
|
bounds [0x0000000002c60000, 0x0000000004e80000, 0x0000000011c60000]
|
||||||
|
total_blobs=8169 nmethods=7285 adapters=800
|
||||||
|
compilation: enabled
|
||||||
|
|
||||||
|
Compilation events (10 events):
|
||||||
|
Event: 67.947 Thread 0x000000001e911000 nmethod 9609 0x000000000406ff50 code [0x00000000040700c0, 0x00000000040703e8]
|
||||||
|
Event: 67.947 Thread 0x000000001e911000 9610 3 sun.reflect.generics.reflectiveObjects.ParameterizedTypeImpl::getRawType (5 bytes)
|
||||||
|
Event: 67.947 Thread 0x000000001e911000 nmethod 9610 0x0000000004191210 code [0x0000000004191360, 0x00000000041914d0]
|
||||||
|
Event: 67.947 Thread 0x000000001e911000 9612 3 java.lang.Class::getGenericInterfaces (21 bytes)
|
||||||
|
Event: 67.947 Thread 0x000000001e8e8800 nmethod 9613 0x00000000034c55d0 code [0x00000000034c57c0, 0x00000000034c6398]
|
||||||
|
Event: 67.948 Thread 0x000000001e911000 nmethod 9612 0x00000000040a6d10 code [0x00000000040a6ea0, 0x00000000040a7188]
|
||||||
|
Event: 67.948 Thread 0x000000001e8c1800 nmethod 9607 0x00000000033bdc90 code [0x00000000033bdde0, 0x00000000033bde68]
|
||||||
|
Event: 67.948 Thread 0x000000001e8e8800 9614 3 java.util.concurrent.ConcurrentHashMap::comparableClassFor (105 bytes)
|
||||||
|
Event: 67.948 Thread 0x000000001e924000 nmethod 9611 0x00000000040776d0 code [0x0000000004077900, 0x00000000040785e8]
|
||||||
|
Event: 67.948 Thread 0x000000001e8e8800 nmethod 9614 0x000000000429f210 code [0x000000000429f420, 0x00000000042a0048]
|
||||||
|
|
||||||
|
GC Heap History (10 events):
|
||||||
|
Event: 11.125 GC heap before
|
||||||
|
{Heap before GC invocations=20 (full 5):
|
||||||
|
PSYoungGen total 373248K, used 342172K [0x000000076c900000, 0x000000078b700000, 0x00000007c0000000)
|
||||||
|
eden space 326656K, 96% used [0x000000076c900000,0x000000077fc5f5a8,0x0000000780800000)
|
||||||
|
from space 46592K, 58% used [0x0000000783680000,0x0000000785147c78,0x0000000786400000)
|
||||||
|
to space 47616K, 0% used [0x0000000780800000,0x0000000780800000,0x0000000783680000)
|
||||||
|
ParOldGen total 253952K, used 121800K [0x00000006c5a00000, 0x00000006d5200000, 0x000000076c900000)
|
||||||
|
object space 253952K, 47% used [0x00000006c5a00000,0x00000006cd0f2350,0x00000006d5200000)
|
||||||
|
Metaspace used 44256K, capacity 44691K, committed 44928K, reserved 1089536K
|
||||||
|
class space used 5365K, capacity 5495K, committed 5504K, reserved 1048576K
|
||||||
|
Event: 11.136 GC heap after
|
||||||
|
Heap after GC invocations=20 (full 5):
|
||||||
|
PSYoungGen total 374272K, used 29915K [0x000000076c900000, 0x000000078b700000, 0x00000007c0000000)
|
||||||
|
eden space 326656K, 0% used [0x000000076c900000,0x000000076c900000,0x0000000780800000)
|
||||||
|
from space 47616K, 62% used [0x0000000780800000,0x0000000782536c98,0x0000000783680000)
|
||||||
|
to space 49152K, 0% used [0x0000000788700000,0x0000000788700000,0x000000078b700000)
|
||||||
|
ParOldGen total 253952K, used 121808K [0x00000006c5a00000, 0x00000006d5200000, 0x000000076c900000)
|
||||||
|
object space 253952K, 47% used [0x00000006c5a00000,0x00000006cd0f4350,0x00000006d5200000)
|
||||||
|
Metaspace used 44256K, capacity 44691K, committed 44928K, reserved 1089536K
|
||||||
|
class space used 5365K, capacity 5495K, committed 5504K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 11.389 GC heap before
|
||||||
|
{Heap before GC invocations=21 (full 5):
|
||||||
|
PSYoungGen total 374272K, used 356571K [0x000000076c900000, 0x000000078b700000, 0x00000007c0000000)
|
||||||
|
eden space 326656K, 100% used [0x000000076c900000,0x0000000780800000,0x0000000780800000)
|
||||||
|
from space 47616K, 62% used [0x0000000780800000,0x0000000782536c98,0x0000000783680000)
|
||||||
|
to space 49152K, 0% used [0x0000000788700000,0x0000000788700000,0x000000078b700000)
|
||||||
|
ParOldGen total 253952K, used 121808K [0x00000006c5a00000, 0x00000006d5200000, 0x000000076c900000)
|
||||||
|
object space 253952K, 47% used [0x00000006c5a00000,0x00000006cd0f4350,0x00000006d5200000)
|
||||||
|
Metaspace used 44277K, capacity 44691K, committed 44928K, reserved 1089536K
|
||||||
|
class space used 5365K, capacity 5495K, committed 5504K, reserved 1048576K
|
||||||
|
Event: 11.401 GC heap after
|
||||||
|
Heap after GC invocations=21 (full 5):
|
||||||
|
PSYoungGen total 455680K, used 30139K [0x000000076c900000, 0x000000078c280000, 0x00000007c0000000)
|
||||||
|
eden space 406528K, 0% used [0x000000076c900000,0x000000076c900000,0x0000000785600000)
|
||||||
|
from space 49152K, 61% used [0x0000000788700000,0x000000078a46ec98,0x000000078b700000)
|
||||||
|
to space 50176K, 0% used [0x0000000785600000,0x0000000785600000,0x0000000788700000)
|
||||||
|
ParOldGen total 253952K, used 121816K [0x00000006c5a00000, 0x00000006d5200000, 0x000000076c900000)
|
||||||
|
object space 253952K, 47% used [0x00000006c5a00000,0x00000006cd0f6350,0x00000006d5200000)
|
||||||
|
Metaspace used 44277K, capacity 44691K, committed 44928K, reserved 1089536K
|
||||||
|
class space used 5365K, capacity 5495K, committed 5504K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 11.873 GC heap before
|
||||||
|
{Heap before GC invocations=22 (full 5):
|
||||||
|
PSYoungGen total 455680K, used 433316K [0x000000076c900000, 0x000000078c280000, 0x00000007c0000000)
|
||||||
|
eden space 406528K, 99% used [0x000000076c900000,0x00000007852ba3f8,0x0000000785600000)
|
||||||
|
from space 49152K, 61% used [0x0000000788700000,0x000000078a46ec98,0x000000078b700000)
|
||||||
|
to space 50176K, 0% used [0x0000000785600000,0x0000000785600000,0x0000000788700000)
|
||||||
|
ParOldGen total 253952K, used 121816K [0x00000006c5a00000, 0x00000006d5200000, 0x000000076c900000)
|
||||||
|
object space 253952K, 47% used [0x00000006c5a00000,0x00000006cd0f6350,0x00000006d5200000)
|
||||||
|
Metaspace used 44413K, capacity 44851K, committed 45056K, reserved 1089536K
|
||||||
|
class space used 5374K, capacity 5527K, committed 5632K, reserved 1048576K
|
||||||
|
Event: 11.892 GC heap after
|
||||||
|
Heap after GC invocations=22 (full 5):
|
||||||
|
PSYoungGen total 456704K, used 30120K [0x000000076c900000, 0x0000000792b00000, 0x00000007c0000000)
|
||||||
|
eden space 406528K, 0% used [0x000000076c900000,0x000000076c900000,0x0000000785600000)
|
||||||
|
from space 50176K, 60% used [0x0000000785600000,0x000000078736a218,0x0000000788700000)
|
||||||
|
to space 50688K, 0% used [0x000000078f980000,0x000000078f980000,0x0000000792b00000)
|
||||||
|
ParOldGen total 253952K, used 121824K [0x00000006c5a00000, 0x00000006d5200000, 0x000000076c900000)
|
||||||
|
object space 253952K, 47% used [0x00000006c5a00000,0x00000006cd0f8350,0x00000006d5200000)
|
||||||
|
Metaspace used 44413K, capacity 44851K, committed 45056K, reserved 1089536K
|
||||||
|
class space used 5374K, capacity 5527K, committed 5632K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 12.712 GC heap before
|
||||||
|
{Heap before GC invocations=23 (full 5):
|
||||||
|
PSYoungGen total 456704K, used 436648K [0x000000076c900000, 0x0000000792b00000, 0x00000007c0000000)
|
||||||
|
eden space 406528K, 100% used [0x000000076c900000,0x0000000785600000,0x0000000785600000)
|
||||||
|
from space 50176K, 60% used [0x0000000785600000,0x000000078736a218,0x0000000788700000)
|
||||||
|
to space 50688K, 0% used [0x000000078f980000,0x000000078f980000,0x0000000792b00000)
|
||||||
|
ParOldGen total 253952K, used 121824K [0x00000006c5a00000, 0x00000006d5200000, 0x000000076c900000)
|
||||||
|
object space 253952K, 47% used [0x00000006c5a00000,0x00000006cd0f8350,0x00000006d5200000)
|
||||||
|
Metaspace used 44461K, capacity 44851K, committed 45056K, reserved 1089536K
|
||||||
|
class space used 5374K, capacity 5527K, committed 5632K, reserved 1048576K
|
||||||
|
Event: 12.727 GC heap after
|
||||||
|
Heap after GC invocations=23 (full 5):
|
||||||
|
PSYoungGen total 564736K, used 34107K [0x000000076c900000, 0x0000000792880000, 0x00000007c0000000)
|
||||||
|
eden space 516608K, 0% used [0x000000076c900000,0x000000076c900000,0x000000078c180000)
|
||||||
|
from space 48128K, 70% used [0x000000078f980000,0x0000000791acef88,0x0000000792880000)
|
||||||
|
to space 52736K, 0% used [0x000000078c180000,0x000000078c180000,0x000000078f500000)
|
||||||
|
ParOldGen total 253952K, used 121832K [0x00000006c5a00000, 0x00000006d5200000, 0x000000076c900000)
|
||||||
|
object space 253952K, 47% used [0x00000006c5a00000,0x00000006cd0fa350,0x00000006d5200000)
|
||||||
|
Metaspace used 44461K, capacity 44851K, committed 45056K, reserved 1089536K
|
||||||
|
class space used 5374K, capacity 5527K, committed 5632K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 46.906 GC heap before
|
||||||
|
{Heap before GC invocations=24 (full 5):
|
||||||
|
PSYoungGen total 564736K, used 550715K [0x000000076c900000, 0x0000000792880000, 0x00000007c0000000)
|
||||||
|
eden space 516608K, 100% used [0x000000076c900000,0x000000078c180000,0x000000078c180000)
|
||||||
|
from space 48128K, 70% used [0x000000078f980000,0x0000000791acef88,0x0000000792880000)
|
||||||
|
to space 52736K, 0% used [0x000000078c180000,0x000000078c180000,0x000000078f500000)
|
||||||
|
ParOldGen total 253952K, used 121832K [0x00000006c5a00000, 0x00000006d5200000, 0x000000076c900000)
|
||||||
|
object space 253952K, 47% used [0x00000006c5a00000,0x00000006cd0fa350,0x00000006d5200000)
|
||||||
|
Metaspace used 45841K, capacity 46353K, committed 46592K, reserved 1089536K
|
||||||
|
class space used 5402K, capacity 5548K, committed 5632K, reserved 1048576K
|
||||||
|
Event: 46.917 GC heap after
|
||||||
|
Heap after GC invocations=24 (full 5):
|
||||||
|
PSYoungGen total 569344K, used 32045K [0x000000076c900000, 0x0000000799d00000, 0x00000007c0000000)
|
||||||
|
eden space 516608K, 0% used [0x000000076c900000,0x000000076c900000,0x000000078c180000)
|
||||||
|
from space 52736K, 60% used [0x000000078c180000,0x000000078e0cb458,0x000000078f500000)
|
||||||
|
to space 53248K, 0% used [0x0000000796900000,0x0000000796900000,0x0000000799d00000)
|
||||||
|
ParOldGen total 253952K, used 121840K [0x00000006c5a00000, 0x00000006d5200000, 0x000000076c900000)
|
||||||
|
object space 253952K, 47% used [0x00000006c5a00000,0x00000006cd0fc350,0x00000006d5200000)
|
||||||
|
Metaspace used 45841K, capacity 46353K, committed 46592K, reserved 1089536K
|
||||||
|
class space used 5402K, capacity 5548K, committed 5632K, reserved 1048576K
|
||||||
|
}
|
||||||
|
|
||||||
|
Deoptimization events (10 events):
|
||||||
|
Event: 67.896 Thread 0x00000000266e0000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000004c33774 method=io.netty.channel.AbstractChannelHandlerContext.executor()Lio/netty/util/concurrent/EventExecutor; @ 11
|
||||||
|
Event: 67.901 Thread 0x000000001e852000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000004c33774 method=io.netty.channel.AbstractChannelHandlerContext.executor()Lio/netty/util/concurrent/EventExecutor; @ 11
|
||||||
|
Event: 67.901 Thread 0x000000001e852000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000004c33774 method=io.netty.channel.AbstractChannelHandlerContext.executor()Lio/netty/util/concurrent/EventExecutor; @ 11
|
||||||
|
Event: 67.905 Thread 0x000000001e851000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000000000446bf98 method=io.netty.channel.local.LocalChannel.isOpen()Z @ 5
|
||||||
|
Event: 67.939 Thread 0x0000000026511000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000003a09958 method=java.util.regex.Pattern$Branch.match(Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z @ 50
|
||||||
|
Event: 67.939 Thread 0x0000000026511000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000000000337dd84 method=java.util.regex.Pattern$5.isSatisfiedBy(I)Z @ 16
|
||||||
|
Event: 67.939 Thread 0x0000000026511000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000004ca2eb4 method=net.minecraft.util.ChatStyle.getColor()Lnet/minecraft/util/EnumChatFormatting; @ 4
|
||||||
|
Event: 67.943 Thread 0x0000000026511000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000036a3ac8 method=net.minecraft.network.play.server.S21PacketChunkData.func_179756_a(Lnet/minecraft/world/chunk/Chunk;ZZI)Lnet/minecraft/network/play/server/S21PacketChunkData$Extracted; @ 61
|
||||||
|
Event: 67.946 Thread 0x00000000266e0000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000004b2d3a8 method=java.util.Collections$SetFromMap.add(Ljava/lang/Object;)Z @ 13
|
||||||
|
Event: 67.997 Thread 0x00000000266d5800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000004a4f4f0 method=java.util.Collections.reverse(Ljava/util/List;)V @ 1
|
||||||
|
|
||||||
|
Classes redefined (1 events):
|
||||||
|
Event: 0.099 Thread 0x000000001e7f4800 redefined class name=java.io.FileOutputStream, count=1
|
||||||
|
|
||||||
|
Internal exceptions (10 events):
|
||||||
|
Event: 67.944 Thread 0x00000000247b3000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x000000076e687868) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 67.950 Thread 0x00000000247b3000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x000000076e687b10) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 67.955 Thread 0x00000000247b3000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x000000076e687db8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 67.961 Thread 0x00000000247b3000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x000000076e688060) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 67.966 Thread 0x00000000247b3000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x000000076e688308) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 67.972 Thread 0x00000000247b3000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x000000076e6885b0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 67.977 Thread 0x00000000247b3000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x000000076e688858) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 67.983 Thread 0x00000000247b3000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x000000076e688b00) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 67.988 Thread 0x00000000247b3000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x000000076e688da8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 67.994 Thread 0x00000000247b3000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x000000076e689050) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
|
||||||
|
Events (10 events):
|
||||||
|
Event: 67.995 Executing VM operation: RevokeBias
|
||||||
|
Event: 67.995 Executing VM operation: RevokeBias done
|
||||||
|
Event: 67.995 Executing VM operation: RevokeBias
|
||||||
|
Event: 67.995 Executing VM operation: RevokeBias done
|
||||||
|
Event: 67.995 Thread 0x0000000026511000 Thread exited: 0x0000000026511000
|
||||||
|
Event: 67.997 Thread 0x00000000266de800 Thread exited: 0x00000000266de800
|
||||||
|
Event: 67.997 Thread 0x00000000266d5800 Uncommon trap: trap_request=0xffffffde fr.pc=0x0000000004a4f4f0
|
||||||
|
Event: 67.997 Thread 0x00000000266d5800 DEOPT PACKING pc=0x0000000004a4f4f0 sp=0x000000002096ee70
|
||||||
|
Event: 67.997 Thread 0x00000000266d5800 DEOPT UNPACKING pc=0x0000000002ca583b sp=0x000000002096eeb8 mode 2
|
||||||
|
Event: 67.998 Executing VM operation: Exit
|
||||||
|
|
||||||
|
|
||||||
|
Dynamic libraries:
|
||||||
|
0x00007ff75c730000 - 0x00007ff75c767000 C:\Program Files\Java\jdk1.8.0_202\bin\java.exe
|
||||||
|
0x00007ffee6e90000 - 0x00007ffee7088000 C:\WINDOWS\SYSTEM32\ntdll.dll
|
||||||
|
0x00007ffee6bf0000 - 0x00007ffee6caf000 C:\WINDOWS\System32\KERNEL32.DLL
|
||||||
|
0x00007ffee68f0000 - 0x00007ffee6be6000 C:\WINDOWS\System32\KERNELBASE.dll
|
||||||
|
0x0000000079100000 - 0x000000007913b000 C:\WINDOWS\System32\cyinjct.dll
|
||||||
|
0x00007ffee6770000 - 0x00007ffee677c000 C:\WINDOWS\System32\ntnativeapi.dll
|
||||||
|
0x00007ffee6750000 - 0x00007ffee676e000 C:\WINDOWS\System32\cyvera.dll
|
||||||
|
0x00007ffee66e0000 - 0x00007ffee6749000 C:\WINDOWS\System32\cyvrtrap.dll
|
||||||
|
0x00007ffee5570000 - 0x00007ffee561f000 C:\WINDOWS\System32\ADVAPI32.dll
|
||||||
|
0x00007ffee60e0000 - 0x00007ffee617e000 C:\WINDOWS\System32\msvcrt.dll
|
||||||
|
0x00007ffee5220000 - 0x00007ffee52bc000 C:\WINDOWS\System32\sechost.dll
|
||||||
|
0x00007ffee67c0000 - 0x00007ffee68e6000 C:\WINDOWS\System32\RPCRT4.dll
|
||||||
|
0x00007ffee6cb0000 - 0x00007ffee6e4d000 C:\WINDOWS\System32\USER32.dll
|
||||||
|
0x00007ffee4620000 - 0x00007ffee4642000 C:\WINDOWS\System32\win32u.dll
|
||||||
|
0x00007ffee5fc0000 - 0x00007ffee5fec000 C:\WINDOWS\System32\GDI32.dll
|
||||||
|
0x00007ffee49b0000 - 0x00007ffee4ac5000 C:\WINDOWS\System32\gdi32full.dll
|
||||||
|
0x00007ffee4860000 - 0x00007ffee48fd000 C:\WINDOWS\System32\msvcp_win.dll
|
||||||
|
0x00007ffee4650000 - 0x00007ffee4750000 C:\WINDOWS\System32\ucrtbase.dll
|
||||||
|
0x00007ffec1bc0000 - 0x00007ffec1e5a000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.19041.1110_none_60b5254171f9507e\COMCTL32.dll
|
||||||
|
0x00007ffee5b00000 - 0x00007ffee5b30000 C:\WINDOWS\System32\IMM32.DLL
|
||||||
|
0x0000000061400000 - 0x00000000614d2000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\msvcr100.dll
|
||||||
|
0x00000000604c0000 - 0x0000000060d65000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\server\jvm.dll
|
||||||
|
0x00007ffee57c0000 - 0x00007ffee57c8000 C:\WINDOWS\System32\PSAPI.DLL
|
||||||
|
0x00007ffedf6d0000 - 0x00007ffedf6d9000 C:\WINDOWS\SYSTEM32\WSOCK32.dll
|
||||||
|
0x00007ffee5f50000 - 0x00007ffee5fbb000 C:\WINDOWS\System32\WS2_32.dll
|
||||||
|
0x00007ffec5030000 - 0x00007ffec5057000 C:\WINDOWS\SYSTEM32\WINMM.dll
|
||||||
|
0x00007ffedddb0000 - 0x00007ffedddba000 C:\WINDOWS\SYSTEM32\VERSION.dll
|
||||||
|
0x00007ffedc960000 - 0x00007ffedc96f000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\verify.dll
|
||||||
|
0x00007ffeca120000 - 0x00007ffeca149000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\java.dll
|
||||||
|
0x00007ffeca5a0000 - 0x00007ffeca5d5000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\jdwp.dll
|
||||||
|
0x00007ffed4710000 - 0x00007ffed4718000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\npt.dll
|
||||||
|
0x00007ffec75c0000 - 0x00007ffec75e3000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\instrument.dll
|
||||||
|
0x00007ffee66a0000 - 0x00007ffee66d7000 C:\Program Files\Palo Alto Networks\Traps\cyjagent.dll
|
||||||
|
0x00007ffed4290000 - 0x00007ffed42a6000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\zip.dll
|
||||||
|
0x00007ffee4ad0000 - 0x00007ffee5214000 C:\WINDOWS\System32\SHELL32.dll
|
||||||
|
0x00007ffee1f40000 - 0x00007ffee26d3000 C:\WINDOWS\SYSTEM32\windows.storage.dll
|
||||||
|
0x00007ffee5b30000 - 0x00007ffee5e84000 C:\WINDOWS\System32\combase.dll
|
||||||
|
0x00007ffee3dd0000 - 0x00007ffee3dfe000 C:\WINDOWS\SYSTEM32\Wldp.dll
|
||||||
|
0x00007ffee6180000 - 0x00007ffee622d000 C:\WINDOWS\System32\SHCORE.dll
|
||||||
|
0x00007ffee5e90000 - 0x00007ffee5ee5000 C:\WINDOWS\System32\shlwapi.dll
|
||||||
|
0x00007ffee4390000 - 0x00007ffee43af000 C:\WINDOWS\SYSTEM32\profapi.dll
|
||||||
|
0x00007ffed45d0000 - 0x00007ffed45d9000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\dt_socket.dll
|
||||||
|
0x00007ffee3bb0000 - 0x00007ffee3c1a000 C:\WINDOWS\system32\mswsock.dll
|
||||||
|
0x00007ffed45b0000 - 0x00007ffed45bd000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\management.dll
|
||||||
|
0x00007ffed3980000 - 0x00007ffed399a000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\net.dll
|
||||||
|
0x00007ffed13d0000 - 0x00007ffed15bc000 C:\WINDOWS\SYSTEM32\urlmon.dll
|
||||||
|
0x00007ffedcd00000 - 0x00007ffedcfb1000 C:\WINDOWS\SYSTEM32\iertutil.dll
|
||||||
|
0x00007ffee3070000 - 0x00007ffee3098000 C:\WINDOWS\SYSTEM32\srvcli.dll
|
||||||
|
0x00007ffee38b0000 - 0x00007ffee38bc000 C:\WINDOWS\SYSTEM32\netutils.dll
|
||||||
|
0x00007ffed43d0000 - 0x00007ffed43e2000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\nio.dll
|
||||||
|
0x00007ffeab2e0000 - 0x00007ffeab2f7000 C:\WINDOWS\system32\napinsp.dll
|
||||||
|
0x00007ffeab300000 - 0x00007ffeab31b000 C:\WINDOWS\system32\pnrpnsp.dll
|
||||||
|
0x00007ffeded70000 - 0x00007ffeded85000 C:\WINDOWS\system32\wshbth.dll
|
||||||
|
0x00007ffede0f0000 - 0x00007ffede10d000 C:\WINDOWS\system32\NLAapi.dll
|
||||||
|
0x00007ffee3870000 - 0x00007ffee38ac000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
|
||||||
|
0x00007ffee38c0000 - 0x00007ffee398b000 C:\WINDOWS\SYSTEM32\DNSAPI.dll
|
||||||
|
0x00007ffee5850000 - 0x00007ffee5858000 C:\WINDOWS\System32\NSI.dll
|
||||||
|
0x00007ffeab320000 - 0x00007ffeab332000 C:\WINDOWS\System32\winrnr.dll
|
||||||
|
0x00007ffeddf50000 - 0x00007ffeddfd2000 C:\WINDOWS\System32\fwpuclnt.dll
|
||||||
|
0x00007ffee4830000 - 0x00007ffee4857000 C:\WINDOWS\System32\bcrypt.dll
|
||||||
|
0x00007ffedd130000 - 0x00007ffedd13a000 C:\Windows\System32\rasadhlp.dll
|
||||||
|
0x0000000180000000 - 0x0000000180053000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\lwjgl64.dll
|
||||||
|
0x00007ffea9980000 - 0x00007ffea9aa5000 C:\WINDOWS\SYSTEM32\OPENGL32.dll
|
||||||
|
0x00007ffed8ca0000 - 0x00007ffed8ccc000 C:\WINDOWS\SYSTEM32\GLU32.dll
|
||||||
|
0x00007ffee3e10000 - 0x00007ffee3e28000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll
|
||||||
|
0x00007ffee3370000 - 0x00007ffee33a4000 C:\WINDOWS\system32\rsaenh.dll
|
||||||
|
0x00007ffee4310000 - 0x00007ffee433e000 C:\WINDOWS\SYSTEM32\USERENV.dll
|
||||||
|
0x00007ffee4750000 - 0x00007ffee47d2000 C:\WINDOWS\System32\bcryptprimitives.dll
|
||||||
|
0x00007ffee3d40000 - 0x00007ffee3d4c000 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
|
||||||
|
0x00007ffeddee0000 - 0x00007ffeddef7000 C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL
|
||||||
|
0x00007ffeddec0000 - 0x00007ffeddedd000 C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL
|
||||||
|
0x00007ffea4b60000 - 0x00007ffea4cf9000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\awt.dll
|
||||||
|
0x00007ffee53f0000 - 0x00007ffee54bd000 C:\WINDOWS\System32\OLEAUT32.dll
|
||||||
|
0x00007ffee1180000 - 0x00007ffee1211000 C:\WINDOWS\SYSTEM32\apphelp.dll
|
||||||
|
0x00007ffeddb00000 - 0x00007ffeddbae000 C:\WINDOWS\SYSTEM32\mscms.dll
|
||||||
|
0x00007ffedda90000 - 0x00007ffeddaa1000 C:\WINDOWS\SYSTEM32\ColorAdapterClient.dll
|
||||||
|
0x00007ffee2d60000 - 0x00007ffee2d72000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll
|
||||||
|
0x00007ffee1820000 - 0x00007ffee18be000 C:\WINDOWS\system32\uxtheme.dll
|
||||||
|
0x00007ffee5620000 - 0x00007ffee5734000 C:\WINDOWS\System32\MSCTF.dll
|
||||||
|
0x00007ffec9a60000 - 0x00007ffec9b5a000 C:\WINDOWS\SYSTEM32\textinputframework.dll
|
||||||
|
0x00007ffee0bf0000 - 0x00007ffee0f4e000 C:\WINDOWS\System32\CoreUIComponents.dll
|
||||||
|
0x00007ffee0f50000 - 0x00007ffee1042000 C:\WINDOWS\System32\CoreMessaging.dll
|
||||||
|
0x00007ffee35c0000 - 0x00007ffee35f3000 C:\WINDOWS\SYSTEM32\ntmarta.dll
|
||||||
|
0x00007ffee0520000 - 0x00007ffee0674000 C:\WINDOWS\SYSTEM32\wintypes.dll
|
||||||
|
0x00007ffee52c0000 - 0x00007ffee53ea000 C:\WINDOWS\System32\ole32.dll
|
||||||
|
0x00007ffee54c0000 - 0x00007ffee5569000 C:\WINDOWS\System32\clbcatq.dll
|
||||||
|
0x00007ffe92350000 - 0x00007ffe93343000 C:\WINDOWS\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_307c52ae370e15f2\igxelpicd64.dll
|
||||||
|
0x00007ffee1950000 - 0x00007ffee197f000 C:\WINDOWS\system32\dwmapi.dll
|
||||||
|
0x00007ffee2ae0000 - 0x00007ffee2bd3000 C:\WINDOWS\system32\dxgi.dll
|
||||||
|
0x00007ffe91ef0000 - 0x00007ffe92343000 C:\WINDOWS\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_307c52ae370e15f2\igdml64.dll
|
||||||
|
0x00007ffecdc00000 - 0x00007ffecdfc7000 C:\WINDOWS\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_307c52ae370e15f2\igdgmm64.dll
|
||||||
|
0x00007ffe815f0000 - 0x00007ffe81633000 C:\WINDOWS\SYSTEM32\icm32.dll
|
||||||
|
0x00007ffeca5e0000 - 0x00007ffecdbf1000 C:\WINDOWS\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_307c52ae370e15f2\igc64.dll
|
||||||
|
0x00007ffee3990000 - 0x00007ffee39db000 C:\WINDOWS\SYSTEM32\powrprof.dll
|
||||||
|
0x00007ffee3850000 - 0x00007ffee3862000 C:\WINDOWS\SYSTEM32\UMPDC.dll
|
||||||
|
0x0000000026960000 - 0x0000000026998000 C:\Users\remgab001\AppData\Local\Temp\jna\jna4729558040945573054.dll
|
||||||
|
0x0000000070a40000 - 0x0000000070adc000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\avutil-ttv-51.dll
|
||||||
|
0x0000000065980000 - 0x00000000659d6000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\swresample-ttv-0.dll
|
||||||
|
0x000000006eb80000 - 0x000000006ec50000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\libmp3lame-ttv.dll
|
||||||
|
0x00007ffe8f120000 - 0x00007ffe904c4000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\libmfxsw64.dll
|
||||||
|
0x00007ffe96320000 - 0x00007ffe9648d000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\twitchsdk.dll
|
||||||
|
0x00007ffec4920000 - 0x00007ffec4df9000 C:\WINDOWS\SYSTEM32\WININET.dll
|
||||||
|
0x0000000028310000 - 0x0000000028374000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\OpenAL64.dll
|
||||||
|
0x00007ffea49a0000 - 0x00007ffea4a3c000 C:\WINDOWS\SYSTEM32\dsound.dll
|
||||||
|
0x00007ffec4e00000 - 0x00007ffec4e26000 C:\WINDOWS\SYSTEM32\winmmbase.dll
|
||||||
|
0x00007ffedbfa0000 - 0x00007ffedc025000 C:\WINDOWS\System32\MMDevApi.dll
|
||||||
|
0x00007ffee4200000 - 0x00007ffee422c000 C:\WINDOWS\System32\DEVOBJ.dll
|
||||||
|
0x00007ffee47e0000 - 0x00007ffee482e000 C:\WINDOWS\System32\cfgmgr32.dll
|
||||||
|
0x00007ffedc0f0000 - 0x00007ffedc272000 C:\WINDOWS\SYSTEM32\AUDIOSES.DLL
|
||||||
|
0x00007ffee1a60000 - 0x00007ffee1a74000 C:\WINDOWS\SYSTEM32\resourcepolicyclient.dll
|
||||||
|
0x00007ffea95f0000 - 0x00007ffea9637000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\fontmanager.dll
|
||||||
|
0x00007ffea3950000 - 0x00007ffea3992000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\t2k.dll
|
||||||
|
0x00007ffec3a20000 - 0x00007ffec3a4a000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\dcpr.dll
|
||||||
|
0x00007ffee27b0000 - 0x00007ffee2994000 C:\WINDOWS\SYSTEM32\dbghelp.dll
|
||||||
|
|
||||||
|
VM Arguments:
|
||||||
|
jvm_args: -agentlib:jdwp=transport=dt_socket,address=127.0.0.1:55866,suspend=y,server=n -Djava.library.path=versions/1.8.8/1.8.8-natives/ -javaagent:C:\Users\remgab001\AppData\Local\JetBrains\IdeaIC2023.1\captureAgent\debugger-agent.jar -Dfile.encoding=UTF-8 -agentpath:C:\Program Files\Palo Alto Networks\Traps\cyjagent.dll
|
||||||
|
java_command: Start
|
||||||
|
java_class_path (initial): C:\Program Files\Java\jdk1.8.0_202\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\deploy.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\access-bridge-64.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\cldrdata.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\dnsns.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\jaccess.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\jfxrt.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\localedata.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\nashorn.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\sunec.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\sunjce_provider.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\sunmscapi.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\sunpkcs11.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\zipfs.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\javaws.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jce.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jfr.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jfxswt.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\management-agent.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\plugin.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\resources.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\rt.jar;C:\Users\remgab001\Desktop\Athena-Client\target\classes;C:\Users\remgab001\.m2\repository\net\minecraft\minecraft\1.8.8\minecraft-1.8.8.jar;C:\Users\remgab001\.m2\repository\org\json\json\20230227\json-20230227.jar;C:\Users\remgab001\.m2\repository\org\reflections\reflections\0.10.2\reflections-0.10.2.jar;C:\Users\remgab001\.m2\repository\org\javassist\javassist\3.28.0-GA\javassist-3.28.0-GA.jar;C:\Users\remgab001\.m2\repository\com\google\code\findbugs\jsr305\3.0.2\jsr305-3.0.2.jar;C:\Users\remgab001\.m2\repository\org\slf4j\slf4j-api\1.7.32\slf4j-api-1.7.32.jar;C:\Users\remgab001\.m2\repository\oshi-project\oshi-core\1.1\oshi-core-1.1.jar;
|
||||||
|
Launcher Type: SUN_STANDARD
|
||||||
|
|
||||||
|
Environment Variables:
|
||||||
|
PATH=C:\Program Files\Google\Chrome\Application;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\nodejs\;C:\Program Files\Git\cmd;C:\Users\remgab001\AppData\Local\Microsoft\WindowsApps;C:\Users\remgab001\AppData\Roaming\npm;C:\Users\remgab001\AppData\Local\Programs\Microsoft VS Code\bin
|
||||||
|
USERNAME=remgab001
|
||||||
|
OS=Windows_NT
|
||||||
|
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 154 Stepping 3, GenuineIntel
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
--------------- S Y S T E M ---------------
|
||||||
|
|
||||||
|
OS: Windows 10.0 , 64 bit Build 19041 (10.0.19041.2913)
|
||||||
|
|
||||||
|
CPU:total 20 (initial active 20) (10 cores per cpu, 2 threads per core) family 6 model 154 stepping 3, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, clmul, erms, 3dnowpref, lzcnt, ht, tsc, tscinvbit, bmi1, bmi2, adx
|
||||||
|
|
||||||
|
Memory: 4k page, physical 16400820k(1003832k free), swap 33178036k(10595416k free)
|
||||||
|
|
||||||
|
vm_info: Java HotSpot(TM) 64-Bit Server VM (25.202-b08) for windows-amd64 JRE (1.8.0_202-b08), built on Dec 15 2018 19:54:30 by "java_re" with MS VC++ 10.0 (VS2010)
|
||||||
|
|
||||||
|
time: Fri Jun 02 11:30:11 2023
|
||||||
|
timezone: Vest-Europa (sommertid)
|
||||||
|
elapsed time: 68 seconds (0d 0h 1m 8s)
|
||||||
|
|
457
workspace/hs_err_pid14360.log
Normal file
457
workspace/hs_err_pid14360.log
Normal file
@ -0,0 +1,457 @@
|
|||||||
|
#
|
||||||
|
# A fatal error has been detected by the Java Runtime Environment:
|
||||||
|
#
|
||||||
|
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ffe3aaf366c, pid=14360, tid=0x00000000000042b8
|
||||||
|
#
|
||||||
|
# JRE version: Java(TM) SE Runtime Environment (8.0_202-b08) (build 1.8.0_202-b08)
|
||||||
|
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.202-b08 mixed mode windows-amd64 compressed oops)
|
||||||
|
# Problematic frame:
|
||||||
|
# C [igxelpicd64.dll+0x13366c]
|
||||||
|
#
|
||||||
|
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
|
||||||
|
#
|
||||||
|
# If you would like to submit a bug report, please visit:
|
||||||
|
# http://bugreport.java.com/bugreport/crash.jsp
|
||||||
|
#
|
||||||
|
|
||||||
|
--------------- T H R E A D ---------------
|
||||||
|
|
||||||
|
Current thread (0x000000001ece5000): VMThread [stack: 0x0000000020770000,0x0000000020870000] [id=17080]
|
||||||
|
|
||||||
|
siginfo: ExceptionCode=0xc0000005, reading address 0x00000000000356f8
|
||||||
|
|
||||||
|
Registers:
|
||||||
|
RAX=0x00000000577b2408, RBX=0x00000000577b2300, RCX=0x0000000000000000, RDX=0x0000000000000000
|
||||||
|
RSP=0x000000002086e600, RBP=0x0000000000000000, RSI=0x00000000577b28d0, RDI=0x0000000025b1e8e0
|
||||||
|
R8 =0x0000000000000014, R9 =0x0000000000000000, R10=0x0000000000000000, R11=0x0000000000000000
|
||||||
|
R12=0x0000000000000000, R13=0x0000000029399ea0, R14=0x000000001b5c0400, R15=0x0000000000000016
|
||||||
|
RIP=0x00007ffe3aaf366c, EFLAGS=0x0000000000010202
|
||||||
|
|
||||||
|
Top of Stack: (sp=0x000000002086e600)
|
||||||
|
0x000000002086e600: 0000000025a34bc0 00007ffee6d3f070
|
||||||
|
0x000000002086e610: 0000000000000002 00007ffee6f30eb4
|
||||||
|
0x000000002086e620: 00000000000000c2 00000000225af950
|
||||||
|
0x000000002086e630: 000000003efbd100 0000000003056788
|
||||||
|
0x000000002086e640: 0000000025af7af8 000000001b5c0489
|
||||||
|
0x000000002086e650: 0000000000000000 000000000000000e
|
||||||
|
0x000000002086e660: 0000000000000000 0000000000000000
|
||||||
|
0x000000002086e670: 000000002086e780 00007ffe3ac6bc3c
|
||||||
|
0x000000002086e680: 0000000025a34bc0 0000000025b1e8e0
|
||||||
|
0x000000002086e690: 00007ffee6f09300 000000001ece4500
|
||||||
|
0x000000002086e6a0: 000000000000bb48 0000740400000000
|
||||||
|
0x000000002086e6b0: 0000000000000000 00007ffee6ead23b
|
||||||
|
0x000000002086e6c0: 0000000000000001 000000002086e870
|
||||||
|
0x000000002086e6d0: 0000000000000002 00000000007e0000
|
||||||
|
0x000000002086e6e0: 00007ffee6ef79d0 00007ffe3ac619a0
|
||||||
|
0x000000002086e6f0: 00000000000004b4 00000000007e1c04
|
||||||
|
|
||||||
|
Instructions: (pc=0x00007ffe3aaf366c)
|
||||||
|
0x00007ffe3aaf364c: 83 20 01 00 00 48 8d 04 d5 21 00 00 00 48 03 c2
|
||||||
|
0x00007ffe3aaf365c: 48 8d 04 c3 48 85 c0 0f 85 ff 00 00 00 49 8b cb
|
||||||
|
0x00007ffe3aaf366c: 48 3b 8d f8 56 03 00 0f 87 f3 02 00 00 4c 39 9b
|
||||||
|
0x00007ffe3aaf367c: 48 06 00 00 0f 85 31 da 86 00 44 8b 97 c8 01 00
|
||||||
|
|
||||||
|
|
||||||
|
Register to memory mapping:
|
||||||
|
|
||||||
|
RAX=0x00000000577b2408 is an unknown value
|
||||||
|
RBX=0x00000000577b2300 is an unknown value
|
||||||
|
RCX=0x0000000000000000 is an unknown value
|
||||||
|
RDX=0x0000000000000000 is an unknown value
|
||||||
|
RSP=0x000000002086e600 is an unknown value
|
||||||
|
RBP=0x0000000000000000 is an unknown value
|
||||||
|
RSI=0x00000000577b28d0 is an unknown value
|
||||||
|
RDI=0x0000000025b1e8e0 is an unknown value
|
||||||
|
R8 =0x0000000000000014 is an unknown value
|
||||||
|
R9 =0x0000000000000000 is an unknown value
|
||||||
|
R10=0x0000000000000000 is an unknown value
|
||||||
|
R11=0x0000000000000000 is an unknown value
|
||||||
|
R12=0x0000000000000000 is an unknown value
|
||||||
|
R13=0x0000000029399ea0 is an unknown value
|
||||||
|
R14=0x000000001b5c0400 is an unknown value
|
||||||
|
R15=0x0000000000000016 is an unknown value
|
||||||
|
|
||||||
|
|
||||||
|
Stack: [0x0000000020770000,0x0000000020870000], sp=0x000000002086e600, free space=1017k
|
||||||
|
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
|
||||||
|
|
||||||
|
VM_Operation (0x0000000020e6f1e0): Exit, mode: safepoint, requested by thread 0x000000003301e000
|
||||||
|
|
||||||
|
|
||||||
|
--------------- P R O C E S S ---------------
|
||||||
|
|
||||||
|
Java Threads: ( => current thread )
|
||||||
|
0x0000000033024000 JavaThread "AWT-Shutdown" [_thread_blocked, id=4120, stack(0x0000000047a90000,0x0000000047b90000)]
|
||||||
|
0x000000003301e000 JavaThread "SIGINT handler" daemon [_thread_blocked, id=18468, stack(0x0000000020d70000,0x0000000020e70000)]
|
||||||
|
0x0000000033019000 JavaThread "File IO Thread" [_thread_blocked, id=3400, stack(0x000000002f230000,0x000000002f330000)]
|
||||||
|
0x000000003d5eb800 JavaThread "Netty Server IO #1" daemon [_thread_blocked, id=11052, stack(0x0000000031bf0000,0x0000000031cf0000)]
|
||||||
|
0x000000003d5f1000 JavaThread "Netty Local Client IO #0" daemon [_thread_blocked, id=12456, stack(0x000000002f030000,0x000000002f130000)]
|
||||||
|
0x000000003d5f0800 JavaThread "Netty Server IO #0" daemon [_thread_blocked, id=5204, stack(0x000000002ef30000,0x000000002f030000)]
|
||||||
|
0x000000003d5ea000 JavaThread "LWJGL Timer" daemon [_thread_blocked, id=18092, stack(0x000000003c370000,0x000000003c470000)]
|
||||||
|
0x000000001eddf000 JavaThread "Chunk Batcher 1" daemon [_thread_blocked, id=15732, stack(0x0000000032af0000,0x0000000032bf0000)]
|
||||||
|
0x000000001ede2000 JavaThread "Chunk Batcher 0" daemon [_thread_blocked, id=17216, stack(0x00000000329f0000,0x0000000032af0000)]
|
||||||
|
0x000000001ede1000 JavaThread "Thread-8" [_thread_blocked, id=4884, stack(0x0000000031df0000,0x0000000031ef0000)]
|
||||||
|
0x000000001edde000 JavaThread "Thread-7" [_thread_blocked, id=18932, stack(0x0000000031cf0000,0x0000000031df0000)]
|
||||||
|
0x0000000023591000 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=18000, stack(0x00000000284d0000,0x00000000285d0000)]
|
||||||
|
0x000000002358e000 JavaThread "Timer hack thread" daemon [_thread_blocked, id=17156, stack(0x00000000283d0000,0x00000000284d0000)]
|
||||||
|
0x0000000024c60000 JavaThread "Snooper Timer" daemon [_thread_blocked, id=12112, stack(0x0000000025b20000,0x0000000025c20000)]
|
||||||
|
0x000000001ee98800 JavaThread "Service Thread" daemon [_thread_blocked, id=14676, stack(0x0000000021d70000,0x0000000021e70000)]
|
||||||
|
0x000000001eddf800 JavaThread "C1 CompilerThread11" daemon [_thread_blocked, id=15096, stack(0x0000000021c70000,0x0000000021d70000)]
|
||||||
|
0x000000001eddc000 JavaThread "C1 CompilerThread10" daemon [_thread_blocked, id=1532, stack(0x0000000021b70000,0x0000000021c70000)]
|
||||||
|
0x000000001edd7000 JavaThread "C1 CompilerThread9" daemon [_thread_blocked, id=11204, stack(0x0000000021a70000,0x0000000021b70000)]
|
||||||
|
0x000000001edc4800 JavaThread "C1 CompilerThread8" daemon [_thread_blocked, id=13740, stack(0x0000000021970000,0x0000000021a70000)]
|
||||||
|
0x000000001edba800 JavaThread "C2 CompilerThread7" daemon [_thread_blocked, id=9444, stack(0x0000000021870000,0x0000000021970000)]
|
||||||
|
0x000000001edb0000 JavaThread "C2 CompilerThread6" daemon [_thread_blocked, id=9012, stack(0x0000000021770000,0x0000000021870000)]
|
||||||
|
0x000000001edae000 JavaThread "C2 CompilerThread5" daemon [_thread_blocked, id=6140, stack(0x0000000021670000,0x0000000021770000)]
|
||||||
|
0x000000001edad800 JavaThread "C2 CompilerThread4" daemon [_thread_blocked, id=3892, stack(0x0000000021570000,0x0000000021670000)]
|
||||||
|
0x000000001edac800 JavaThread "C2 CompilerThread3" daemon [_thread_blocked, id=16448, stack(0x0000000021470000,0x0000000021570000)]
|
||||||
|
0x000000001edaa000 JavaThread "C2 CompilerThread2" daemon [_thread_blocked, id=12496, stack(0x0000000021270000,0x0000000021370000)]
|
||||||
|
0x000000001ed5f000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=3356, stack(0x0000000021170000,0x0000000021270000)]
|
||||||
|
0x000000001ed59800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=1672, stack(0x0000000021070000,0x0000000021170000)]
|
||||||
|
0x000000001ed40800 JavaThread "JDWP Event Helper Thread" daemon [_thread_blocked, id=10480, stack(0x0000000020e70000,0x0000000020f70000)]
|
||||||
|
0x000000001ed29000 JavaThread "Attach Listener" daemon [_thread_blocked, id=2496, stack(0x0000000020c70000,0x0000000020d70000)]
|
||||||
|
0x000000001ed0e000 JavaThread "Finalizer" daemon [_thread_blocked, id=13328, stack(0x0000000020970000,0x0000000020a70000)]
|
||||||
|
0x000000001ed08000 JavaThread "Reference Handler" daemon [_thread_blocked, id=7408, stack(0x0000000020870000,0x0000000020970000)]
|
||||||
|
0x0000000002fa4800 JavaThread "Client thread" [_thread_blocked, id=8292, stack(0x00000000029c0000,0x0000000002ac0000)]
|
||||||
|
|
||||||
|
Other Threads:
|
||||||
|
=>0x000000001ece5000 VMThread [stack: 0x0000000020770000,0x0000000020870000] [id=17080]
|
||||||
|
|
||||||
|
VM state:at safepoint (shutting down)
|
||||||
|
|
||||||
|
VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
|
||||||
|
[0x0000000002fa2150] Threads_lock - owner thread: 0x000000001ece5000
|
||||||
|
|
||||||
|
heap address: 0x00000006c5a00000, size: 4006 MB, Compressed Oops mode: Zero based, Oop shift amount: 3
|
||||||
|
Narrow klass base: 0x0000000000000000, Narrow klass shift: 3
|
||||||
|
Compressed class space size: 1073741824 Address: 0x00000007c0000000
|
||||||
|
|
||||||
|
Heap:
|
||||||
|
PSYoungGen total 720896K, used 435074K [0x000000076c900000, 0x000000079c700000, 0x00000007c0000000)
|
||||||
|
eden space 662528K, 59% used [0x000000076c900000,0x00000007849faf58,0x0000000795000000)
|
||||||
|
from space 58368K, 69% used [0x0000000795000000,0x00000007977e5c40,0x0000000798900000)
|
||||||
|
to space 59392K, 0% used [0x0000000798d00000,0x0000000798d00000,0x000000079c700000)
|
||||||
|
ParOldGen total 358912K, used 313659K [0x00000006c5a00000, 0x00000006db880000, 0x000000076c900000)
|
||||||
|
object space 358912K, 87% used [0x00000006c5a00000,0x00000006d8c4ee60,0x00000006db880000)
|
||||||
|
Metaspace used 47274K, capacity 47861K, committed 48128K, reserved 1091584K
|
||||||
|
class space used 5454K, capacity 5610K, committed 5632K, reserved 1048576K
|
||||||
|
|
||||||
|
Card table byte_map: [0x0000000012460000,0x0000000012c40000] byte_map_base: 0x000000000ee33000
|
||||||
|
|
||||||
|
Marking Bits: (ParMarkBitMap*) 0x0000000060ce5ce0
|
||||||
|
Begin Bits: [0x0000000014080000, 0x0000000017f18000)
|
||||||
|
End Bits: [0x0000000017f18000, 0x000000001bdb0000)
|
||||||
|
|
||||||
|
Polling page: 0x0000000000a60000
|
||||||
|
|
||||||
|
CodeCache: size=245760Kb used=39145Kb max_used=41399Kb free=206614Kb
|
||||||
|
bounds [0x00000000030a0000, 0x00000000059d0000, 0x00000000120a0000]
|
||||||
|
total_blobs=9786 nmethods=8890 adapters=810
|
||||||
|
compilation: enabled
|
||||||
|
|
||||||
|
Compilation events (10 events):
|
||||||
|
Event: 2051.740 Thread 0x000000001eddf800 nmethod 13454 0x0000000004926290 code [0x0000000004926460, 0x0000000004926b18]
|
||||||
|
Event: 2051.740 Thread 0x000000001eddf800 13456 ! 3 java.util.concurrent.ConcurrentHashMap::putVal (362 bytes)
|
||||||
|
Event: 2051.740 Thread 0x000000001edd7000 13455 3 java.util.Collections$SetFromMap::add (22 bytes)
|
||||||
|
Event: 2051.740 Thread 0x000000001eddc000 nmethod 13453 0x00000000044e0e50 code [0x00000000044e1080, 0x00000000044e1ad8]
|
||||||
|
Event: 2051.740 Thread 0x000000001edd7000 nmethod 13455 0x00000000056177d0 code [0x0000000005617940, 0x0000000005617be8]
|
||||||
|
Event: 2051.741 Thread 0x000000001eddf800 nmethod 13456 0x0000000005180110 code [0x00000000051803e0, 0x0000000005181e58]
|
||||||
|
Event: 2051.787 Thread 0x000000001edc4800 13457 3 java.io.FileOutputStream::write (13 bytes)
|
||||||
|
Event: 2051.787 Thread 0x000000001edc4800 nmethod 13457 0x0000000004c94010 code [0x0000000004c94180, 0x0000000004c94328]
|
||||||
|
Event: 2051.789 Thread 0x000000001edd7000 13458 ! 3 java.util.concurrent.ConcurrentHashMap$TreeBin::putTreeVal (371 bytes)
|
||||||
|
Event: 2051.790 Thread 0x000000001edd7000 nmethod 13458 0x00000000045031d0 code [0x0000000004503460, 0x0000000004504b38]
|
||||||
|
|
||||||
|
GC Heap History (10 events):
|
||||||
|
Event: 1971.086 GC heap before
|
||||||
|
{Heap before GC invocations=573 (full 6):
|
||||||
|
PSYoungGen total 710144K, used 695038K [0x000000076c900000, 0x000000079b900000, 0x00000007c0000000)
|
||||||
|
eden space 655872K, 100% used [0x000000076c900000,0x0000000794980000,0x0000000794980000)
|
||||||
|
from space 54272K, 72% used [0x0000000798080000,0x000000079a6bf980,0x000000079b580000)
|
||||||
|
to space 56320K, 0% used [0x0000000794980000,0x0000000794980000,0x0000000798080000)
|
||||||
|
ParOldGen total 358912K, used 313651K [0x00000006c5a00000, 0x00000006db880000, 0x000000076c900000)
|
||||||
|
object space 358912K, 87% used [0x00000006c5a00000,0x00000006d8c4ce60,0x00000006db880000)
|
||||||
|
Metaspace used 47209K, capacity 47759K, committed 47872K, reserved 1091584K
|
||||||
|
class space used 5449K, capacity 5577K, committed 5632K, reserved 1048576K
|
||||||
|
Event: 1971.091 GC heap after
|
||||||
|
Heap after GC invocations=573 (full 6):
|
||||||
|
PSYoungGen total 712192K, used 38558K [0x000000076c900000, 0x000000079bd80000, 0x00000007c0000000)
|
||||||
|
eden space 655872K, 0% used [0x000000076c900000,0x000000076c900000,0x0000000794980000)
|
||||||
|
from space 56320K, 68% used [0x0000000794980000,0x0000000796f27970,0x0000000798080000)
|
||||||
|
to space 57344K, 0% used [0x0000000798580000,0x0000000798580000,0x000000079bd80000)
|
||||||
|
ParOldGen total 358912K, used 313659K [0x00000006c5a00000, 0x00000006db880000, 0x000000076c900000)
|
||||||
|
object space 358912K, 87% used [0x00000006c5a00000,0x00000006d8c4ee60,0x00000006db880000)
|
||||||
|
Metaspace used 47209K, capacity 47759K, committed 47872K, reserved 1091584K
|
||||||
|
class space used 5449K, capacity 5577K, committed 5632K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 1983.132 GC heap before
|
||||||
|
{Heap before GC invocations=574 (full 6):
|
||||||
|
PSYoungGen total 712192K, used 694430K [0x000000076c900000, 0x000000079bd80000, 0x00000007c0000000)
|
||||||
|
eden space 655872K, 100% used [0x000000076c900000,0x0000000794980000,0x0000000794980000)
|
||||||
|
from space 56320K, 68% used [0x0000000794980000,0x0000000796f27970,0x0000000798080000)
|
||||||
|
to space 57344K, 0% used [0x0000000798580000,0x0000000798580000,0x000000079bd80000)
|
||||||
|
ParOldGen total 358912K, used 313659K [0x00000006c5a00000, 0x00000006db880000, 0x000000076c900000)
|
||||||
|
object space 358912K, 87% used [0x00000006c5a00000,0x00000006d8c4ee60,0x00000006db880000)
|
||||||
|
Metaspace used 47209K, capacity 47759K, committed 47872K, reserved 1091584K
|
||||||
|
class space used 5449K, capacity 5577K, committed 5632K, reserved 1048576K
|
||||||
|
Event: 1983.139 GC heap after
|
||||||
|
Heap after GC invocations=574 (full 6):
|
||||||
|
PSYoungGen total 716800K, used 38206K [0x000000076c900000, 0x000000079be80000, 0x00000007c0000000)
|
||||||
|
eden space 659456K, 0% used [0x000000076c900000,0x000000076c900000,0x0000000794d00000)
|
||||||
|
from space 57344K, 66% used [0x0000000798580000,0x000000079aacf970,0x000000079bd80000)
|
||||||
|
to space 57856K, 0% used [0x0000000794d00000,0x0000000794d00000,0x0000000798580000)
|
||||||
|
ParOldGen total 358912K, used 313659K [0x00000006c5a00000, 0x00000006db880000, 0x000000076c900000)
|
||||||
|
object space 358912K, 87% used [0x00000006c5a00000,0x00000006d8c4ee60,0x00000006db880000)
|
||||||
|
Metaspace used 47209K, capacity 47759K, committed 47872K, reserved 1091584K
|
||||||
|
class space used 5449K, capacity 5577K, committed 5632K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 1998.793 GC heap before
|
||||||
|
{Heap before GC invocations=575 (full 6):
|
||||||
|
PSYoungGen total 716800K, used 697662K [0x000000076c900000, 0x000000079be80000, 0x00000007c0000000)
|
||||||
|
eden space 659456K, 100% used [0x000000076c900000,0x0000000794d00000,0x0000000794d00000)
|
||||||
|
from space 57344K, 66% used [0x0000000798580000,0x000000079aacf970,0x000000079bd80000)
|
||||||
|
to space 57856K, 0% used [0x0000000794d00000,0x0000000794d00000,0x0000000798580000)
|
||||||
|
ParOldGen total 358912K, used 313659K [0x00000006c5a00000, 0x00000006db880000, 0x000000076c900000)
|
||||||
|
object space 358912K, 87% used [0x00000006c5a00000,0x00000006d8c4ee60,0x00000006db880000)
|
||||||
|
Metaspace used 47209K, capacity 47759K, committed 47872K, reserved 1091584K
|
||||||
|
class space used 5449K, capacity 5577K, committed 5632K, reserved 1048576K
|
||||||
|
Event: 1998.800 GC heap after
|
||||||
|
Heap after GC invocations=575 (full 6):
|
||||||
|
PSYoungGen total 717312K, used 38238K [0x000000076c900000, 0x000000079c280000, 0x00000007c0000000)
|
||||||
|
eden space 659456K, 0% used [0x000000076c900000,0x000000076c900000,0x0000000794d00000)
|
||||||
|
from space 57856K, 66% used [0x0000000794d00000,0x0000000797257970,0x0000000798580000)
|
||||||
|
to space 58368K, 0% used [0x0000000798980000,0x0000000798980000,0x000000079c280000)
|
||||||
|
ParOldGen total 358912K, used 313659K [0x00000006c5a00000, 0x00000006db880000, 0x000000076c900000)
|
||||||
|
object space 358912K, 87% used [0x00000006c5a00000,0x00000006d8c4ee60,0x00000006db880000)
|
||||||
|
Metaspace used 47209K, capacity 47759K, committed 47872K, reserved 1091584K
|
||||||
|
class space used 5449K, capacity 5577K, committed 5632K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 2017.229 GC heap before
|
||||||
|
{Heap before GC invocations=576 (full 6):
|
||||||
|
PSYoungGen total 717312K, used 697694K [0x000000076c900000, 0x000000079c280000, 0x00000007c0000000)
|
||||||
|
eden space 659456K, 100% used [0x000000076c900000,0x0000000794d00000,0x0000000794d00000)
|
||||||
|
from space 57856K, 66% used [0x0000000794d00000,0x0000000797257970,0x0000000798580000)
|
||||||
|
to space 58368K, 0% used [0x0000000798980000,0x0000000798980000,0x000000079c280000)
|
||||||
|
ParOldGen total 358912K, used 313659K [0x00000006c5a00000, 0x00000006db880000, 0x000000076c900000)
|
||||||
|
object space 358912K, 87% used [0x00000006c5a00000,0x00000006d8c4ee60,0x00000006db880000)
|
||||||
|
Metaspace used 47211K, capacity 47765K, committed 47872K, reserved 1091584K
|
||||||
|
class space used 5450K, capacity 5578K, committed 5632K, reserved 1048576K
|
||||||
|
Event: 2017.234 GC heap after
|
||||||
|
Heap after GC invocations=576 (full 6):
|
||||||
|
PSYoungGen total 720384K, used 38238K [0x000000076c900000, 0x000000079c200000, 0x00000007c0000000)
|
||||||
|
eden space 662528K, 0% used [0x000000076c900000,0x000000076c900000,0x0000000795000000)
|
||||||
|
from space 57856K, 66% used [0x0000000798980000,0x000000079aed7970,0x000000079c200000)
|
||||||
|
to space 58368K, 0% used [0x0000000795000000,0x0000000795000000,0x0000000798900000)
|
||||||
|
ParOldGen total 358912K, used 313659K [0x00000006c5a00000, 0x00000006db880000, 0x000000076c900000)
|
||||||
|
object space 358912K, 87% used [0x00000006c5a00000,0x00000006d8c4ee60,0x00000006db880000)
|
||||||
|
Metaspace used 47211K, capacity 47765K, committed 47872K, reserved 1091584K
|
||||||
|
class space used 5450K, capacity 5578K, committed 5632K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 2038.692 GC heap before
|
||||||
|
{Heap before GC invocations=577 (full 6):
|
||||||
|
PSYoungGen total 720384K, used 700766K [0x000000076c900000, 0x000000079c200000, 0x00000007c0000000)
|
||||||
|
eden space 662528K, 100% used [0x000000076c900000,0x0000000795000000,0x0000000795000000)
|
||||||
|
from space 57856K, 66% used [0x0000000798980000,0x000000079aed7970,0x000000079c200000)
|
||||||
|
to space 58368K, 0% used [0x0000000795000000,0x0000000795000000,0x0000000798900000)
|
||||||
|
ParOldGen total 358912K, used 313659K [0x00000006c5a00000, 0x00000006db880000, 0x000000076c900000)
|
||||||
|
object space 358912K, 87% used [0x00000006c5a00000,0x00000006d8c4ee60,0x00000006db880000)
|
||||||
|
Metaspace used 47226K, capacity 47765K, committed 47872K, reserved 1091584K
|
||||||
|
class space used 5450K, capacity 5578K, committed 5632K, reserved 1048576K
|
||||||
|
Event: 2038.701 GC heap after
|
||||||
|
Heap after GC invocations=577 (full 6):
|
||||||
|
PSYoungGen total 720896K, used 40855K [0x000000076c900000, 0x000000079c700000, 0x00000007c0000000)
|
||||||
|
eden space 662528K, 0% used [0x000000076c900000,0x000000076c900000,0x0000000795000000)
|
||||||
|
from space 58368K, 69% used [0x0000000795000000,0x00000007977e5c40,0x0000000798900000)
|
||||||
|
to space 59392K, 0% used [0x0000000798d00000,0x0000000798d00000,0x000000079c700000)
|
||||||
|
ParOldGen total 358912K, used 313659K [0x00000006c5a00000, 0x00000006db880000, 0x000000076c900000)
|
||||||
|
object space 358912K, 87% used [0x00000006c5a00000,0x00000006d8c4ee60,0x00000006db880000)
|
||||||
|
Metaspace used 47226K, capacity 47765K, committed 47872K, reserved 1091584K
|
||||||
|
class space used 5450K, capacity 5578K, committed 5632K, reserved 1048576K
|
||||||
|
}
|
||||||
|
|
||||||
|
Deoptimization events (10 events):
|
||||||
|
Event: 2051.700 Thread 0x000000003d5eb800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000004235738 method=io.netty.util.internal.MpscLinkedQueue.poll()Ljava/lang/Object; @ 26
|
||||||
|
Event: 2051.701 Thread 0x000000003d5f1000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000004a582fc method=io.netty.channel.local.LocalChannel.isActive()Z @ 5
|
||||||
|
Event: 2051.733 Thread 0x000000003d5ef800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000004b3b0c8 method=io.netty.channel.local.LocalChannel.isOpen()Z @ 5
|
||||||
|
Event: 2051.735 Thread 0x000000003d5ef800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000005394440 method=net.minecraft.entity.EntityTracker.untrackEntity(Lnet/minecraft/entity/Entity;)V @ 4
|
||||||
|
Event: 2051.736 Thread 0x000000003d5ef800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000005530248 method=java.util.concurrent.FutureTask.finishCompletion()V @ 6
|
||||||
|
Event: 2051.738 Thread 0x0000000033019800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000004c0c1f4 method=net.minecraft.world.chunk.Chunk.needsSaving(Z)Z @ 23
|
||||||
|
Event: 2051.738 Thread 0x0000000033019800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000047e23e8 method=java.util.concurrent.ConcurrentHashMap.putVal(Ljava/lang/Object;Ljava/lang/Object;Z)Ljava/lang/Object; @ 288
|
||||||
|
Event: 2051.738 Thread 0x0000000033019800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000003ad9ec4 method=java.util.Collections$SetFromMap.add(Ljava/lang/Object;)Z @ 13
|
||||||
|
Event: 2051.738 Thread 0x0000000033019800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000000000433bb68 method=java.util.Collections$SetFromMap.add(Ljava/lang/Object;)Z @ 13
|
||||||
|
Event: 2051.796 Thread 0x000000003301e000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000003d8b05c method=java.util.Collections.reverse(Ljava/util/List;)V @ 1
|
||||||
|
|
||||||
|
Classes redefined (2 events):
|
||||||
|
Event: 0.178 Thread 0x000000001ece5000 redefined class name=java.io.FileOutputStream, count=1
|
||||||
|
Event: 263.547 Thread 0x000000001ece5000 redefined class name=net.minecraft.client.gui.GuiMainMenu, count=1
|
||||||
|
|
||||||
|
Internal exceptions (10 events):
|
||||||
|
Event: 2051.765 Thread 0x000000001edde000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x00000007822a5358) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 2051.768 Thread 0x000000001edde000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x00000007822a5600) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 2051.771 Thread 0x000000001edde000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x00000007822a58a8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 2051.774 Thread 0x000000001edde000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x00000007822a5b50) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 2051.777 Thread 0x000000001edde000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x00000007822a5df8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 2051.780 Thread 0x000000001edde000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x00000007822a60a0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 2051.783 Thread 0x000000001edde000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x00000007822a6348) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 2051.786 Thread 0x000000001edde000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x00000007822a65f0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 2051.790 Thread 0x000000001edde000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x00000007822a6898) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 2051.794 Thread 0x000000001edde000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x00000007822a6b40) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
|
||||||
|
Events (10 events):
|
||||||
|
Event: 2051.790 Thread 0x000000001edde000 DEOPT PACKING pc=0x0000000004b7d4dc sp=0x0000000031deee30
|
||||||
|
Event: 2051.790 Thread 0x000000001edde000 DEOPT UNPACKING pc=0x00000000030e7890 sp=0x0000000031deeb48 mode 1
|
||||||
|
Event: 2051.794 Thread 0x000000001edde000 DEOPT PACKING pc=0x0000000004b7d4dc sp=0x0000000031deee30
|
||||||
|
Event: 2051.794 Thread 0x000000001edde000 DEOPT UNPACKING pc=0x00000000030e7890 sp=0x0000000031deeb48 mode 1
|
||||||
|
Event: 2051.795 Thread 0x000000003301d800 Thread exited: 0x000000003301d800
|
||||||
|
Event: 2051.796 Thread 0x000000003301e000 Uncommon trap: trap_request=0xffffffde fr.pc=0x0000000003d8b05c
|
||||||
|
Event: 2051.796 Thread 0x000000003301e000 DEOPT PACKING pc=0x0000000003d8b05c sp=0x0000000020e6f080
|
||||||
|
Event: 2051.796 Thread 0x000000003301e000 DEOPT UNPACKING pc=0x00000000030e583b sp=0x0000000020e6f0c8 mode 2
|
||||||
|
Event: 2051.796 Thread 0x000000001ed27800 Thread exited: 0x000000001ed27800
|
||||||
|
Event: 2051.796 Executing VM operation: Exit
|
||||||
|
|
||||||
|
|
||||||
|
Dynamic libraries:
|
||||||
|
0x00007ff75c730000 - 0x00007ff75c767000 C:\Program Files\Java\jdk1.8.0_202\bin\java.exe
|
||||||
|
0x00007ffee6e90000 - 0x00007ffee7088000 C:\WINDOWS\SYSTEM32\ntdll.dll
|
||||||
|
0x00007ffee6bf0000 - 0x00007ffee6caf000 C:\WINDOWS\System32\KERNEL32.DLL
|
||||||
|
0x00007ffee68f0000 - 0x00007ffee6be6000 C:\WINDOWS\System32\KERNELBASE.dll
|
||||||
|
0x0000000074000000 - 0x000000007403b000 C:\WINDOWS\System32\cyinjct.dll
|
||||||
|
0x00007ffee6770000 - 0x00007ffee677c000 C:\WINDOWS\System32\ntnativeapi.dll
|
||||||
|
0x00007ffee6750000 - 0x00007ffee676e000 C:\WINDOWS\System32\cyvera.dll
|
||||||
|
0x00007ffee66e0000 - 0x00007ffee6749000 C:\WINDOWS\System32\cyvrtrap.dll
|
||||||
|
0x00007ffee5570000 - 0x00007ffee561f000 C:\WINDOWS\System32\ADVAPI32.dll
|
||||||
|
0x00007ffee60e0000 - 0x00007ffee617e000 C:\WINDOWS\System32\msvcrt.dll
|
||||||
|
0x00007ffee5220000 - 0x00007ffee52bc000 C:\WINDOWS\System32\sechost.dll
|
||||||
|
0x00007ffee67c0000 - 0x00007ffee68e6000 C:\WINDOWS\System32\RPCRT4.dll
|
||||||
|
0x00007ffee6cb0000 - 0x00007ffee6e4d000 C:\WINDOWS\System32\USER32.dll
|
||||||
|
0x00007ffee4620000 - 0x00007ffee4642000 C:\WINDOWS\System32\win32u.dll
|
||||||
|
0x00007ffee5fc0000 - 0x00007ffee5fec000 C:\WINDOWS\System32\GDI32.dll
|
||||||
|
0x00007ffee49b0000 - 0x00007ffee4ac5000 C:\WINDOWS\System32\gdi32full.dll
|
||||||
|
0x00007ffee4860000 - 0x00007ffee48fd000 C:\WINDOWS\System32\msvcp_win.dll
|
||||||
|
0x00007ffee4650000 - 0x00007ffee4750000 C:\WINDOWS\System32\ucrtbase.dll
|
||||||
|
0x00007ffec1bc0000 - 0x00007ffec1e5a000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.19041.1110_none_60b5254171f9507e\COMCTL32.dll
|
||||||
|
0x00007ffee5b00000 - 0x00007ffee5b30000 C:\WINDOWS\System32\IMM32.DLL
|
||||||
|
0x0000000061400000 - 0x00000000614d2000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\msvcr100.dll
|
||||||
|
0x00000000604c0000 - 0x0000000060d65000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\server\jvm.dll
|
||||||
|
0x00007ffee57c0000 - 0x00007ffee57c8000 C:\WINDOWS\System32\PSAPI.DLL
|
||||||
|
0x00007ffedf6d0000 - 0x00007ffedf6d9000 C:\WINDOWS\SYSTEM32\WSOCK32.dll
|
||||||
|
0x00007ffee5f50000 - 0x00007ffee5fbb000 C:\WINDOWS\System32\WS2_32.dll
|
||||||
|
0x00007ffec5030000 - 0x00007ffec5057000 C:\WINDOWS\SYSTEM32\WINMM.dll
|
||||||
|
0x00007ffedddb0000 - 0x00007ffedddba000 C:\WINDOWS\SYSTEM32\VERSION.dll
|
||||||
|
0x00007ffedc960000 - 0x00007ffedc96f000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\verify.dll
|
||||||
|
0x00007ffeca120000 - 0x00007ffeca149000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\java.dll
|
||||||
|
0x00007ffed8fa0000 - 0x00007ffed8fd5000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\jdwp.dll
|
||||||
|
0x00007ffeda800000 - 0x00007ffeda808000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\npt.dll
|
||||||
|
0x00007ffed8f40000 - 0x00007ffed8f63000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\instrument.dll
|
||||||
|
0x00007ffee66a0000 - 0x00007ffee66d7000 C:\Program Files\Palo Alto Networks\Traps\cyjagent.dll
|
||||||
|
0x00007ffed4290000 - 0x00007ffed42a6000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\zip.dll
|
||||||
|
0x00007ffee4ad0000 - 0x00007ffee5214000 C:\WINDOWS\System32\SHELL32.dll
|
||||||
|
0x00007ffee1f40000 - 0x00007ffee26d3000 C:\WINDOWS\SYSTEM32\windows.storage.dll
|
||||||
|
0x00007ffee5b30000 - 0x00007ffee5e84000 C:\WINDOWS\System32\combase.dll
|
||||||
|
0x00007ffee3dd0000 - 0x00007ffee3dfe000 C:\WINDOWS\SYSTEM32\Wldp.dll
|
||||||
|
0x00007ffee6180000 - 0x00007ffee622d000 C:\WINDOWS\System32\SHCORE.dll
|
||||||
|
0x00007ffee5e90000 - 0x00007ffee5ee5000 C:\WINDOWS\System32\shlwapi.dll
|
||||||
|
0x00007ffee4390000 - 0x00007ffee43af000 C:\WINDOWS\SYSTEM32\profapi.dll
|
||||||
|
0x00007ffed8f90000 - 0x00007ffed8f99000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\dt_socket.dll
|
||||||
|
0x00007ffee3bb0000 - 0x00007ffee3c1a000 C:\WINDOWS\system32\mswsock.dll
|
||||||
|
0x00007ffed8f80000 - 0x00007ffed8f8d000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\management.dll
|
||||||
|
0x00007ffed3980000 - 0x00007ffed399a000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\net.dll
|
||||||
|
0x00007ffed13d0000 - 0x00007ffed15bc000 C:\WINDOWS\SYSTEM32\urlmon.dll
|
||||||
|
0x00007ffedcd00000 - 0x00007ffedcfb1000 C:\WINDOWS\SYSTEM32\iertutil.dll
|
||||||
|
0x00007ffee3070000 - 0x00007ffee3098000 C:\WINDOWS\SYSTEM32\srvcli.dll
|
||||||
|
0x00007ffee38b0000 - 0x00007ffee38bc000 C:\WINDOWS\SYSTEM32\netutils.dll
|
||||||
|
0x00007ffed43d0000 - 0x00007ffed43e2000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\nio.dll
|
||||||
|
0x00007ffeab2e0000 - 0x00007ffeab2f7000 C:\WINDOWS\system32\napinsp.dll
|
||||||
|
0x00007ffeab300000 - 0x00007ffeab31b000 C:\WINDOWS\system32\pnrpnsp.dll
|
||||||
|
0x00007ffeded70000 - 0x00007ffeded85000 C:\WINDOWS\system32\wshbth.dll
|
||||||
|
0x00007ffede0f0000 - 0x00007ffede10d000 C:\WINDOWS\system32\NLAapi.dll
|
||||||
|
0x00007ffee3870000 - 0x00007ffee38ac000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
|
||||||
|
0x00007ffee38c0000 - 0x00007ffee398b000 C:\WINDOWS\SYSTEM32\DNSAPI.dll
|
||||||
|
0x00007ffee5850000 - 0x00007ffee5858000 C:\WINDOWS\System32\NSI.dll
|
||||||
|
0x00007ffeab320000 - 0x00007ffeab332000 C:\WINDOWS\System32\winrnr.dll
|
||||||
|
0x00007ffeddf50000 - 0x00007ffeddfd2000 C:\WINDOWS\System32\fwpuclnt.dll
|
||||||
|
0x00007ffee4830000 - 0x00007ffee4857000 C:\WINDOWS\System32\bcrypt.dll
|
||||||
|
0x00007ffedd130000 - 0x00007ffedd13a000 C:\Windows\System32\rasadhlp.dll
|
||||||
|
0x0000000180000000 - 0x0000000180053000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\lwjgl64.dll
|
||||||
|
0x00007ffea9980000 - 0x00007ffea9aa5000 C:\WINDOWS\SYSTEM32\OPENGL32.dll
|
||||||
|
0x00007ffed8ca0000 - 0x00007ffed8ccc000 C:\WINDOWS\SYSTEM32\GLU32.dll
|
||||||
|
0x00007ffee3e10000 - 0x00007ffee3e28000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll
|
||||||
|
0x00007ffee3370000 - 0x00007ffee33a4000 C:\WINDOWS\system32\rsaenh.dll
|
||||||
|
0x00007ffee4310000 - 0x00007ffee433e000 C:\WINDOWS\SYSTEM32\USERENV.dll
|
||||||
|
0x00007ffee4750000 - 0x00007ffee47d2000 C:\WINDOWS\System32\bcryptprimitives.dll
|
||||||
|
0x00007ffee3d40000 - 0x00007ffee3d4c000 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
|
||||||
|
0x00007ffeddee0000 - 0x00007ffeddef7000 C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL
|
||||||
|
0x00007ffeddec0000 - 0x00007ffeddedd000 C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL
|
||||||
|
0x00007ffe96070000 - 0x00007ffe96209000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\awt.dll
|
||||||
|
0x00007ffee53f0000 - 0x00007ffee54bd000 C:\WINDOWS\System32\OLEAUT32.dll
|
||||||
|
0x00007ffee1180000 - 0x00007ffee1211000 C:\WINDOWS\SYSTEM32\apphelp.dll
|
||||||
|
0x00007ffeddb00000 - 0x00007ffeddbae000 C:\WINDOWS\SYSTEM32\mscms.dll
|
||||||
|
0x00007ffedda90000 - 0x00007ffeddaa1000 C:\WINDOWS\SYSTEM32\ColorAdapterClient.dll
|
||||||
|
0x00007ffee2d60000 - 0x00007ffee2d72000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll
|
||||||
|
0x00007ffee54c0000 - 0x00007ffee5569000 C:\WINDOWS\System32\clbcatq.dll
|
||||||
|
0x00007ffed06d0000 - 0x00007ffed0713000 C:\Windows\System32\Windows.Internal.Graphics.Display.DisplayColorManagement.dll
|
||||||
|
0x00007ffee47e0000 - 0x00007ffee482e000 C:\WINDOWS\System32\cfgmgr32.dll
|
||||||
|
0x00007ffee1820000 - 0x00007ffee18be000 C:\WINDOWS\system32\uxtheme.dll
|
||||||
|
0x00007ffee5620000 - 0x00007ffee5734000 C:\WINDOWS\System32\MSCTF.dll
|
||||||
|
0x00007ffec9a60000 - 0x00007ffec9b5a000 C:\WINDOWS\SYSTEM32\textinputframework.dll
|
||||||
|
0x00007ffee0bf0000 - 0x00007ffee0f4e000 C:\WINDOWS\System32\CoreUIComponents.dll
|
||||||
|
0x00007ffee0f50000 - 0x00007ffee1042000 C:\WINDOWS\System32\CoreMessaging.dll
|
||||||
|
0x00007ffee35c0000 - 0x00007ffee35f3000 C:\WINDOWS\SYSTEM32\ntmarta.dll
|
||||||
|
0x00007ffee0520000 - 0x00007ffee0674000 C:\WINDOWS\SYSTEM32\wintypes.dll
|
||||||
|
0x00007ffed4fa0000 - 0x00007ffed50a4000 C:\Windows\System32\AppXDeploymentClient.dll
|
||||||
|
0x00007ffe3a9c0000 - 0x00007ffe3b9b3000 C:\WINDOWS\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_307c52ae370e15f2\igxelpicd64.dll
|
||||||
|
0x00007ffee52c0000 - 0x00007ffee53ea000 C:\WINDOWS\System32\ole32.dll
|
||||||
|
0x00007ffee1950000 - 0x00007ffee197f000 C:\WINDOWS\system32\dwmapi.dll
|
||||||
|
0x00007ffee2ae0000 - 0x00007ffee2bd3000 C:\WINDOWS\system32\dxgi.dll
|
||||||
|
0x00007ffe92b20000 - 0x00007ffe92f73000 C:\WINDOWS\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_307c52ae370e15f2\igdml64.dll
|
||||||
|
0x00007ffecdc00000 - 0x00007ffecdfc7000 C:\WINDOWS\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_307c52ae370e15f2\igdgmm64.dll
|
||||||
|
0x00007ffe815f0000 - 0x00007ffe81633000 C:\WINDOWS\SYSTEM32\icm32.dll
|
||||||
|
0x00007ffeca5e0000 - 0x00007ffecdbf1000 C:\WINDOWS\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_307c52ae370e15f2\igc64.dll
|
||||||
|
0x00007ffee3990000 - 0x00007ffee39db000 C:\WINDOWS\SYSTEM32\powrprof.dll
|
||||||
|
0x00007ffee3850000 - 0x00007ffee3862000 C:\WINDOWS\SYSTEM32\UMPDC.dll
|
||||||
|
0x0000000026e20000 - 0x0000000026e58000 C:\Users\remgab001\AppData\Local\Temp\jna\jna7782570744425350142.dll
|
||||||
|
0x0000000070a40000 - 0x0000000070adc000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\avutil-ttv-51.dll
|
||||||
|
0x0000000065980000 - 0x00000000659d6000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\swresample-ttv-0.dll
|
||||||
|
0x000000006eb80000 - 0x000000006ec50000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\libmp3lame-ttv.dll
|
||||||
|
0x00007ffe37aa0000 - 0x00007ffe38e44000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\libmfxsw64.dll
|
||||||
|
0x00007ffe9a350000 - 0x00007ffe9a4bd000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\twitchsdk.dll
|
||||||
|
0x00007ffec4920000 - 0x00007ffec4df9000 C:\WINDOWS\SYSTEM32\WININET.dll
|
||||||
|
0x00000000286a0000 - 0x0000000028704000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\OpenAL64.dll
|
||||||
|
0x00007ffedbfa0000 - 0x00007ffedc025000 C:\WINDOWS\System32\MMDevApi.dll
|
||||||
|
0x00007ffee4200000 - 0x00007ffee422c000 C:\WINDOWS\System32\DEVOBJ.dll
|
||||||
|
0x00007ffea9750000 - 0x00007ffea97ec000 C:\WINDOWS\SYSTEM32\dsound.dll
|
||||||
|
0x00007ffec4e00000 - 0x00007ffec4e26000 C:\WINDOWS\SYSTEM32\winmmbase.dll
|
||||||
|
0x00007ffedc0f0000 - 0x00007ffedc272000 C:\WINDOWS\SYSTEM32\AUDIOSES.DLL
|
||||||
|
0x00007ffee1a60000 - 0x00007ffee1a74000 C:\WINDOWS\SYSTEM32\resourcepolicyclient.dll
|
||||||
|
0x00007ffea9700000 - 0x00007ffea9747000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\fontmanager.dll
|
||||||
|
0x00007ffe96020000 - 0x00007ffe96062000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\t2k.dll
|
||||||
|
0x00007ffed9090000 - 0x00007ffed90ba000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\dcpr.dll
|
||||||
|
0x00007ffee27b0000 - 0x00007ffee2994000 C:\WINDOWS\SYSTEM32\dbghelp.dll
|
||||||
|
|
||||||
|
VM Arguments:
|
||||||
|
jvm_args: -agentlib:jdwp=transport=dt_socket,address=127.0.0.1:49941,suspend=y,server=n -Djava.library.path=versions/1.8.8/1.8.8-natives/ -javaagent:C:\Users\remgab001\AppData\Local\JetBrains\IdeaIC2023.1\captureAgent\debugger-agent.jar -Dfile.encoding=UTF-8 -agentpath:C:\Program Files\Palo Alto Networks\Traps\cyjagent.dll
|
||||||
|
java_command: Start
|
||||||
|
java_class_path (initial): C:\Program Files\Java\jdk1.8.0_202\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\deploy.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\access-bridge-64.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\cldrdata.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\dnsns.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\jaccess.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\jfxrt.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\localedata.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\nashorn.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\sunec.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\sunjce_provider.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\sunmscapi.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\sunpkcs11.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\zipfs.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\javaws.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jce.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jfr.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jfxswt.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\management-agent.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\plugin.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\resources.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\rt.jar;C:\Users\remgab001\Desktop\Athena-Client\target\classes;C:\Users\remgab001\.m2\repository\net\minecraft\minecraft\1.8.8\minecraft-1.8.8.jar;C:\Users\remgab001\.m2\repository\org\json\json\20230227\json-20230227.jar;C:\Users\remgab001\.m2\repository\org\reflections\reflections\0.10.2\reflections-0.10.2.jar;C:\Users\remgab001\.m2\repository\org\javassist\javassist\3.28.0-GA\javassist-3.28.0-GA.jar;C:\Users\remgab001\.m2\repository\com\google\code\findbugs\jsr305\3.0.2\jsr305-3.0.2.jar;C:\Users\remgab001\.m2\repository\org\slf4j\slf4j-api\1.7.32\slf4j-api-1.7.32.jar;C:\Users\remgab001\.m2\repository\oshi-project\oshi-core\1.1\oshi-core-1.1.jar;
|
||||||
|
Launcher Type: SUN_STANDARD
|
||||||
|
|
||||||
|
Environment Variables:
|
||||||
|
PATH=C:\Program Files\Google\Chrome\Application;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\nodejs\;C:\Program Files\Git\cmd;C:\Users\remgab001\AppData\Local\Microsoft\WindowsApps;C:\Users\remgab001\AppData\Roaming\npm;C:\Users\remgab001\AppData\Local\Programs\Microsoft VS Code\bin
|
||||||
|
USERNAME=remgab001
|
||||||
|
OS=Windows_NT
|
||||||
|
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 154 Stepping 3, GenuineIntel
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
--------------- S Y S T E M ---------------
|
||||||
|
|
||||||
|
OS: Windows 10.0 , 64 bit Build 19041 (10.0.19041.2913)
|
||||||
|
|
||||||
|
CPU:total 20 (initial active 20) (10 cores per cpu, 2 threads per core) family 6 model 154 stepping 3, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, clmul, erms, 3dnowpref, lzcnt, ht, tsc, tscinvbit, bmi1, bmi2, adx
|
||||||
|
|
||||||
|
Memory: 4k page, physical 16400820k(722092k free), swap 33178036k(9602492k free)
|
||||||
|
|
||||||
|
vm_info: Java HotSpot(TM) 64-Bit Server VM (25.202-b08) for windows-amd64 JRE (1.8.0_202-b08), built on Dec 15 2018 19:54:30 by "java_re" with MS VC++ 10.0 (VS2010)
|
||||||
|
|
||||||
|
time: Fri Jun 02 13:52:55 2023
|
||||||
|
timezone: Vest-Europa (sommertid)
|
||||||
|
elapsed time: 2052 seconds (0d 0h 34m 12s)
|
||||||
|
|
456
workspace/hs_err_pid21180.log
Normal file
456
workspace/hs_err_pid21180.log
Normal file
@ -0,0 +1,456 @@
|
|||||||
|
#
|
||||||
|
# A fatal error has been detected by the Java Runtime Environment:
|
||||||
|
#
|
||||||
|
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ffe8f60366c, pid=21180, tid=0x0000000000002a2c
|
||||||
|
#
|
||||||
|
# JRE version: Java(TM) SE Runtime Environment (8.0_202-b08) (build 1.8.0_202-b08)
|
||||||
|
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.202-b08 mixed mode windows-amd64 compressed oops)
|
||||||
|
# Problematic frame:
|
||||||
|
# C [igxelpicd64.dll+0x13366c]
|
||||||
|
#
|
||||||
|
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
|
||||||
|
#
|
||||||
|
# If you would like to submit a bug report, please visit:
|
||||||
|
# http://bugreport.java.com/bugreport/crash.jsp
|
||||||
|
#
|
||||||
|
|
||||||
|
--------------- T H R E A D ---------------
|
||||||
|
|
||||||
|
Current thread (0x000000001e615000): VMThread [stack: 0x0000000020090000,0x0000000020190000] [id=10796]
|
||||||
|
|
||||||
|
siginfo: ExceptionCode=0xc0000005, reading address 0x00000000000356f8
|
||||||
|
|
||||||
|
Registers:
|
||||||
|
RAX=0x000000002fe00078, RBX=0x000000002fdfff70, RCX=0x0000000000000000, RDX=0x0000000000000000
|
||||||
|
RSP=0x000000002018e8d0, RBP=0x0000000000000000, RSI=0x000000002fe00540, RDI=0x000000002a61dc70
|
||||||
|
R8 =0x0000000000000014, R9 =0x0000000000000000, R10=0x0000000000000000, R11=0x0000000000000000
|
||||||
|
R12=0x0000000000000000, R13=0x000000002fc112d0, R14=0x0000000000627900, R15=0x0000000000000016
|
||||||
|
RIP=0x00007ffe8f60366c, EFLAGS=0x0000000000010206
|
||||||
|
|
||||||
|
Top of Stack: (sp=0x000000002018e8d0)
|
||||||
|
0x000000002018e8d0: 00000000004e4ff0 00007ffee6d3f070
|
||||||
|
0x000000002018e8e0: 0000000000000000 00007ffee6f30eb4
|
||||||
|
0x000000002018e8f0: 000000002018ffff 0000000028321490
|
||||||
|
0x000000002018e900: 00000000029663a0 000000000000000d
|
||||||
|
0x000000002018e910: 0000000028122cf8 0000000000627952
|
||||||
|
0x000000002018e920: 0000000000000000 000000000000000e
|
||||||
|
0x000000002018e930: 0000000000000000 0000000000000000
|
||||||
|
0x000000002018e940: 000000002018ea50 00007ffe8f77bc3c
|
||||||
|
0x000000002018e950: 00000000004e4ff0 000000002a61dc70
|
||||||
|
0x000000002018e960: 00007ffee6f09300 000000001e614a00
|
||||||
|
0x000000002018e970: 0000000000001668 0000740400000000
|
||||||
|
0x000000002018e980: 0000000000000000 00007ffee6ead23b
|
||||||
|
0x000000002018e990: 0000000000000001 000000002018eb40
|
||||||
|
0x000000002018e9a0: 0000000000000002 00000000001e0000
|
||||||
|
0x000000002018e9b0: 00007ffee6ef79d0 00007ffe8f7719a0
|
||||||
|
0x000000002018e9c0: 00000000000004b4 00000000001e1c04
|
||||||
|
|
||||||
|
Instructions: (pc=0x00007ffe8f60366c)
|
||||||
|
0x00007ffe8f60364c: 83 20 01 00 00 48 8d 04 d5 21 00 00 00 48 03 c2
|
||||||
|
0x00007ffe8f60365c: 48 8d 04 c3 48 85 c0 0f 85 ff 00 00 00 49 8b cb
|
||||||
|
0x00007ffe8f60366c: 48 3b 8d f8 56 03 00 0f 87 f3 02 00 00 4c 39 9b
|
||||||
|
0x00007ffe8f60367c: 48 06 00 00 0f 85 31 da 86 00 44 8b 97 c8 01 00
|
||||||
|
|
||||||
|
|
||||||
|
Register to memory mapping:
|
||||||
|
|
||||||
|
RAX=0x000000002fe00078 is an unknown value
|
||||||
|
RBX=0x000000002fdfff70 is an unknown value
|
||||||
|
RCX=0x0000000000000000 is an unknown value
|
||||||
|
RDX=0x0000000000000000 is an unknown value
|
||||||
|
RSP=0x000000002018e8d0 is an unknown value
|
||||||
|
RBP=0x0000000000000000 is an unknown value
|
||||||
|
RSI=0x000000002fe00540 is an unknown value
|
||||||
|
RDI=0x000000002a61dc70 is an unknown value
|
||||||
|
R8 =0x0000000000000014 is an unknown value
|
||||||
|
R9 =0x0000000000000000 is an unknown value
|
||||||
|
R10=0x0000000000000000 is an unknown value
|
||||||
|
R11=0x0000000000000000 is an unknown value
|
||||||
|
R12=0x0000000000000000 is an unknown value
|
||||||
|
R13=0x000000002fc112d0 is an unknown value
|
||||||
|
R14=0x0000000000627900 is an unknown value
|
||||||
|
R15=0x0000000000000016 is an unknown value
|
||||||
|
|
||||||
|
|
||||||
|
Stack: [0x0000000020090000,0x0000000020190000], sp=0x000000002018e8d0, free space=1018k
|
||||||
|
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
|
||||||
|
|
||||||
|
VM_Operation (0x000000002078f360): Exit, mode: safepoint, requested by thread 0x0000000036ddc000
|
||||||
|
|
||||||
|
|
||||||
|
--------------- P R O C E S S ---------------
|
||||||
|
|
||||||
|
Java Threads: ( => current thread )
|
||||||
|
0x0000000036dd7000 JavaThread "AWT-Shutdown" [_thread_blocked, id=13236, stack(0x0000000041a80000,0x0000000041b80000)]
|
||||||
|
0x0000000036ddc000 JavaThread "SIGINT handler" daemon [_thread_blocked, id=13180, stack(0x0000000020690000,0x0000000020790000)]
|
||||||
|
0x0000000035cb4000 JavaThread "File IO Thread" [_thread_blocked, id=18536, stack(0x0000000041980000,0x0000000041a80000)]
|
||||||
|
0x0000000035cb7800 JavaThread "pool-2-thread-1" [_thread_blocked, id=1676, stack(0x0000000041ff0000,0x00000000420f0000)]
|
||||||
|
0x0000000035cb6000 JavaThread "Netty Server IO #1" daemon [_thread_blocked, id=10040, stack(0x0000000041880000,0x0000000041980000)]
|
||||||
|
0x0000000035cb2800 JavaThread "Netty Local Client IO #0" daemon [_thread_blocked, id=17156, stack(0x000000003ad10000,0x000000003ae10000)]
|
||||||
|
0x0000000035cb2000 JavaThread "Netty Server IO #0" daemon [_thread_blocked, id=17848, stack(0x0000000037be0000,0x0000000037ce0000)]
|
||||||
|
0x0000000035cb8000 JavaThread "Server thread" [_thread_blocked, id=20884, stack(0x0000000036a80000,0x0000000036b80000)]
|
||||||
|
0x000000001e74b000 JavaThread "LWJGL Timer" daemon [_thread_blocked, id=16124, stack(0x0000000035900000,0x0000000035a00000)]
|
||||||
|
0x000000001e749800 JavaThread "Chunk Batcher 1" daemon [_thread_blocked, id=16436, stack(0x00000000306a0000,0x00000000307a0000)]
|
||||||
|
0x000000001e74d800 JavaThread "Chunk Batcher 0" daemon [_thread_blocked, id=10828, stack(0x00000000305a0000,0x00000000306a0000)]
|
||||||
|
0x000000001e749000 JavaThread "Thread-8" [_thread_blocked, id=20348, stack(0x00000000318a0000,0x00000000319a0000)]
|
||||||
|
0x00000000289e5800 JavaThread "Thread-7" [_thread_blocked, id=13060, stack(0x0000000033af0000,0x0000000033bf0000)]
|
||||||
|
0x0000000028cdd800 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=12836, stack(0x0000000027cd0000,0x0000000027dd0000)]
|
||||||
|
0x0000000028a4d000 JavaThread "Timer hack thread" daemon [_thread_blocked, id=6096, stack(0x0000000026520000,0x0000000026620000)]
|
||||||
|
0x0000000022d18000 JavaThread "Snooper Timer" daemon [_thread_blocked, id=7912, stack(0x00000000253a0000,0x00000000254a0000)]
|
||||||
|
0x000000001e791000 JavaThread "Service Thread" daemon [_thread_blocked, id=10080, stack(0x0000000021690000,0x0000000021790000)]
|
||||||
|
0x000000001e746800 JavaThread "C1 CompilerThread11" daemon [_thread_blocked, id=18204, stack(0x0000000021590000,0x0000000021690000)]
|
||||||
|
0x000000001e747800 JavaThread "C1 CompilerThread10" daemon [_thread_blocked, id=18908, stack(0x0000000021490000,0x0000000021590000)]
|
||||||
|
0x000000001e74a800 JavaThread "C1 CompilerThread9" daemon [_thread_blocked, id=10676, stack(0x0000000021390000,0x0000000021490000)]
|
||||||
|
0x000000001e73d800 JavaThread "C1 CompilerThread8" daemon [_thread_blocked, id=5604, stack(0x0000000021290000,0x0000000021390000)]
|
||||||
|
0x000000001e712800 JavaThread "C2 CompilerThread7" daemon [_thread_blocked, id=18764, stack(0x0000000021190000,0x0000000021290000)]
|
||||||
|
0x000000001e6f8000 JavaThread "C2 CompilerThread6" daemon [_thread_blocked, id=10988, stack(0x0000000021090000,0x0000000021190000)]
|
||||||
|
0x000000001e6ee000 JavaThread "C2 CompilerThread5" daemon [_thread_blocked, id=18244, stack(0x0000000020f90000,0x0000000021090000)]
|
||||||
|
0x000000001e6e5800 JavaThread "C2 CompilerThread4" daemon [_thread_blocked, id=8048, stack(0x0000000020e90000,0x0000000020f90000)]
|
||||||
|
0x000000001e6e4800 JavaThread "C2 CompilerThread3" daemon [_thread_blocked, id=13392, stack(0x0000000020d90000,0x0000000020e90000)]
|
||||||
|
0x000000001e6e2000 JavaThread "C2 CompilerThread2" daemon [_thread_blocked, id=13316, stack(0x0000000020b90000,0x0000000020c90000)]
|
||||||
|
0x000000001e697000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=11632, stack(0x0000000020a90000,0x0000000020b90000)]
|
||||||
|
0x000000001e692000 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=15348, stack(0x0000000020990000,0x0000000020a90000)]
|
||||||
|
0x000000001e678800 JavaThread "JDWP Event Helper Thread" daemon [_thread_blocked, id=788, stack(0x0000000020790000,0x0000000020890000)]
|
||||||
|
0x000000001e65a000 JavaThread "Attach Listener" daemon [_thread_blocked, id=9272, stack(0x0000000020590000,0x0000000020690000)]
|
||||||
|
0x000000001e63e000 JavaThread "Finalizer" daemon [_thread_blocked, id=16360, stack(0x0000000020290000,0x0000000020390000)]
|
||||||
|
0x000000001e638000 JavaThread "Reference Handler" daemon [_thread_blocked, id=17024, stack(0x0000000020190000,0x0000000020290000)]
|
||||||
|
0x00000000028b4800 JavaThread "Client thread" [_thread_blocked, id=748, stack(0x0000000002340000,0x0000000002440000)]
|
||||||
|
|
||||||
|
Other Threads:
|
||||||
|
=>0x000000001e615000 VMThread [stack: 0x0000000020090000,0x0000000020190000] [id=10796]
|
||||||
|
|
||||||
|
VM state:at safepoint (shutting down)
|
||||||
|
|
||||||
|
VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
|
||||||
|
[0x00000000028b1850] Threads_lock - owner thread: 0x000000001e615000
|
||||||
|
|
||||||
|
heap address: 0x00000006c5a00000, size: 4006 MB, Compressed Oops mode: Zero based, Oop shift amount: 3
|
||||||
|
Narrow klass base: 0x0000000000000000, Narrow klass shift: 3
|
||||||
|
Compressed class space size: 1073741824 Address: 0x00000007c0000000
|
||||||
|
|
||||||
|
Heap:
|
||||||
|
PSYoungGen total 532480K, used 367877K [0x000000076c900000, 0x0000000795380000, 0x00000007c0000000)
|
||||||
|
eden space 513024K, 68% used [0x000000076c900000,0x0000000781dbe378,0x000000078be00000)
|
||||||
|
from space 19456K, 97% used [0x0000000794080000,0x0000000795303450,0x0000000795380000)
|
||||||
|
to space 70656K, 0% used [0x000000078c980000,0x000000078c980000,0x0000000790e80000)
|
||||||
|
ParOldGen total 254464K, used 168759K [0x00000006c5a00000, 0x00000006d5280000, 0x000000076c900000)
|
||||||
|
object space 254464K, 66% used [0x00000006c5a00000,0x00000006cfecdc68,0x00000006d5280000)
|
||||||
|
Metaspace used 46143K, capacity 46619K, committed 46848K, reserved 1091584K
|
||||||
|
class space used 5410K, capacity 5549K, committed 5632K, reserved 1048576K
|
||||||
|
|
||||||
|
Card table byte_map: [0x0000000011d70000,0x0000000012550000] byte_map_base: 0x000000000e743000
|
||||||
|
|
||||||
|
Marking Bits: (ParMarkBitMap*) 0x0000000060ce5ce0
|
||||||
|
Begin Bits: [0x0000000013990000, 0x0000000017828000)
|
||||||
|
End Bits: [0x0000000017828000, 0x000000001b6c0000)
|
||||||
|
|
||||||
|
Polling page: 0x0000000000800000
|
||||||
|
|
||||||
|
CodeCache: size=245760Kb used=35904Kb max_used=35962Kb free=209855Kb
|
||||||
|
bounds [0x00000000029b0000, 0x0000000004d10000, 0x00000000119b0000]
|
||||||
|
total_blobs=8674 nmethods=7789 adapters=800
|
||||||
|
compilation: enabled
|
||||||
|
|
||||||
|
Compilation events (10 events):
|
||||||
|
Event: 136.295 Thread 0x000000001e74a800 10378 3 java.lang.Long::compareTo (9 bytes)
|
||||||
|
Event: 136.295 Thread 0x000000001e746800 10379 3 java.lang.Long::compareTo (12 bytes)
|
||||||
|
Event: 136.296 Thread 0x000000001e73d800 nmethod 10382 0x0000000002f93350 code [0x0000000002f934c0, 0x0000000002f93768]
|
||||||
|
Event: 136.296 Thread 0x000000001e74a800 nmethod 10378 0x0000000004c901d0 code [0x0000000004c90340, 0x0000000004c90790]
|
||||||
|
Event: 136.296 Thread 0x000000001e747800 nmethod 10377 0x0000000004c8fb10 code [0x0000000004c8fc80, 0x0000000004c900c8]
|
||||||
|
Event: 136.296 Thread 0x000000001e746800 nmethod 10379 0x0000000002f92e90 code [0x0000000002f93000, 0x0000000002f93290]
|
||||||
|
Event: 136.296 Thread 0x000000001e747800 10380 3 java.lang.Long::compare (22 bytes)
|
||||||
|
Event: 136.296 Thread 0x000000001e746800 10381 1 sun.reflect.generics.reflectiveObjects.ParameterizedTypeImpl::getRawType (5 bytes)
|
||||||
|
Event: 136.296 Thread 0x000000001e746800 nmethod 10381 0x0000000004c8f850 code [0x0000000004c8f9a0, 0x0000000004c8fab0]
|
||||||
|
Event: 136.296 Thread 0x000000001e747800 nmethod 10380 0x0000000004183390 code [0x0000000004183500, 0x0000000004183710]
|
||||||
|
|
||||||
|
GC Heap History (10 events):
|
||||||
|
Event: 87.694 GC heap before
|
||||||
|
{Heap before GC invocations=21 (full 5):
|
||||||
|
PSYoungGen total 329216K, used 310385K [0x000000076c900000, 0x0000000788280000, 0x00000007c0000000)
|
||||||
|
eden space 284160K, 96% used [0x000000076c900000,0x000000077d546090,0x000000077de80000)
|
||||||
|
from space 45056K, 79% used [0x000000077de80000,0x0000000780156620,0x0000000780a80000)
|
||||||
|
to space 49152K, 0% used [0x0000000785280000,0x0000000785280000,0x0000000788280000)
|
||||||
|
ParOldGen total 254464K, used 120390K [0x00000006c5a00000, 0x00000006d5280000, 0x000000076c900000)
|
||||||
|
object space 254464K, 47% used [0x00000006c5a00000,0x00000006ccf91868,0x00000006d5280000)
|
||||||
|
Metaspace used 45087K, capacity 45517K, committed 45696K, reserved 1089536K
|
||||||
|
class space used 5368K, capacity 5494K, committed 5504K, reserved 1048576K
|
||||||
|
Event: 87.713 GC heap after
|
||||||
|
Heap after GC invocations=21 (full 5):
|
||||||
|
PSYoungGen total 398848K, used 37502K [0x000000076c900000, 0x0000000788f80000, 0x00000007c0000000)
|
||||||
|
eden space 349696K, 0% used [0x000000076c900000,0x000000076c900000,0x0000000781e80000)
|
||||||
|
from space 49152K, 76% used [0x0000000785280000,0x000000078771f980,0x0000000788280000)
|
||||||
|
to space 53248K, 0% used [0x0000000781e80000,0x0000000781e80000,0x0000000785280000)
|
||||||
|
ParOldGen total 254464K, used 120398K [0x00000006c5a00000, 0x00000006d5280000, 0x000000076c900000)
|
||||||
|
object space 254464K, 47% used [0x00000006c5a00000,0x00000006ccf93868,0x00000006d5280000)
|
||||||
|
Metaspace used 45087K, capacity 45517K, committed 45696K, reserved 1089536K
|
||||||
|
class space used 5368K, capacity 5494K, committed 5504K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 88.095 GC heap before
|
||||||
|
{Heap before GC invocations=22 (full 5):
|
||||||
|
PSYoungGen total 398848K, used 382654K [0x000000076c900000, 0x0000000788f80000, 0x00000007c0000000)
|
||||||
|
eden space 349696K, 98% used [0x000000076c900000,0x0000000781a100e8,0x0000000781e80000)
|
||||||
|
from space 49152K, 76% used [0x0000000785280000,0x000000078771f980,0x0000000788280000)
|
||||||
|
to space 53248K, 0% used [0x0000000781e80000,0x0000000781e80000,0x0000000785280000)
|
||||||
|
ParOldGen total 254464K, used 120398K [0x00000006c5a00000, 0x00000006d5280000, 0x000000076c900000)
|
||||||
|
object space 254464K, 47% used [0x00000006c5a00000,0x00000006ccf93868,0x00000006d5280000)
|
||||||
|
Metaspace used 45106K, capacity 45523K, committed 45696K, reserved 1089536K
|
||||||
|
class space used 5369K, capacity 5495K, committed 5504K, reserved 1048576K
|
||||||
|
Event: 88.110 GC heap after
|
||||||
|
Heap after GC invocations=22 (full 5):
|
||||||
|
PSYoungGen total 402944K, used 37905K [0x000000076c900000, 0x000000078ed00000, 0x00000007c0000000)
|
||||||
|
eden space 349696K, 0% used [0x000000076c900000,0x000000076c900000,0x0000000781e80000)
|
||||||
|
from space 53248K, 71% used [0x0000000781e80000,0x0000000784384400,0x0000000785280000)
|
||||||
|
to space 56320K, 0% used [0x000000078b600000,0x000000078b600000,0x000000078ed00000)
|
||||||
|
ParOldGen total 254464K, used 120406K [0x00000006c5a00000, 0x00000006d5280000, 0x000000076c900000)
|
||||||
|
object space 254464K, 47% used [0x00000006c5a00000,0x00000006ccf95868,0x00000006d5280000)
|
||||||
|
Metaspace used 45106K, capacity 45523K, committed 45696K, reserved 1089536K
|
||||||
|
class space used 5369K, capacity 5495K, committed 5504K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 88.377 GC heap before
|
||||||
|
{Heap before GC invocations=23 (full 5):
|
||||||
|
PSYoungGen total 402944K, used 387601K [0x000000076c900000, 0x000000078ed00000, 0x00000007c0000000)
|
||||||
|
eden space 349696K, 100% used [0x000000076c900000,0x0000000781e80000,0x0000000781e80000)
|
||||||
|
from space 53248K, 71% used [0x0000000781e80000,0x0000000784384400,0x0000000785280000)
|
||||||
|
to space 56320K, 0% used [0x000000078b600000,0x000000078b600000,0x000000078ed00000)
|
||||||
|
ParOldGen total 254464K, used 120406K [0x00000006c5a00000, 0x00000006d5280000, 0x000000076c900000)
|
||||||
|
object space 254464K, 47% used [0x00000006c5a00000,0x00000006ccf95868,0x00000006d5280000)
|
||||||
|
Metaspace used 45228K, capacity 45683K, committed 46080K, reserved 1089536K
|
||||||
|
class space used 5379K, capacity 5527K, committed 5632K, reserved 1048576K
|
||||||
|
Event: 88.408 GC heap after
|
||||||
|
Heap after GC invocations=23 (full 5):
|
||||||
|
PSYoungGen total 485376K, used 56318K [0x000000076c900000, 0x0000000792d80000, 0x00000007c0000000)
|
||||||
|
eden space 429056K, 0% used [0x000000076c900000,0x000000076c900000,0x0000000786c00000)
|
||||||
|
from space 56320K, 99% used [0x000000078b600000,0x000000078ecff990,0x000000078ed00000)
|
||||||
|
to space 75776K, 0% used [0x0000000786c00000,0x0000000786c00000,0x000000078b600000)
|
||||||
|
ParOldGen total 254464K, used 147829K [0x00000006c5a00000, 0x00000006d5280000, 0x000000076c900000)
|
||||||
|
object space 254464K, 58% used [0x00000006c5a00000,0x00000006cea5d5b8,0x00000006d5280000)
|
||||||
|
Metaspace used 45228K, capacity 45683K, committed 46080K, reserved 1089536K
|
||||||
|
class space used 5379K, capacity 5527K, committed 5632K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 89.150 GC heap before
|
||||||
|
{Heap before GC invocations=24 (full 5):
|
||||||
|
PSYoungGen total 485376K, used 485374K [0x000000076c900000, 0x0000000792d80000, 0x00000007c0000000)
|
||||||
|
eden space 429056K, 100% used [0x000000076c900000,0x0000000786c00000,0x0000000786c00000)
|
||||||
|
from space 56320K, 99% used [0x000000078b600000,0x000000078ecff990,0x000000078ed00000)
|
||||||
|
to space 75776K, 0% used [0x0000000786c00000,0x0000000786c00000,0x000000078b600000)
|
||||||
|
ParOldGen total 254464K, used 147829K [0x00000006c5a00000, 0x00000006d5280000, 0x000000076c900000)
|
||||||
|
object space 254464K, 58% used [0x00000006c5a00000,0x00000006cea5d600,0x00000006d5280000)
|
||||||
|
Metaspace used 45261K, capacity 45683K, committed 46080K, reserved 1089536K
|
||||||
|
class space used 5379K, capacity 5527K, committed 5632K, reserved 1048576K
|
||||||
|
Event: 89.164 GC heap after
|
||||||
|
Heap after GC invocations=24 (full 5):
|
||||||
|
PSYoungGen total 504832K, used 11456K [0x000000076c900000, 0x0000000798880000, 0x00000007c0000000)
|
||||||
|
eden space 429056K, 0% used [0x000000076c900000,0x000000076c900000,0x0000000786c00000)
|
||||||
|
from space 75776K, 15% used [0x0000000786c00000,0x0000000787730020,0x000000078b600000)
|
||||||
|
to space 73728K, 0% used [0x0000000794080000,0x0000000794080000,0x0000000798880000)
|
||||||
|
ParOldGen total 254464K, used 166445K [0x00000006c5a00000, 0x00000006d5280000, 0x000000076c900000)
|
||||||
|
object space 254464K, 65% used [0x00000006c5a00000,0x00000006cfc8b420,0x00000006d5280000)
|
||||||
|
Metaspace used 45261K, capacity 45683K, committed 46080K, reserved 1089536K
|
||||||
|
class space used 5379K, capacity 5527K, committed 5632K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 102.735 GC heap before
|
||||||
|
{Heap before GC invocations=25 (full 5):
|
||||||
|
PSYoungGen total 504832K, used 440512K [0x000000076c900000, 0x0000000798880000, 0x00000007c0000000)
|
||||||
|
eden space 429056K, 100% used [0x000000076c900000,0x0000000786c00000,0x0000000786c00000)
|
||||||
|
from space 75776K, 15% used [0x0000000786c00000,0x0000000787730020,0x000000078b600000)
|
||||||
|
to space 73728K, 0% used [0x0000000794080000,0x0000000794080000,0x0000000798880000)
|
||||||
|
ParOldGen total 254464K, used 166446K [0x00000006c5a00000, 0x00000006d5280000, 0x000000076c900000)
|
||||||
|
object space 254464K, 65% used [0x00000006c5a00000,0x00000006cfc8baf8,0x00000006d5280000)
|
||||||
|
Metaspace used 45796K, capacity 46277K, committed 46592K, reserved 1089536K
|
||||||
|
class space used 5400K, capacity 5544K, committed 5632K, reserved 1048576K
|
||||||
|
Event: 102.745 GC heap after
|
||||||
|
Heap after GC invocations=25 (full 5):
|
||||||
|
PSYoungGen total 532480K, used 18957K [0x000000076c900000, 0x0000000795380000, 0x00000007c0000000)
|
||||||
|
eden space 513024K, 0% used [0x000000076c900000,0x000000076c900000,0x000000078be00000)
|
||||||
|
from space 19456K, 97% used [0x0000000794080000,0x0000000795303450,0x0000000795380000)
|
||||||
|
to space 70656K, 0% used [0x000000078c980000,0x000000078c980000,0x0000000790e80000)
|
||||||
|
ParOldGen total 254464K, used 168759K [0x00000006c5a00000, 0x00000006d5280000, 0x000000076c900000)
|
||||||
|
object space 254464K, 66% used [0x00000006c5a00000,0x00000006cfecdc68,0x00000006d5280000)
|
||||||
|
Metaspace used 45796K, capacity 46277K, committed 46592K, reserved 1089536K
|
||||||
|
class space used 5400K, capacity 5544K, committed 5632K, reserved 1048576K
|
||||||
|
}
|
||||||
|
|
||||||
|
Deoptimization events (10 events):
|
||||||
|
Event: 136.248 Thread 0x0000000035cb2800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000040a5bd8 method=io.netty.channel.local.LocalChannel.isOpen()Z @ 5
|
||||||
|
Event: 136.249 Thread 0x0000000035cb6000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000000000490e074 method=io.netty.util.internal.MpscLinkedQueue.poll()Ljava/lang/Object; @ 26
|
||||||
|
Event: 136.285 Thread 0x0000000035cb8000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000037553d8 method=java.util.regex.Pattern$Branch.match(Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z @ 50
|
||||||
|
Event: 136.285 Thread 0x0000000035cb8000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000003dc1db4 method=net.minecraft.util.ChatStyle.getColor()Lnet/minecraft/util/EnumChatFormatting; @ 4
|
||||||
|
Event: 136.285 Thread 0x0000000035cb8000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000048e7d6c method=net.minecraft.util.ChatStyle.getChatClickEvent()Lnet/minecraft/event/ClickEvent; @ 4
|
||||||
|
Event: 136.285 Thread 0x0000000035cb8000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000003ad9f2c method=net.minecraft.util.ChatStyle.getChatHoverEvent()Lnet/minecraft/event/HoverEvent; @ 4
|
||||||
|
Event: 136.285 Thread 0x0000000035cb8000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000003bac3ec method=net.minecraft.util.ChatStyle.getInsertion()Ljava/lang/String; @ 4
|
||||||
|
Event: 136.295 Thread 0x0000000036dd7800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000000000448cde8 method=java.util.Collections$SetFromMap.add(Ljava/lang/Object;)Z @ 13
|
||||||
|
Event: 136.336 Thread 0x0000000036ddc000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00000000044f886c method=java.util.AbstractCollection.toArray()[Ljava/lang/Object; @ 22
|
||||||
|
Event: 136.336 Thread 0x0000000036ddc000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000039342b0 method=java.util.Collections.reverse(Ljava/util/List;)V @ 1
|
||||||
|
|
||||||
|
Classes redefined (1 events):
|
||||||
|
Event: 0.091 Thread 0x000000001e615000 redefined class name=java.io.FileOutputStream, count=1
|
||||||
|
|
||||||
|
Internal exceptions (10 events):
|
||||||
|
Event: 136.291 Thread 0x00000000289e5800 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x00000007807b1120) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 136.295 Thread 0x00000000289e5800 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x00000007807b13c8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 136.301 Thread 0x00000000289e5800 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x00000007807b1670) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 136.306 Thread 0x00000000289e5800 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x00000007807b1918) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 136.311 Thread 0x00000000289e5800 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x00000007807b1bc0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 136.315 Thread 0x00000000289e5800 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x00000007807b1e68) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 136.320 Thread 0x00000000289e5800 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x00000007807b2110) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 136.325 Thread 0x00000000289e5800 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x00000007807b23b8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 136.330 Thread 0x00000000289e5800 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x00000007807b2660) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 136.335 Thread 0x00000000289e5800 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x00000007807b2908) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
|
||||||
|
Events (10 events):
|
||||||
|
Event: 136.335 Thread 0x00000000289e5800 DEOPT UNPACKING pc=0x00000000029f7890 sp=0x0000000033beee58 mode 1
|
||||||
|
Event: 136.336 Thread 0x0000000036ddb800 Thread exited: 0x0000000036ddb800
|
||||||
|
Event: 136.336 Thread 0x0000000036ddc000 Uncommon trap: trap_request=0xffffffc6 fr.pc=0x00000000044f886c
|
||||||
|
Event: 136.336 Thread 0x0000000036ddc000 DEOPT PACKING pc=0x00000000044f886c sp=0x000000002078f200
|
||||||
|
Event: 136.336 Thread 0x0000000036ddc000 DEOPT UNPACKING pc=0x00000000029f583b sp=0x000000002078f1c8 mode 2
|
||||||
|
Event: 136.336 Thread 0x0000000036ddc000 Uncommon trap: trap_request=0xffffffde fr.pc=0x00000000039342b0
|
||||||
|
Event: 136.336 Thread 0x0000000036ddc000 DEOPT PACKING pc=0x00000000039342b0 sp=0x000000002078f210
|
||||||
|
Event: 136.336 Thread 0x0000000036ddc000 DEOPT UNPACKING pc=0x00000000029f583b sp=0x000000002078f248 mode 2
|
||||||
|
Event: 136.337 Thread 0x000000001e659000 Thread exited: 0x000000001e659000
|
||||||
|
Event: 136.337 Executing VM operation: Exit
|
||||||
|
|
||||||
|
|
||||||
|
Dynamic libraries:
|
||||||
|
0x00007ff75c730000 - 0x00007ff75c767000 C:\Program Files\Java\jdk1.8.0_202\bin\java.exe
|
||||||
|
0x00007ffee6e90000 - 0x00007ffee7088000 C:\WINDOWS\SYSTEM32\ntdll.dll
|
||||||
|
0x00007ffee6bf0000 - 0x00007ffee6caf000 C:\WINDOWS\System32\KERNEL32.DLL
|
||||||
|
0x00007ffee68f0000 - 0x00007ffee6be6000 C:\WINDOWS\System32\KERNELBASE.dll
|
||||||
|
0x0000000070e20000 - 0x0000000070e5b000 C:\WINDOWS\System32\cyinjct.dll
|
||||||
|
0x00007ffee6770000 - 0x00007ffee677c000 C:\WINDOWS\System32\ntnativeapi.dll
|
||||||
|
0x00007ffee6750000 - 0x00007ffee676e000 C:\WINDOWS\System32\cyvera.dll
|
||||||
|
0x00007ffee66e0000 - 0x00007ffee6749000 C:\WINDOWS\System32\cyvrtrap.dll
|
||||||
|
0x00007ffee5570000 - 0x00007ffee561f000 C:\WINDOWS\System32\ADVAPI32.dll
|
||||||
|
0x00007ffee60e0000 - 0x00007ffee617e000 C:\WINDOWS\System32\msvcrt.dll
|
||||||
|
0x00007ffee5220000 - 0x00007ffee52bc000 C:\WINDOWS\System32\sechost.dll
|
||||||
|
0x00007ffee67c0000 - 0x00007ffee68e6000 C:\WINDOWS\System32\RPCRT4.dll
|
||||||
|
0x00007ffee6cb0000 - 0x00007ffee6e4d000 C:\WINDOWS\System32\USER32.dll
|
||||||
|
0x00007ffee4620000 - 0x00007ffee4642000 C:\WINDOWS\System32\win32u.dll
|
||||||
|
0x00007ffee5fc0000 - 0x00007ffee5fec000 C:\WINDOWS\System32\GDI32.dll
|
||||||
|
0x00007ffee49b0000 - 0x00007ffee4ac5000 C:\WINDOWS\System32\gdi32full.dll
|
||||||
|
0x00007ffee4860000 - 0x00007ffee48fd000 C:\WINDOWS\System32\msvcp_win.dll
|
||||||
|
0x00007ffee4650000 - 0x00007ffee4750000 C:\WINDOWS\System32\ucrtbase.dll
|
||||||
|
0x00007ffec1bc0000 - 0x00007ffec1e5a000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.19041.1110_none_60b5254171f9507e\COMCTL32.dll
|
||||||
|
0x00007ffee5b00000 - 0x00007ffee5b30000 C:\WINDOWS\System32\IMM32.DLL
|
||||||
|
0x0000000061400000 - 0x00000000614d2000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\msvcr100.dll
|
||||||
|
0x00000000604c0000 - 0x0000000060d65000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\server\jvm.dll
|
||||||
|
0x00007ffee57c0000 - 0x00007ffee57c8000 C:\WINDOWS\System32\PSAPI.DLL
|
||||||
|
0x00007ffedf6d0000 - 0x00007ffedf6d9000 C:\WINDOWS\SYSTEM32\WSOCK32.dll
|
||||||
|
0x00007ffee5f50000 - 0x00007ffee5fbb000 C:\WINDOWS\System32\WS2_32.dll
|
||||||
|
0x00007ffec5030000 - 0x00007ffec5057000 C:\WINDOWS\SYSTEM32\WINMM.dll
|
||||||
|
0x00007ffedddb0000 - 0x00007ffedddba000 C:\WINDOWS\SYSTEM32\VERSION.dll
|
||||||
|
0x00007ffedc960000 - 0x00007ffedc96f000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\verify.dll
|
||||||
|
0x00007ffeca120000 - 0x00007ffeca149000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\java.dll
|
||||||
|
0x00007ffeca5a0000 - 0x00007ffeca5d5000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\jdwp.dll
|
||||||
|
0x00007ffed4710000 - 0x00007ffed4718000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\npt.dll
|
||||||
|
0x00007ffec75c0000 - 0x00007ffec75e3000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\instrument.dll
|
||||||
|
0x00007ffee66a0000 - 0x00007ffee66d7000 C:\Program Files\Palo Alto Networks\Traps\cyjagent.dll
|
||||||
|
0x00007ffed4290000 - 0x00007ffed42a6000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\zip.dll
|
||||||
|
0x00007ffee4ad0000 - 0x00007ffee5214000 C:\WINDOWS\System32\SHELL32.dll
|
||||||
|
0x00007ffee1f40000 - 0x00007ffee26d3000 C:\WINDOWS\SYSTEM32\windows.storage.dll
|
||||||
|
0x00007ffee5b30000 - 0x00007ffee5e84000 C:\WINDOWS\System32\combase.dll
|
||||||
|
0x00007ffee3dd0000 - 0x00007ffee3dfe000 C:\WINDOWS\SYSTEM32\Wldp.dll
|
||||||
|
0x00007ffee6180000 - 0x00007ffee622d000 C:\WINDOWS\System32\SHCORE.dll
|
||||||
|
0x00007ffee5e90000 - 0x00007ffee5ee5000 C:\WINDOWS\System32\shlwapi.dll
|
||||||
|
0x00007ffee4390000 - 0x00007ffee43af000 C:\WINDOWS\SYSTEM32\profapi.dll
|
||||||
|
0x00007ffed45d0000 - 0x00007ffed45d9000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\dt_socket.dll
|
||||||
|
0x00007ffee3bb0000 - 0x00007ffee3c1a000 C:\WINDOWS\system32\mswsock.dll
|
||||||
|
0x00007ffed45b0000 - 0x00007ffed45bd000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\management.dll
|
||||||
|
0x00007ffed3980000 - 0x00007ffed399a000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\net.dll
|
||||||
|
0x00007ffed13d0000 - 0x00007ffed15bc000 C:\WINDOWS\SYSTEM32\urlmon.dll
|
||||||
|
0x00007ffedcd00000 - 0x00007ffedcfb1000 C:\WINDOWS\SYSTEM32\iertutil.dll
|
||||||
|
0x00007ffee3070000 - 0x00007ffee3098000 C:\WINDOWS\SYSTEM32\srvcli.dll
|
||||||
|
0x00007ffee38b0000 - 0x00007ffee38bc000 C:\WINDOWS\SYSTEM32\netutils.dll
|
||||||
|
0x00007ffed43d0000 - 0x00007ffed43e2000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\nio.dll
|
||||||
|
0x00007ffeab2e0000 - 0x00007ffeab2f7000 C:\WINDOWS\system32\napinsp.dll
|
||||||
|
0x00007ffeab300000 - 0x00007ffeab31b000 C:\WINDOWS\system32\pnrpnsp.dll
|
||||||
|
0x00007ffeded70000 - 0x00007ffeded85000 C:\WINDOWS\system32\wshbth.dll
|
||||||
|
0x00007ffede0f0000 - 0x00007ffede10d000 C:\WINDOWS\system32\NLAapi.dll
|
||||||
|
0x00007ffee3870000 - 0x00007ffee38ac000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
|
||||||
|
0x00007ffee38c0000 - 0x00007ffee398b000 C:\WINDOWS\SYSTEM32\DNSAPI.dll
|
||||||
|
0x00007ffee5850000 - 0x00007ffee5858000 C:\WINDOWS\System32\NSI.dll
|
||||||
|
0x00007ffeab320000 - 0x00007ffeab332000 C:\WINDOWS\System32\winrnr.dll
|
||||||
|
0x00007ffeddf50000 - 0x00007ffeddfd2000 C:\WINDOWS\System32\fwpuclnt.dll
|
||||||
|
0x00007ffee4830000 - 0x00007ffee4857000 C:\WINDOWS\System32\bcrypt.dll
|
||||||
|
0x00007ffedd130000 - 0x00007ffedd13a000 C:\Windows\System32\rasadhlp.dll
|
||||||
|
0x0000000180000000 - 0x0000000180053000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\lwjgl64.dll
|
||||||
|
0x00007ffea9980000 - 0x00007ffea9aa5000 C:\WINDOWS\SYSTEM32\OPENGL32.dll
|
||||||
|
0x00007ffed8ca0000 - 0x00007ffed8ccc000 C:\WINDOWS\SYSTEM32\GLU32.dll
|
||||||
|
0x00007ffee3e10000 - 0x00007ffee3e28000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll
|
||||||
|
0x00007ffee3370000 - 0x00007ffee33a4000 C:\WINDOWS\system32\rsaenh.dll
|
||||||
|
0x00007ffee4310000 - 0x00007ffee433e000 C:\WINDOWS\SYSTEM32\USERENV.dll
|
||||||
|
0x00007ffee4750000 - 0x00007ffee47d2000 C:\WINDOWS\System32\bcryptprimitives.dll
|
||||||
|
0x00007ffee3d40000 - 0x00007ffee3d4c000 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
|
||||||
|
0x00007ffeddee0000 - 0x00007ffeddef7000 C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL
|
||||||
|
0x00007ffeddec0000 - 0x00007ffeddedd000 C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL
|
||||||
|
0x00007ffeb32c0000 - 0x00007ffeb3459000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\awt.dll
|
||||||
|
0x00007ffee53f0000 - 0x00007ffee54bd000 C:\WINDOWS\System32\OLEAUT32.dll
|
||||||
|
0x00007ffee1180000 - 0x00007ffee1211000 C:\WINDOWS\SYSTEM32\apphelp.dll
|
||||||
|
0x00007ffeddb00000 - 0x00007ffeddbae000 C:\WINDOWS\SYSTEM32\mscms.dll
|
||||||
|
0x00007ffedda90000 - 0x00007ffeddaa1000 C:\WINDOWS\SYSTEM32\ColorAdapterClient.dll
|
||||||
|
0x00007ffee2d60000 - 0x00007ffee2d72000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll
|
||||||
|
0x00007ffee1820000 - 0x00007ffee18be000 C:\WINDOWS\system32\uxtheme.dll
|
||||||
|
0x00007ffee5620000 - 0x00007ffee5734000 C:\WINDOWS\System32\MSCTF.dll
|
||||||
|
0x00007ffec9a60000 - 0x00007ffec9b5a000 C:\WINDOWS\SYSTEM32\textinputframework.dll
|
||||||
|
0x00007ffee0bf0000 - 0x00007ffee0f4e000 C:\WINDOWS\System32\CoreUIComponents.dll
|
||||||
|
0x00007ffee0f50000 - 0x00007ffee1042000 C:\WINDOWS\System32\CoreMessaging.dll
|
||||||
|
0x00007ffee35c0000 - 0x00007ffee35f3000 C:\WINDOWS\SYSTEM32\ntmarta.dll
|
||||||
|
0x00007ffee0520000 - 0x00007ffee0674000 C:\WINDOWS\SYSTEM32\wintypes.dll
|
||||||
|
0x00007ffee52c0000 - 0x00007ffee53ea000 C:\WINDOWS\System32\ole32.dll
|
||||||
|
0x00007ffee54c0000 - 0x00007ffee5569000 C:\WINDOWS\System32\clbcatq.dll
|
||||||
|
0x00007ffe8f4d0000 - 0x00007ffe904c3000 C:\WINDOWS\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_307c52ae370e15f2\igxelpicd64.dll
|
||||||
|
0x00007ffee1950000 - 0x00007ffee197f000 C:\WINDOWS\system32\dwmapi.dll
|
||||||
|
0x00007ffee2ae0000 - 0x00007ffee2bd3000 C:\WINDOWS\system32\dxgi.dll
|
||||||
|
0x00007ffe91570000 - 0x00007ffe919c3000 C:\WINDOWS\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_307c52ae370e15f2\igdml64.dll
|
||||||
|
0x00007ffecdc00000 - 0x00007ffecdfc7000 C:\WINDOWS\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_307c52ae370e15f2\igdgmm64.dll
|
||||||
|
0x00007ffe815f0000 - 0x00007ffe81633000 C:\WINDOWS\SYSTEM32\icm32.dll
|
||||||
|
0x00007ffeca5e0000 - 0x00007ffecdbf1000 C:\WINDOWS\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_307c52ae370e15f2\igc64.dll
|
||||||
|
0x00007ffee3990000 - 0x00007ffee39db000 C:\WINDOWS\SYSTEM32\powrprof.dll
|
||||||
|
0x00007ffee3850000 - 0x00007ffee3862000 C:\WINDOWS\SYSTEM32\UMPDC.dll
|
||||||
|
0x0000000026720000 - 0x0000000026758000 C:\Users\remgab001\AppData\Local\Temp\jna\jna1448345623696006193.dll
|
||||||
|
0x0000000070a40000 - 0x0000000070adc000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\avutil-ttv-51.dll
|
||||||
|
0x0000000065980000 - 0x00000000659d6000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\swresample-ttv-0.dll
|
||||||
|
0x000000006eb80000 - 0x000000006ec50000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\libmp3lame-ttv.dll
|
||||||
|
0x00007ffe8bea0000 - 0x00007ffe8d244000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\libmfxsw64.dll
|
||||||
|
0x00007ffe9a350000 - 0x00007ffe9a4bd000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\twitchsdk.dll
|
||||||
|
0x00007ffec4920000 - 0x00007ffec4df9000 C:\WINDOWS\SYSTEM32\WININET.dll
|
||||||
|
0x0000000033cf0000 - 0x0000000033d54000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\OpenAL64.dll
|
||||||
|
0x00007ffea49a0000 - 0x00007ffea4a3c000 C:\WINDOWS\SYSTEM32\dsound.dll
|
||||||
|
0x00007ffec4e00000 - 0x00007ffec4e26000 C:\WINDOWS\SYSTEM32\winmmbase.dll
|
||||||
|
0x00007ffedbfa0000 - 0x00007ffedc025000 C:\WINDOWS\System32\MMDevApi.dll
|
||||||
|
0x00007ffee4200000 - 0x00007ffee422c000 C:\WINDOWS\System32\DEVOBJ.dll
|
||||||
|
0x00007ffee47e0000 - 0x00007ffee482e000 C:\WINDOWS\System32\cfgmgr32.dll
|
||||||
|
0x00007ffedc0f0000 - 0x00007ffedc272000 C:\WINDOWS\SYSTEM32\AUDIOSES.DLL
|
||||||
|
0x00007ffee1a60000 - 0x00007ffee1a74000 C:\WINDOWS\SYSTEM32\resourcepolicyclient.dll
|
||||||
|
0x00007ffebae20000 - 0x00007ffebae67000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\fontmanager.dll
|
||||||
|
0x00007ffeb11a0000 - 0x00007ffeb11e2000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\t2k.dll
|
||||||
|
0x00007ffebc720000 - 0x00007ffebc74a000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\dcpr.dll
|
||||||
|
0x00007ffee27b0000 - 0x00007ffee2994000 C:\WINDOWS\SYSTEM32\dbghelp.dll
|
||||||
|
|
||||||
|
VM Arguments:
|
||||||
|
jvm_args: -agentlib:jdwp=transport=dt_socket,address=127.0.0.1:57833,suspend=y,server=n -Djava.library.path=versions/1.8.8/1.8.8-natives/ -javaagent:C:\Users\remgab001\AppData\Local\JetBrains\IdeaIC2023.1\captureAgent\debugger-agent.jar -Dfile.encoding=UTF-8 -agentpath:C:\Program Files\Palo Alto Networks\Traps\cyjagent.dll
|
||||||
|
java_command: Start
|
||||||
|
java_class_path (initial): C:\Program Files\Java\jdk1.8.0_202\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\deploy.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\access-bridge-64.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\cldrdata.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\dnsns.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\jaccess.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\jfxrt.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\localedata.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\nashorn.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\sunec.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\sunjce_provider.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\sunmscapi.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\sunpkcs11.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\zipfs.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\javaws.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jce.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jfr.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jfxswt.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\management-agent.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\plugin.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\resources.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\rt.jar;C:\Users\remgab001\Desktop\Athena-Client\target\classes;C:\Users\remgab001\.m2\repository\net\minecraft\minecraft\1.8.8\minecraft-1.8.8.jar;C:\Users\remgab001\.m2\repository\org\json\json\20230227\json-20230227.jar;C:\Users\remgab001\.m2\repository\org\reflections\reflections\0.10.2\reflections-0.10.2.jar;C:\Users\remgab001\.m2\repository\org\javassist\javassist\3.28.0-GA\javassist-3.28.0-GA.jar;C:\Users\remgab001\.m2\repository\com\google\code\findbugs\jsr305\3.0.2\jsr305-3.0.2.jar;C:\Users\remgab001\.m2\repository\org\slf4j\slf4j-api\1.7.32\slf4j-api-1.7.32.jar;C:\Users\remgab001\.m2\repository\oshi-project\oshi-core\1.1\oshi-core-1.1.jar;
|
||||||
|
Launcher Type: SUN_STANDARD
|
||||||
|
|
||||||
|
Environment Variables:
|
||||||
|
PATH=C:\Program Files\Google\Chrome\Application;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\nodejs\;C:\Program Files\Git\cmd;C:\Users\remgab001\AppData\Local\Microsoft\WindowsApps;C:\Users\remgab001\AppData\Roaming\npm;C:\Users\remgab001\AppData\Local\Programs\Microsoft VS Code\bin
|
||||||
|
USERNAME=remgab001
|
||||||
|
OS=Windows_NT
|
||||||
|
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 154 Stepping 3, GenuineIntel
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
--------------- S Y S T E M ---------------
|
||||||
|
|
||||||
|
OS: Windows 10.0 , 64 bit Build 19041 (10.0.19041.2913)
|
||||||
|
|
||||||
|
CPU:total 20 (initial active 20) (10 cores per cpu, 2 threads per core) family 6 model 154 stepping 3, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, clmul, erms, 3dnowpref, lzcnt, ht, tsc, tscinvbit, bmi1, bmi2, adx
|
||||||
|
|
||||||
|
Memory: 4k page, physical 16400820k(1410008k free), swap 33178036k(10995924k free)
|
||||||
|
|
||||||
|
vm_info: Java HotSpot(TM) 64-Bit Server VM (25.202-b08) for windows-amd64 JRE (1.8.0_202-b08), built on Dec 15 2018 19:54:30 by "java_re" with MS VC++ 10.0 (VS2010)
|
||||||
|
|
||||||
|
time: Fri Jun 02 11:37:34 2023
|
||||||
|
timezone: Vest-Europa (sommertid)
|
||||||
|
elapsed time: 136 seconds (0d 0h 2m 16s)
|
||||||
|
|
459
workspace/hs_err_pid9560.log
Normal file
459
workspace/hs_err_pid9560.log
Normal file
@ -0,0 +1,459 @@
|
|||||||
|
#
|
||||||
|
# A fatal error has been detected by the Java Runtime Environment:
|
||||||
|
#
|
||||||
|
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ffe9248366c, pid=9560, tid=0x0000000000002e3c
|
||||||
|
#
|
||||||
|
# JRE version: Java(TM) SE Runtime Environment (8.0_202-b08) (build 1.8.0_202-b08)
|
||||||
|
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.202-b08 mixed mode windows-amd64 compressed oops)
|
||||||
|
# Problematic frame:
|
||||||
|
# C [igxelpicd64.dll+0x13366c]
|
||||||
|
#
|
||||||
|
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
|
||||||
|
#
|
||||||
|
# If you would like to submit a bug report, please visit:
|
||||||
|
# http://bugreport.java.com/bugreport/crash.jsp
|
||||||
|
#
|
||||||
|
|
||||||
|
--------------- T H R E A D ---------------
|
||||||
|
|
||||||
|
Current thread (0x000000001ee55000): VMThread [stack: 0x00000000208e0000,0x00000000209e0000] [id=11836]
|
||||||
|
|
||||||
|
siginfo: ExceptionCode=0xc0000005, reading address 0x00000000000356f8
|
||||||
|
|
||||||
|
Registers:
|
||||||
|
RAX=0x00000000457227f8, RBX=0x00000000457226f0, RCX=0x0000000000000000, RDX=0x0000000000000000
|
||||||
|
RSP=0x00000000209de280, RBP=0x0000000000000000, RSI=0x0000000045722cc0, RDI=0x000000002d32eca0
|
||||||
|
R8 =0x0000000000000014, R9 =0x0000000000000000, R10=0x0000000000000000, R11=0x0000000000000000
|
||||||
|
R12=0x0000000000000000, R13=0x00000000321ceaa0, R14=0x0000000001d42900, R15=0x0000000000000016
|
||||||
|
RIP=0x00007ffe9248366c, EFLAGS=0x0000000000010202
|
||||||
|
|
||||||
|
Top of Stack: (sp=0x00000000209de280)
|
||||||
|
0x00000000209de280: 0000000000e00630 00007ffee6d3f070
|
||||||
|
0x00000000209de290: 0000000000000000 00007ffee6f30eb4
|
||||||
|
0x00000000209de2a0: 000000000000ffff 0000000026461860
|
||||||
|
0x00000000209de2b0: 00000000232ff460 000000000000001d
|
||||||
|
0x00000000209de2c0: 000000002d2ec8f8 0000000001d429c7
|
||||||
|
0x00000000209de2d0: 0000000000000000 000000000000000e
|
||||||
|
0x00000000209de2e0: 0000000000000000 0000000000000000
|
||||||
|
0x00000000209de2f0: 00000000209de400 00007ffe925fbc3c
|
||||||
|
0x00000000209de300: 0000000000e00630 000000002d32eca0
|
||||||
|
0x00000000209de310: 00007ffee6f09300 000000001ee53d00
|
||||||
|
0x00000000209de320: 0000000000001eb8 00007404195e0000
|
||||||
|
0x00000000209de330: 0000000000000000 00007ffee6ead23b
|
||||||
|
0x00000000209de340: 0000000000000001 00000000209de4f0
|
||||||
|
0x00000000209de350: 0000000000000002 00000000009c0000
|
||||||
|
0x00000000209de360: 00007ffee6ef79d0 00007ffe925f19a0
|
||||||
|
0x00000000209de370: 00000000000004b4 00000000009c1c04
|
||||||
|
|
||||||
|
Instructions: (pc=0x00007ffe9248366c)
|
||||||
|
0x00007ffe9248364c: 83 20 01 00 00 48 8d 04 d5 21 00 00 00 48 03 c2
|
||||||
|
0x00007ffe9248365c: 48 8d 04 c3 48 85 c0 0f 85 ff 00 00 00 49 8b cb
|
||||||
|
0x00007ffe9248366c: 48 3b 8d f8 56 03 00 0f 87 f3 02 00 00 4c 39 9b
|
||||||
|
0x00007ffe9248367c: 48 06 00 00 0f 85 31 da 86 00 44 8b 97 c8 01 00
|
||||||
|
|
||||||
|
|
||||||
|
Register to memory mapping:
|
||||||
|
|
||||||
|
RAX=0x00000000457227f8 is an unknown value
|
||||||
|
RBX=0x00000000457226f0 is an unknown value
|
||||||
|
RCX=0x0000000000000000 is an unknown value
|
||||||
|
RDX=0x0000000000000000 is an unknown value
|
||||||
|
RSP=0x00000000209de280 is an unknown value
|
||||||
|
RBP=0x0000000000000000 is an unknown value
|
||||||
|
RSI=0x0000000045722cc0 is an unknown value
|
||||||
|
RDI=0x000000002d32eca0 is an unknown value
|
||||||
|
R8 =0x0000000000000014 is an unknown value
|
||||||
|
R9 =0x0000000000000000 is an unknown value
|
||||||
|
R10=0x0000000000000000 is an unknown value
|
||||||
|
R11=0x0000000000000000 is an unknown value
|
||||||
|
R12=0x0000000000000000 is an unknown value
|
||||||
|
R13=0x00000000321ceaa0 is an unknown value
|
||||||
|
R14=0x0000000001d42900 is an unknown value
|
||||||
|
R15=0x0000000000000016 is an unknown value
|
||||||
|
|
||||||
|
|
||||||
|
Stack: [0x00000000208e0000,0x00000000209e0000], sp=0x00000000209de280, free space=1016k
|
||||||
|
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
|
||||||
|
|
||||||
|
VM_Operation (0x0000000020fdf430): Exit, mode: safepoint, requested by thread 0x0000000023673000
|
||||||
|
|
||||||
|
|
||||||
|
--------------- P R O C E S S ---------------
|
||||||
|
|
||||||
|
Java Threads: ( => current thread )
|
||||||
|
0x000000002367b800 JavaThread "AWT-Shutdown" [_thread_blocked, id=15108, stack(0x0000000039be0000,0x0000000039ce0000)]
|
||||||
|
0x0000000023673000 JavaThread "SIGINT handler" daemon [_thread_blocked, id=8720, stack(0x0000000020ee0000,0x0000000020fe0000)]
|
||||||
|
0x0000000022872800 JavaThread "File IO Thread" [_thread_blocked, id=15328, stack(0x000000004b510000,0x000000004b610000)]
|
||||||
|
0x0000000022870000 JavaThread "Netty Server IO #1" daemon [_thread_in_native, id=2588, stack(0x000000004b210000,0x000000004b310000)]
|
||||||
|
0x0000000024d84800 JavaThread "Netty Local Client IO #0" daemon [_thread_blocked, id=10624, stack(0x0000000046550000,0x0000000046650000)]
|
||||||
|
0x0000000024d81000 JavaThread "Netty Server IO #0" daemon [_thread_in_native, id=7844, stack(0x00000000462b0000,0x00000000463b0000)]
|
||||||
|
0x0000000024d84000 JavaThread "Server thread" [_thread_blocked, id=21044, stack(0x0000000045fd0000,0x00000000460d0000)]
|
||||||
|
0x0000000024d82800 JavaThread "Snooper Timer" daemon [_thread_blocked, id=7104, stack(0x000000003dea0000,0x000000003dfa0000)]
|
||||||
|
0x0000000024d80000 JavaThread "LWJGL Timer" daemon [_thread_blocked, id=18184, stack(0x00000000461b0000,0x00000000462b0000)]
|
||||||
|
0x0000000024d86000 JavaThread "Chunk Batcher 1" daemon [_thread_blocked, id=17112, stack(0x000000003dda0000,0x000000003dea0000)]
|
||||||
|
0x0000000024d7f800 JavaThread "Chunk Batcher 0" daemon [_thread_blocked, id=5268, stack(0x000000003d290000,0x000000003d390000)]
|
||||||
|
0x0000000024d81800 JavaThread "Thread-8" [_thread_blocked, id=5016, stack(0x00000000324b0000,0x00000000325b0000)]
|
||||||
|
0x0000000034336000 JavaThread "Thread-7" [_thread_blocked, id=12504, stack(0x000000003d390000,0x000000003d490000)]
|
||||||
|
0x000000002f5f6000 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=17216, stack(0x0000000029450000,0x0000000029550000)]
|
||||||
|
0x0000000034360800 JavaThread "Timer hack thread" daemon [_thread_blocked, id=20872, stack(0x0000000025c90000,0x0000000025d90000)]
|
||||||
|
0x0000000023317800 JavaThread "Snooper Timer" daemon [_thread_blocked, id=14908, stack(0x0000000025b90000,0x0000000025c90000)]
|
||||||
|
0x000000001f01f000 JavaThread "Service Thread" daemon [_thread_blocked, id=9676, stack(0x0000000021ee0000,0x0000000021fe0000)]
|
||||||
|
0x000000001ef92800 JavaThread "C1 CompilerThread11" daemon [_thread_blocked, id=3928, stack(0x0000000021de0000,0x0000000021ee0000)]
|
||||||
|
0x000000001ef8b800 JavaThread "C1 CompilerThread10" daemon [_thread_blocked, id=9032, stack(0x0000000021ce0000,0x0000000021de0000)]
|
||||||
|
0x000000001ef7a800 JavaThread "C1 CompilerThread9" daemon [_thread_blocked, id=14484, stack(0x0000000021be0000,0x0000000021ce0000)]
|
||||||
|
0x000000001ef53800 JavaThread "C1 CompilerThread8" daemon [_thread_blocked, id=2172, stack(0x0000000021ae0000,0x0000000021be0000)]
|
||||||
|
0x000000001ef4a000 JavaThread "C2 CompilerThread7" daemon [_thread_blocked, id=14784, stack(0x00000000219e0000,0x0000000021ae0000)]
|
||||||
|
0x000000001ef27000 JavaThread "C2 CompilerThread6" daemon [_thread_blocked, id=20888, stack(0x00000000218e0000,0x00000000219e0000)]
|
||||||
|
0x000000001ef25800 JavaThread "C2 CompilerThread5" daemon [_thread_blocked, id=14216, stack(0x00000000217e0000,0x00000000218e0000)]
|
||||||
|
0x000000001eed2000 JavaThread "C2 CompilerThread4" daemon [_thread_blocked, id=13380, stack(0x00000000216e0000,0x00000000217e0000)]
|
||||||
|
0x000000001eed1800 JavaThread "C2 CompilerThread3" daemon [_thread_blocked, id=8448, stack(0x00000000215e0000,0x00000000216e0000)]
|
||||||
|
0x000000001ef1a800 JavaThread "C2 CompilerThread2" daemon [_thread_blocked, id=19676, stack(0x00000000213e0000,0x00000000214e0000)]
|
||||||
|
0x000000001eece800 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=1568, stack(0x00000000212e0000,0x00000000213e0000)]
|
||||||
|
0x000000001ef15800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=9600, stack(0x00000000211e0000,0x00000000212e0000)]
|
||||||
|
0x000000001eeb1800 JavaThread "JDWP Event Helper Thread" daemon [_thread_blocked, id=6952, stack(0x0000000020fe0000,0x00000000210e0000)]
|
||||||
|
0x000000001ee9a000 JavaThread "Attach Listener" daemon [_thread_blocked, id=20712, stack(0x0000000020de0000,0x0000000020ee0000)]
|
||||||
|
0x000000001ee99000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=12352, stack(0x0000000020ce0000,0x0000000020de0000)]
|
||||||
|
0x000000001ee7e000 JavaThread "Finalizer" daemon [_thread_blocked, id=19856, stack(0x0000000020ae0000,0x0000000020be0000)]
|
||||||
|
0x000000001ee78000 JavaThread "Reference Handler" daemon [_thread_blocked, id=10724, stack(0x00000000209e0000,0x0000000020ae0000)]
|
||||||
|
0x00000000030f4800 JavaThread "Client thread" [_thread_blocked, id=6500, stack(0x0000000002b00000,0x0000000002c00000)]
|
||||||
|
|
||||||
|
Other Threads:
|
||||||
|
=>0x000000001ee55000 VMThread [stack: 0x00000000208e0000,0x00000000209e0000] [id=11836]
|
||||||
|
|
||||||
|
VM state:at safepoint (shutting down)
|
||||||
|
|
||||||
|
VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
|
||||||
|
[0x00000000030f1fd0] Threads_lock - owner thread: 0x000000001ee55000
|
||||||
|
|
||||||
|
heap address: 0x00000006c5a00000, size: 4006 MB, Compressed Oops mode: Zero based, Oop shift amount: 3
|
||||||
|
Narrow klass base: 0x0000000000000000, Narrow klass shift: 3
|
||||||
|
Compressed class space size: 1073741824 Address: 0x00000007c0000000
|
||||||
|
|
||||||
|
Heap:
|
||||||
|
PSYoungGen total 720384K, used 171185K [0x000000076c900000, 0x000000079ca80000, 0x00000007c0000000)
|
||||||
|
eden space 700928K, 21% used [0x000000076c900000,0x0000000775d96880,0x0000000797580000)
|
||||||
|
from space 19456K, 97% used [0x0000000799200000,0x000000079a495d00,0x000000079a500000)
|
||||||
|
to space 38400K, 0% used [0x000000079a500000,0x000000079a500000,0x000000079ca80000)
|
||||||
|
ParOldGen total 257024K, used 160119K [0x00000006c5a00000, 0x00000006d5500000, 0x000000076c900000)
|
||||||
|
object space 257024K, 62% used [0x00000006c5a00000,0x00000006cf65dc10,0x00000006d5500000)
|
||||||
|
Metaspace used 46271K, capacity 46753K, committed 47104K, reserved 1091584K
|
||||||
|
class space used 5409K, capacity 5550K, committed 5632K, reserved 1048576K
|
||||||
|
|
||||||
|
Card table byte_map: [0x00000000125b0000,0x0000000012d90000] byte_map_base: 0x000000000ef83000
|
||||||
|
|
||||||
|
Marking Bits: (ParMarkBitMap*) 0x0000000060ce5ce0
|
||||||
|
Begin Bits: [0x00000000141d0000, 0x0000000018068000)
|
||||||
|
End Bits: [0x0000000018068000, 0x000000001bf00000)
|
||||||
|
|
||||||
|
Polling page: 0x0000000000d10000
|
||||||
|
|
||||||
|
CodeCache: size=245760Kb used=34461Kb max_used=36353Kb free=211298Kb
|
||||||
|
bounds [0x00000000031f0000, 0x0000000005610000, 0x00000000121f0000]
|
||||||
|
total_blobs=8677 nmethods=7792 adapters=800
|
||||||
|
compilation: enabled
|
||||||
|
|
||||||
|
Compilation events (10 events):
|
||||||
|
Event: 280.836 Thread 0x000000001ef8b800 nmethod 10851 0x0000000004deeed0 code [0x0000000004def060, 0x0000000004def698]
|
||||||
|
Event: 280.837 Thread 0x000000001ef7a800 nmethod 10850 0x000000000495a8d0 code [0x000000000495aa80, 0x000000000495b328]
|
||||||
|
Event: 280.839 Thread 0x000000001ef92800 10853 1 org.apache.logging.log4j.core.config.LoggerConfig::getLevel (5 bytes)
|
||||||
|
Event: 280.839 Thread 0x000000001ef92800 nmethod 10853 0x0000000005035bd0 code [0x0000000005035d20, 0x0000000005035e30]
|
||||||
|
Event: 280.840 Thread 0x000000001ef8b800 10855 3 java.io.BufferedWriter::ensureOpen (18 bytes)
|
||||||
|
Event: 280.840 Thread 0x000000001ef7a800 10854 1 java.lang.StackTraceElement::getClassName (5 bytes)
|
||||||
|
Event: 280.840 Thread 0x000000001ef7a800 nmethod 10854 0x00000000048ac690 code [0x00000000048ac7e0, 0x00000000048ac8f0]
|
||||||
|
Event: 280.840 Thread 0x000000001ef8b800 nmethod 10855 0x00000000047f2250 code [0x00000000047f23c0, 0x00000000047f2628]
|
||||||
|
Event: 280.844 Thread 0x000000001ef53800 10856 s 3 java.io.ExpiringCache::clear (10 bytes)
|
||||||
|
Event: 280.844 Thread 0x000000001ef53800 nmethod 10856 0x00000000050fd610 code [0x00000000050fd780, 0x00000000050fdb08]
|
||||||
|
|
||||||
|
GC Heap History (10 events):
|
||||||
|
Event: 154.537 GC heap before
|
||||||
|
{Heap before GC invocations=26 (full 5):
|
||||||
|
PSYoungGen total 609280K, used 609213K [0x000000076c900000, 0x0000000799080000, 0x00000007c0000000)
|
||||||
|
eden space 594944K, 100% used [0x000000076c900000,0x0000000790e00000,0x0000000790e00000)
|
||||||
|
from space 14336K, 99% used [0x0000000798280000,0x000000079906f450,0x0000000799080000)
|
||||||
|
to space 53248K, 0% used [0x0000000792880000,0x0000000792880000,0x0000000795c80000)
|
||||||
|
ParOldGen total 257024K, used 160079K [0x00000006c5a00000, 0x00000006d5500000, 0x000000076c900000)
|
||||||
|
object space 257024K, 62% used [0x00000006c5a00000,0x00000006cf653c10,0x00000006d5500000)
|
||||||
|
Metaspace used 46138K, capacity 46625K, committed 46848K, reserved 1091584K
|
||||||
|
class space used 5406K, capacity 5550K, committed 5632K, reserved 1048576K
|
||||||
|
Event: 154.543 GC heap after
|
||||||
|
Heap after GC invocations=26 (full 5):
|
||||||
|
PSYoungGen total 675328K, used 19146K [0x000000076c900000, 0x000000079bf80000, 0x00000007c0000000)
|
||||||
|
eden space 622080K, 0% used [0x000000076c900000,0x000000076c900000,0x0000000792880000)
|
||||||
|
from space 53248K, 35% used [0x0000000792880000,0x0000000793b32a90,0x0000000795c80000)
|
||||||
|
to space 49664K, 0% used [0x0000000798f00000,0x0000000798f00000,0x000000079bf80000)
|
||||||
|
ParOldGen total 257024K, used 160087K [0x00000006c5a00000, 0x00000006d5500000, 0x000000076c900000)
|
||||||
|
object space 257024K, 62% used [0x00000006c5a00000,0x00000006cf655c10,0x00000006d5500000)
|
||||||
|
Metaspace used 46138K, capacity 46625K, committed 46848K, reserved 1091584K
|
||||||
|
class space used 5406K, capacity 5550K, committed 5632K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 182.702 GC heap before
|
||||||
|
{Heap before GC invocations=27 (full 5):
|
||||||
|
PSYoungGen total 675328K, used 641226K [0x000000076c900000, 0x000000079bf80000, 0x00000007c0000000)
|
||||||
|
eden space 622080K, 100% used [0x000000076c900000,0x0000000792880000,0x0000000792880000)
|
||||||
|
from space 53248K, 35% used [0x0000000792880000,0x0000000793b32a90,0x0000000795c80000)
|
||||||
|
to space 49664K, 0% used [0x0000000798f00000,0x0000000798f00000,0x000000079bf80000)
|
||||||
|
ParOldGen total 257024K, used 160087K [0x00000006c5a00000, 0x00000006d5500000, 0x000000076c900000)
|
||||||
|
object space 257024K, 62% used [0x00000006c5a00000,0x00000006cf655c10,0x00000006d5500000)
|
||||||
|
Metaspace used 46145K, capacity 46625K, committed 46848K, reserved 1091584K
|
||||||
|
class space used 5406K, capacity 5550K, committed 5632K, reserved 1048576K
|
||||||
|
Event: 182.707 GC heap after
|
||||||
|
Heap after GC invocations=27 (full 5):
|
||||||
|
PSYoungGen total 729600K, used 19735K [0x000000076c900000, 0x000000079c980000, 0x00000007c0000000)
|
||||||
|
eden space 679936K, 0% used [0x000000076c900000,0x000000076c900000,0x0000000796100000)
|
||||||
|
from space 49664K, 39% used [0x0000000798f00000,0x000000079a245d00,0x000000079bf80000)
|
||||||
|
to space 47104K, 0% used [0x0000000796100000,0x0000000796100000,0x0000000798f00000)
|
||||||
|
ParOldGen total 257024K, used 160095K [0x00000006c5a00000, 0x00000006d5500000, 0x000000076c900000)
|
||||||
|
object space 257024K, 62% used [0x00000006c5a00000,0x00000006cf657c10,0x00000006d5500000)
|
||||||
|
Metaspace used 46145K, capacity 46625K, committed 46848K, reserved 1091584K
|
||||||
|
class space used 5406K, capacity 5550K, committed 5632K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 214.785 GC heap before
|
||||||
|
{Heap before GC invocations=28 (full 5):
|
||||||
|
PSYoungGen total 729600K, used 699671K [0x000000076c900000, 0x000000079c980000, 0x00000007c0000000)
|
||||||
|
eden space 679936K, 100% used [0x000000076c900000,0x0000000796100000,0x0000000796100000)
|
||||||
|
from space 49664K, 39% used [0x0000000798f00000,0x000000079a245d00,0x000000079bf80000)
|
||||||
|
to space 47104K, 0% used [0x0000000796100000,0x0000000796100000,0x0000000798f00000)
|
||||||
|
ParOldGen total 257024K, used 160095K [0x00000006c5a00000, 0x00000006d5500000, 0x000000076c900000)
|
||||||
|
object space 257024K, 62% used [0x00000006c5a00000,0x00000006cf657c10,0x00000006d5500000)
|
||||||
|
Metaspace used 46204K, capacity 46689K, committed 46848K, reserved 1091584K
|
||||||
|
class space used 5406K, capacity 5550K, committed 5632K, reserved 1048576K
|
||||||
|
Event: 214.791 GC heap after
|
||||||
|
Heap after GC invocations=28 (full 5):
|
||||||
|
PSYoungGen total 727040K, used 19114K [0x000000076c900000, 0x000000079f580000, 0x00000007c0000000)
|
||||||
|
eden space 679936K, 0% used [0x000000076c900000,0x000000076c900000,0x0000000796100000)
|
||||||
|
from space 47104K, 40% used [0x0000000796100000,0x00000007973aaa90,0x0000000798f00000)
|
||||||
|
to space 44544K, 0% used [0x000000079ca00000,0x000000079ca00000,0x000000079f580000)
|
||||||
|
ParOldGen total 257024K, used 160103K [0x00000006c5a00000, 0x00000006d5500000, 0x000000076c900000)
|
||||||
|
object space 257024K, 62% used [0x00000006c5a00000,0x00000006cf659c10,0x00000006d5500000)
|
||||||
|
Metaspace used 46204K, capacity 46689K, committed 46848K, reserved 1091584K
|
||||||
|
class space used 5406K, capacity 5550K, committed 5632K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 243.350 GC heap before
|
||||||
|
{Heap before GC invocations=29 (full 5):
|
||||||
|
PSYoungGen total 727040K, used 699050K [0x000000076c900000, 0x000000079f580000, 0x00000007c0000000)
|
||||||
|
eden space 679936K, 100% used [0x000000076c900000,0x0000000796100000,0x0000000796100000)
|
||||||
|
from space 47104K, 40% used [0x0000000796100000,0x00000007973aaa90,0x0000000798f00000)
|
||||||
|
to space 44544K, 0% used [0x000000079ca00000,0x000000079ca00000,0x000000079f580000)
|
||||||
|
ParOldGen total 257024K, used 160103K [0x00000006c5a00000, 0x00000006d5500000, 0x000000076c900000)
|
||||||
|
object space 257024K, 62% used [0x00000006c5a00000,0x00000006cf659c10,0x00000006d5500000)
|
||||||
|
Metaspace used 46239K, capacity 46689K, committed 46848K, reserved 1091584K
|
||||||
|
class space used 5406K, capacity 5550K, committed 5632K, reserved 1048576K
|
||||||
|
Event: 243.356 GC heap after
|
||||||
|
Heap after GC invocations=29 (full 5):
|
||||||
|
PSYoungGen total 757760K, used 16535K [0x000000076c900000, 0x000000079e500000, 0x00000007c0000000)
|
||||||
|
eden space 730112K, 0% used [0x000000076c900000,0x000000076c900000,0x0000000799200000)
|
||||||
|
from space 27648K, 59% used [0x000000079ca00000,0x000000079da25d00,0x000000079e500000)
|
||||||
|
to space 42496K, 0% used [0x0000000799200000,0x0000000799200000,0x000000079bb80000)
|
||||||
|
ParOldGen total 257024K, used 160111K [0x00000006c5a00000, 0x00000006d5500000, 0x000000076c900000)
|
||||||
|
object space 257024K, 62% used [0x00000006c5a00000,0x00000006cf65bc10,0x00000006d5500000)
|
||||||
|
Metaspace used 46239K, capacity 46689K, committed 46848K, reserved 1091584K
|
||||||
|
class space used 5406K, capacity 5550K, committed 5632K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 275.352 GC heap before
|
||||||
|
{Heap before GC invocations=30 (full 5):
|
||||||
|
PSYoungGen total 757760K, used 746647K [0x000000076c900000, 0x000000079e500000, 0x00000007c0000000)
|
||||||
|
eden space 730112K, 100% used [0x000000076c900000,0x0000000799200000,0x0000000799200000)
|
||||||
|
from space 27648K, 59% used [0x000000079ca00000,0x000000079da25d00,0x000000079e500000)
|
||||||
|
to space 42496K, 0% used [0x0000000799200000,0x0000000799200000,0x000000079bb80000)
|
||||||
|
ParOldGen total 257024K, used 160111K [0x00000006c5a00000, 0x00000006d5500000, 0x000000076c900000)
|
||||||
|
object space 257024K, 62% used [0x00000006c5a00000,0x00000006cf65bc10,0x00000006d5500000)
|
||||||
|
Metaspace used 46249K, capacity 46689K, committed 46848K, reserved 1091584K
|
||||||
|
class space used 5406K, capacity 5550K, committed 5632K, reserved 1048576K
|
||||||
|
Event: 275.356 GC heap after
|
||||||
|
Heap after GC invocations=30 (full 5):
|
||||||
|
PSYoungGen total 720384K, used 19031K [0x000000076c900000, 0x000000079ca80000, 0x00000007c0000000)
|
||||||
|
eden space 700928K, 0% used [0x000000076c900000,0x000000076c900000,0x0000000797580000)
|
||||||
|
from space 19456K, 97% used [0x0000000799200000,0x000000079a495d00,0x000000079a500000)
|
||||||
|
to space 38400K, 0% used [0x000000079a500000,0x000000079a500000,0x000000079ca80000)
|
||||||
|
ParOldGen total 257024K, used 160119K [0x00000006c5a00000, 0x00000006d5500000, 0x000000076c900000)
|
||||||
|
object space 257024K, 62% used [0x00000006c5a00000,0x00000006cf65dc10,0x00000006d5500000)
|
||||||
|
Metaspace used 46249K, capacity 46689K, committed 46848K, reserved 1091584K
|
||||||
|
class space used 5406K, capacity 5550K, committed 5632K, reserved 1048576K
|
||||||
|
}
|
||||||
|
|
||||||
|
Deoptimization events (10 events):
|
||||||
|
Event: 280.835 Thread 0x000000002366d800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000050cab74 method=io.netty.channel.AbstractChannelHandlerContext.executor()Lio/netty/util/concurrent/EventExecutor; @ 11
|
||||||
|
Event: 280.838 Thread 0x000000002366d800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000003f65e7c method=io.netty.util.internal.MpscLinkedQueue.offer(Ljava/lang/Object;)Z @ 18
|
||||||
|
Event: 280.838 Thread 0x0000000024d81000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000003be5558 method=io.netty.util.internal.MpscLinkedQueue.poll()Ljava/lang/Object; @ 26
|
||||||
|
Event: 280.839 Thread 0x000000002366d800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000003762348 method=org.apache.logging.log4j.status.StatusLogger.isEnabled(Lorg/apache/logging/log4j/Level;Lorg/apache/logging/log4j/Marker;)Z @ 18
|
||||||
|
Event: 280.839 Thread 0x0000000024d81000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000050d1374 method=io.netty.util.internal.MpscLinkedQueue.poll()Ljava/lang/Object; @ 26
|
||||||
|
Event: 280.839 Thread 0x000000002366d800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000004801b00 method=java.util.concurrent.ConcurrentLinkedQueue.first()Ljava/util/concurrent/ConcurrentLinkedQueue$Node; @ 11
|
||||||
|
Event: 280.839 Thread 0x0000000024d81000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000050cab74 method=io.netty.channel.AbstractChannelHandlerContext.executor()Lio/netty/util/concurrent/EventExecutor; @ 11
|
||||||
|
Event: 280.839 Thread 0x0000000024d81000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000050cab74 method=io.netty.channel.AbstractChannelHandlerContext.executor()Lio/netty/util/concurrent/EventExecutor; @ 11
|
||||||
|
Event: 280.839 Thread 0x0000000024d81000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000050d1374 method=io.netty.util.internal.MpscLinkedQueue.poll()Ljava/lang/Object; @ 26
|
||||||
|
Event: 280.936 Thread 0x0000000023673000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000052726dc method=java.util.Collections.reverse(Ljava/util/List;)V @ 1
|
||||||
|
|
||||||
|
Classes redefined (3 events):
|
||||||
|
Event: 0.094 Thread 0x000000001ee55000 redefined class name=java.io.FileOutputStream, count=1
|
||||||
|
Event: 72.224 Thread 0x000000001ee55000 redefined class name=rip.athena.client.gui.framework.MinecraftMenuImpl, count=1
|
||||||
|
Event: 140.723 Thread 0x000000001ee55000 redefined class name=rip.athena.client.gui.framework.MinecraftMenuImpl, count=2
|
||||||
|
|
||||||
|
Internal exceptions (10 events):
|
||||||
|
Event: 280.900 Thread 0x0000000034336000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x0000000774159098) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 280.904 Thread 0x0000000034336000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x0000000774159340) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 280.908 Thread 0x0000000034336000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x00000007741595e8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 280.912 Thread 0x0000000034336000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x0000000774159890) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 280.916 Thread 0x0000000034336000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x0000000774159b38) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 280.920 Thread 0x0000000034336000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x0000000774159de0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 280.923 Thread 0x0000000034336000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x000000077415a088) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 280.927 Thread 0x0000000034336000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x000000077415a330) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 280.931 Thread 0x0000000034336000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x000000077415a5d8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
Event: 280.934 Thread 0x0000000034336000 Exception <a 'java/lang/InterruptedException': sleep interrupted> (0x000000077415a880) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u202\12323\hotspot\src\share\vm\prims\jvm.cpp, line 3336]
|
||||||
|
|
||||||
|
Events (10 events):
|
||||||
|
Event: 280.927 Thread 0x0000000022870000 DEOPT UNPACKING pc=0x0000000003237890 sp=0x000000004b30eca0 mode 1
|
||||||
|
Event: 280.931 Thread 0x0000000034336000 DEOPT PACKING pc=0x000000000482a21c sp=0x000000003d48f0c0
|
||||||
|
Event: 280.931 Thread 0x0000000034336000 DEOPT UNPACKING pc=0x0000000003237890 sp=0x000000003d48edd8 mode 1
|
||||||
|
Event: 280.934 Thread 0x0000000034336000 DEOPT PACKING pc=0x000000000482a21c sp=0x000000003d48f0c0
|
||||||
|
Event: 280.934 Thread 0x0000000034336000 DEOPT UNPACKING pc=0x0000000003237890 sp=0x000000003d48edd8 mode 1
|
||||||
|
Event: 280.936 Thread 0x000000002366c000 Thread exited: 0x000000002366c000
|
||||||
|
Event: 280.936 Thread 0x0000000023673000 Uncommon trap: trap_request=0xffffffde fr.pc=0x00000000052726dc
|
||||||
|
Event: 280.936 Thread 0x0000000023673000 DEOPT PACKING pc=0x00000000052726dc sp=0x0000000020fdf2e0
|
||||||
|
Event: 280.936 Thread 0x0000000023673000 DEOPT UNPACKING pc=0x000000000323583b sp=0x0000000020fdf318 mode 2
|
||||||
|
Event: 280.936 Executing VM operation: Exit
|
||||||
|
|
||||||
|
|
||||||
|
Dynamic libraries:
|
||||||
|
0x00007ff75c730000 - 0x00007ff75c767000 C:\Program Files\Java\jdk1.8.0_202\bin\java.exe
|
||||||
|
0x00007ffee6e90000 - 0x00007ffee7088000 C:\WINDOWS\SYSTEM32\ntdll.dll
|
||||||
|
0x00007ffee6bf0000 - 0x00007ffee6caf000 C:\WINDOWS\System32\KERNEL32.DLL
|
||||||
|
0x00007ffee68f0000 - 0x00007ffee6be6000 C:\WINDOWS\System32\KERNELBASE.dll
|
||||||
|
0x000000007ce80000 - 0x000000007cebb000 C:\WINDOWS\System32\cyinjct.dll
|
||||||
|
0x00007ffee6770000 - 0x00007ffee677c000 C:\WINDOWS\System32\ntnativeapi.dll
|
||||||
|
0x00007ffee6750000 - 0x00007ffee676e000 C:\WINDOWS\System32\cyvera.dll
|
||||||
|
0x00007ffee66e0000 - 0x00007ffee6749000 C:\WINDOWS\System32\cyvrtrap.dll
|
||||||
|
0x00007ffee5570000 - 0x00007ffee561f000 C:\WINDOWS\System32\ADVAPI32.dll
|
||||||
|
0x00007ffee60e0000 - 0x00007ffee617e000 C:\WINDOWS\System32\msvcrt.dll
|
||||||
|
0x00007ffee5220000 - 0x00007ffee52bc000 C:\WINDOWS\System32\sechost.dll
|
||||||
|
0x00007ffee67c0000 - 0x00007ffee68e6000 C:\WINDOWS\System32\RPCRT4.dll
|
||||||
|
0x00007ffee6cb0000 - 0x00007ffee6e4d000 C:\WINDOWS\System32\USER32.dll
|
||||||
|
0x00007ffee4620000 - 0x00007ffee4642000 C:\WINDOWS\System32\win32u.dll
|
||||||
|
0x00007ffee5fc0000 - 0x00007ffee5fec000 C:\WINDOWS\System32\GDI32.dll
|
||||||
|
0x00007ffee49b0000 - 0x00007ffee4ac5000 C:\WINDOWS\System32\gdi32full.dll
|
||||||
|
0x00007ffee4860000 - 0x00007ffee48fd000 C:\WINDOWS\System32\msvcp_win.dll
|
||||||
|
0x00007ffee4650000 - 0x00007ffee4750000 C:\WINDOWS\System32\ucrtbase.dll
|
||||||
|
0x00007ffec1bc0000 - 0x00007ffec1e5a000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.19041.1110_none_60b5254171f9507e\COMCTL32.dll
|
||||||
|
0x00007ffee5b00000 - 0x00007ffee5b30000 C:\WINDOWS\System32\IMM32.DLL
|
||||||
|
0x0000000061400000 - 0x00000000614d2000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\msvcr100.dll
|
||||||
|
0x00000000604c0000 - 0x0000000060d65000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\server\jvm.dll
|
||||||
|
0x00007ffee57c0000 - 0x00007ffee57c8000 C:\WINDOWS\System32\PSAPI.DLL
|
||||||
|
0x00007ffedf6d0000 - 0x00007ffedf6d9000 C:\WINDOWS\SYSTEM32\WSOCK32.dll
|
||||||
|
0x00007ffee5f50000 - 0x00007ffee5fbb000 C:\WINDOWS\System32\WS2_32.dll
|
||||||
|
0x00007ffec5030000 - 0x00007ffec5057000 C:\WINDOWS\SYSTEM32\WINMM.dll
|
||||||
|
0x00007ffedddb0000 - 0x00007ffedddba000 C:\WINDOWS\SYSTEM32\VERSION.dll
|
||||||
|
0x00007ffedc960000 - 0x00007ffedc96f000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\verify.dll
|
||||||
|
0x00007ffeca120000 - 0x00007ffeca149000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\java.dll
|
||||||
|
0x00007ffeca5a0000 - 0x00007ffeca5d5000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\jdwp.dll
|
||||||
|
0x00007ffed4710000 - 0x00007ffed4718000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\npt.dll
|
||||||
|
0x00007ffec75c0000 - 0x00007ffec75e3000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\instrument.dll
|
||||||
|
0x00007ffee66a0000 - 0x00007ffee66d7000 C:\Program Files\Palo Alto Networks\Traps\cyjagent.dll
|
||||||
|
0x00007ffed4290000 - 0x00007ffed42a6000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\zip.dll
|
||||||
|
0x00007ffee4ad0000 - 0x00007ffee5214000 C:\WINDOWS\System32\SHELL32.dll
|
||||||
|
0x00007ffee1f40000 - 0x00007ffee26d3000 C:\WINDOWS\SYSTEM32\windows.storage.dll
|
||||||
|
0x00007ffee5b30000 - 0x00007ffee5e84000 C:\WINDOWS\System32\combase.dll
|
||||||
|
0x00007ffee3dd0000 - 0x00007ffee3dfe000 C:\WINDOWS\SYSTEM32\Wldp.dll
|
||||||
|
0x00007ffee6180000 - 0x00007ffee622d000 C:\WINDOWS\System32\SHCORE.dll
|
||||||
|
0x00007ffee5e90000 - 0x00007ffee5ee5000 C:\WINDOWS\System32\shlwapi.dll
|
||||||
|
0x00007ffee4390000 - 0x00007ffee43af000 C:\WINDOWS\SYSTEM32\profapi.dll
|
||||||
|
0x00007ffed45d0000 - 0x00007ffed45d9000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\dt_socket.dll
|
||||||
|
0x00007ffee3bb0000 - 0x00007ffee3c1a000 C:\WINDOWS\system32\mswsock.dll
|
||||||
|
0x00007ffed45b0000 - 0x00007ffed45bd000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\management.dll
|
||||||
|
0x00007ffed3980000 - 0x00007ffed399a000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\net.dll
|
||||||
|
0x00007ffed13d0000 - 0x00007ffed15bc000 C:\WINDOWS\SYSTEM32\urlmon.dll
|
||||||
|
0x00007ffedcd00000 - 0x00007ffedcfb1000 C:\WINDOWS\SYSTEM32\iertutil.dll
|
||||||
|
0x00007ffee3070000 - 0x00007ffee3098000 C:\WINDOWS\SYSTEM32\srvcli.dll
|
||||||
|
0x00007ffee38b0000 - 0x00007ffee38bc000 C:\WINDOWS\SYSTEM32\netutils.dll
|
||||||
|
0x00007ffed43d0000 - 0x00007ffed43e2000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\nio.dll
|
||||||
|
0x00007ffeab2e0000 - 0x00007ffeab2f7000 C:\WINDOWS\system32\napinsp.dll
|
||||||
|
0x00007ffeab300000 - 0x00007ffeab31b000 C:\WINDOWS\system32\pnrpnsp.dll
|
||||||
|
0x00007ffeded70000 - 0x00007ffeded85000 C:\WINDOWS\system32\wshbth.dll
|
||||||
|
0x00007ffede0f0000 - 0x00007ffede10d000 C:\WINDOWS\system32\NLAapi.dll
|
||||||
|
0x00007ffee3870000 - 0x00007ffee38ac000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
|
||||||
|
0x00007ffee38c0000 - 0x00007ffee398b000 C:\WINDOWS\SYSTEM32\DNSAPI.dll
|
||||||
|
0x00007ffee5850000 - 0x00007ffee5858000 C:\WINDOWS\System32\NSI.dll
|
||||||
|
0x00007ffeab320000 - 0x00007ffeab332000 C:\WINDOWS\System32\winrnr.dll
|
||||||
|
0x00007ffeddf50000 - 0x00007ffeddfd2000 C:\WINDOWS\System32\fwpuclnt.dll
|
||||||
|
0x00007ffee4830000 - 0x00007ffee4857000 C:\WINDOWS\System32\bcrypt.dll
|
||||||
|
0x00007ffedd130000 - 0x00007ffedd13a000 C:\Windows\System32\rasadhlp.dll
|
||||||
|
0x0000000180000000 - 0x0000000180053000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\lwjgl64.dll
|
||||||
|
0x00007ffea9980000 - 0x00007ffea9aa5000 C:\WINDOWS\SYSTEM32\OPENGL32.dll
|
||||||
|
0x00007ffed8ca0000 - 0x00007ffed8ccc000 C:\WINDOWS\SYSTEM32\GLU32.dll
|
||||||
|
0x00007ffee3e10000 - 0x00007ffee3e28000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll
|
||||||
|
0x00007ffee3370000 - 0x00007ffee33a4000 C:\WINDOWS\system32\rsaenh.dll
|
||||||
|
0x00007ffee4310000 - 0x00007ffee433e000 C:\WINDOWS\SYSTEM32\USERENV.dll
|
||||||
|
0x00007ffee4750000 - 0x00007ffee47d2000 C:\WINDOWS\System32\bcryptprimitives.dll
|
||||||
|
0x00007ffee3d40000 - 0x00007ffee3d4c000 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
|
||||||
|
0x00007ffeddee0000 - 0x00007ffeddef7000 C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL
|
||||||
|
0x00007ffeddec0000 - 0x00007ffeddedd000 C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL
|
||||||
|
0x00007ffea4b60000 - 0x00007ffea4cf9000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\awt.dll
|
||||||
|
0x00007ffee53f0000 - 0x00007ffee54bd000 C:\WINDOWS\System32\OLEAUT32.dll
|
||||||
|
0x00007ffee1180000 - 0x00007ffee1211000 C:\WINDOWS\SYSTEM32\apphelp.dll
|
||||||
|
0x00007ffeddb00000 - 0x00007ffeddbae000 C:\WINDOWS\SYSTEM32\mscms.dll
|
||||||
|
0x00007ffedda90000 - 0x00007ffeddaa1000 C:\WINDOWS\SYSTEM32\ColorAdapterClient.dll
|
||||||
|
0x00007ffee2d60000 - 0x00007ffee2d72000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll
|
||||||
|
0x00007ffee1820000 - 0x00007ffee18be000 C:\WINDOWS\system32\uxtheme.dll
|
||||||
|
0x00007ffee5620000 - 0x00007ffee5734000 C:\WINDOWS\System32\MSCTF.dll
|
||||||
|
0x00007ffec9a60000 - 0x00007ffec9b5a000 C:\WINDOWS\SYSTEM32\textinputframework.dll
|
||||||
|
0x00007ffee0bf0000 - 0x00007ffee0f4e000 C:\WINDOWS\System32\CoreUIComponents.dll
|
||||||
|
0x00007ffee0f50000 - 0x00007ffee1042000 C:\WINDOWS\System32\CoreMessaging.dll
|
||||||
|
0x00007ffee35c0000 - 0x00007ffee35f3000 C:\WINDOWS\SYSTEM32\ntmarta.dll
|
||||||
|
0x00007ffee0520000 - 0x00007ffee0674000 C:\WINDOWS\SYSTEM32\wintypes.dll
|
||||||
|
0x00007ffee52c0000 - 0x00007ffee53ea000 C:\WINDOWS\System32\ole32.dll
|
||||||
|
0x00007ffee54c0000 - 0x00007ffee5569000 C:\WINDOWS\System32\clbcatq.dll
|
||||||
|
0x00007ffe92350000 - 0x00007ffe93343000 C:\WINDOWS\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_307c52ae370e15f2\igxelpicd64.dll
|
||||||
|
0x00007ffee1950000 - 0x00007ffee197f000 C:\WINDOWS\system32\dwmapi.dll
|
||||||
|
0x00007ffee2ae0000 - 0x00007ffee2bd3000 C:\WINDOWS\system32\dxgi.dll
|
||||||
|
0x00007ffe91ef0000 - 0x00007ffe92343000 C:\WINDOWS\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_307c52ae370e15f2\igdml64.dll
|
||||||
|
0x00007ffecdc00000 - 0x00007ffecdfc7000 C:\WINDOWS\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_307c52ae370e15f2\igdgmm64.dll
|
||||||
|
0x00007ffe815f0000 - 0x00007ffe81633000 C:\WINDOWS\SYSTEM32\icm32.dll
|
||||||
|
0x00007ffeca5e0000 - 0x00007ffecdbf1000 C:\WINDOWS\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_307c52ae370e15f2\igc64.dll
|
||||||
|
0x00007ffee3990000 - 0x00007ffee39db000 C:\WINDOWS\SYSTEM32\powrprof.dll
|
||||||
|
0x00007ffee3850000 - 0x00007ffee3862000 C:\WINDOWS\SYSTEM32\UMPDC.dll
|
||||||
|
0x0000000002ed0000 - 0x0000000002f08000 C:\Users\remgab001\AppData\Local\Temp\jna\jna8019587675727759743.dll
|
||||||
|
0x0000000070a40000 - 0x0000000070adc000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\avutil-ttv-51.dll
|
||||||
|
0x0000000065980000 - 0x00000000659d6000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\swresample-ttv-0.dll
|
||||||
|
0x000000006eb80000 - 0x000000006ec50000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\libmp3lame-ttv.dll
|
||||||
|
0x00007ffe8f120000 - 0x00007ffe904c4000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\libmfxsw64.dll
|
||||||
|
0x00007ffe96320000 - 0x00007ffe9648d000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\twitchsdk.dll
|
||||||
|
0x00007ffec4920000 - 0x00007ffec4df9000 C:\WINDOWS\SYSTEM32\WININET.dll
|
||||||
|
0x00000000325b0000 - 0x0000000032614000 C:\Users\remgab001\Desktop\Athena-Client\workspace\versions\1.8.8\1.8.8-natives\OpenAL64.dll
|
||||||
|
0x00007ffea49a0000 - 0x00007ffea4a3c000 C:\WINDOWS\SYSTEM32\dsound.dll
|
||||||
|
0x00007ffec4e00000 - 0x00007ffec4e26000 C:\WINDOWS\SYSTEM32\winmmbase.dll
|
||||||
|
0x00007ffedbfa0000 - 0x00007ffedc025000 C:\WINDOWS\System32\MMDevApi.dll
|
||||||
|
0x00007ffee4200000 - 0x00007ffee422c000 C:\WINDOWS\System32\DEVOBJ.dll
|
||||||
|
0x00007ffee47e0000 - 0x00007ffee482e000 C:\WINDOWS\System32\cfgmgr32.dll
|
||||||
|
0x00007ffedc0f0000 - 0x00007ffedc272000 C:\WINDOWS\SYSTEM32\AUDIOSES.DLL
|
||||||
|
0x00007ffee1a60000 - 0x00007ffee1a74000 C:\WINDOWS\SYSTEM32\resourcepolicyclient.dll
|
||||||
|
0x00007ffebae20000 - 0x00007ffebae67000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\fontmanager.dll
|
||||||
|
0x00007ffeb3230000 - 0x00007ffeb3272000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\t2k.dll
|
||||||
|
0x00007ffec3bc0000 - 0x00007ffec3bea000 C:\Program Files\Java\jdk1.8.0_202\jre\bin\dcpr.dll
|
||||||
|
0x00007ffee27b0000 - 0x00007ffee2994000 C:\WINDOWS\SYSTEM32\dbghelp.dll
|
||||||
|
|
||||||
|
VM Arguments:
|
||||||
|
jvm_args: -agentlib:jdwp=transport=dt_socket,address=127.0.0.1:56362,suspend=y,server=n -Djava.library.path=versions/1.8.8/1.8.8-natives/ -javaagent:C:\Users\remgab001\AppData\Local\JetBrains\IdeaIC2023.1\captureAgent\debugger-agent.jar -Dfile.encoding=UTF-8 -agentpath:C:\Program Files\Palo Alto Networks\Traps\cyjagent.dll
|
||||||
|
java_command: Start
|
||||||
|
java_class_path (initial): C:\Program Files\Java\jdk1.8.0_202\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\deploy.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\access-bridge-64.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\cldrdata.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\dnsns.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\jaccess.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\jfxrt.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\localedata.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\nashorn.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\sunec.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\sunjce_provider.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\sunmscapi.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\sunpkcs11.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext\zipfs.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\javaws.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jce.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jfr.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jfxswt.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\management-agent.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\plugin.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\resources.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\rt.jar;C:\Users\remgab001\Desktop\Athena-Client\target\classes;C:\Users\remgab001\.m2\repository\net\minecraft\minecraft\1.8.8\minecraft-1.8.8.jar;C:\Users\remgab001\.m2\repository\org\json\json\20230227\json-20230227.jar;C:\Users\remgab001\.m2\repository\org\reflections\reflections\0.10.2\reflections-0.10.2.jar;C:\Users\remgab001\.m2\repository\org\javassist\javassist\3.28.0-GA\javassist-3.28.0-GA.jar;C:\Users\remgab001\.m2\repository\com\google\code\findbugs\jsr305\3.0.2\jsr305-3.0.2.jar;C:\Users\remgab001\.m2\repository\org\slf4j\slf4j-api\1.7.32\slf4j-api-1.7.32.jar;C:\Users\remgab001\.m2\repository\oshi-project\oshi-core\1.1\oshi-core-1.1.jar;
|
||||||
|
Launcher Type: SUN_STANDARD
|
||||||
|
|
||||||
|
Environment Variables:
|
||||||
|
PATH=C:\Program Files\Google\Chrome\Application;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\nodejs\;C:\Program Files\Git\cmd;C:\Users\remgab001\AppData\Local\Microsoft\WindowsApps;C:\Users\remgab001\AppData\Roaming\npm;C:\Users\remgab001\AppData\Local\Programs\Microsoft VS Code\bin
|
||||||
|
USERNAME=remgab001
|
||||||
|
OS=Windows_NT
|
||||||
|
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 154 Stepping 3, GenuineIntel
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
--------------- S Y S T E M ---------------
|
||||||
|
|
||||||
|
OS: Windows 10.0 , 64 bit Build 19041 (10.0.19041.2913)
|
||||||
|
|
||||||
|
CPU:total 20 (initial active 20) (10 cores per cpu, 2 threads per core) family 6 model 154 stepping 3, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, clmul, erms, 3dnowpref, lzcnt, ht, tsc, tscinvbit, bmi1, bmi2, adx
|
||||||
|
|
||||||
|
Memory: 4k page, physical 16400820k(1369568k free), swap 33178036k(11068596k free)
|
||||||
|
|
||||||
|
vm_info: Java HotSpot(TM) 64-Bit Server VM (25.202-b08) for windows-amd64 JRE (1.8.0_202-b08), built on Dec 15 2018 19:54:30 by "java_re" with MS VC++ 10.0 (VS2010)
|
||||||
|
|
||||||
|
time: Fri Jun 02 11:35:12 2023
|
||||||
|
timezone: Vest-Europa (sommertid)
|
||||||
|
elapsed time: 281 seconds (0d 0h 4m 41s)
|
||||||
|
|
BIN
workspace/logs/2023-06-02-1.log.gz
Normal file
BIN
workspace/logs/2023-06-02-1.log.gz
Normal file
Binary file not shown.
BIN
workspace/logs/2023-06-02-2.log.gz
Normal file
BIN
workspace/logs/2023-06-02-2.log.gz
Normal file
Binary file not shown.
BIN
workspace/logs/2023-06-02-3.log.gz
Normal file
BIN
workspace/logs/2023-06-02-3.log.gz
Normal file
Binary file not shown.
BIN
workspace/logs/2023-06-02-4.log.gz
Normal file
BIN
workspace/logs/2023-06-02-4.log.gz
Normal file
Binary file not shown.
BIN
workspace/logs/2023-06-02-5.log.gz
Normal file
BIN
workspace/logs/2023-06-02-5.log.gz
Normal file
Binary file not shown.
BIN
workspace/logs/2023-06-02-6.log.gz
Normal file
BIN
workspace/logs/2023-06-02-6.log.gz
Normal file
Binary file not shown.
BIN
workspace/logs/2023-06-02-7.log.gz
Normal file
BIN
workspace/logs/2023-06-02-7.log.gz
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -1,19 +1,19 @@
|
|||||||
invertYMouse:false
|
invertYMouse:false
|
||||||
mouseSensitivity:0.16197184
|
mouseSensitivity:0.17605634
|
||||||
fov:0.5
|
fov:0.5
|
||||||
gamma:0.0
|
gamma:0.0
|
||||||
saturation:0.0
|
saturation:0.0
|
||||||
renderDistance:12
|
renderDistance:6
|
||||||
guiScale:2
|
guiScale:2
|
||||||
particles:0
|
particles:1
|
||||||
bobView:true
|
bobView:true
|
||||||
anaglyph3d:false
|
anaglyph3d:false
|
||||||
maxFps:260
|
maxFps:260
|
||||||
fboEnable:true
|
fboEnable:true
|
||||||
difficulty:2
|
difficulty:3
|
||||||
fancyGraphics:false
|
fancyGraphics:false
|
||||||
ao:0
|
ao:0
|
||||||
renderClouds:fast
|
renderClouds:false
|
||||||
resourcePacks:[]
|
resourcePacks:[]
|
||||||
incompatibleResourcePacks:[]
|
incompatibleResourcePacks:[]
|
||||||
lastServer:
|
lastServer:
|
||||||
@ -24,9 +24,9 @@ chatLinks:true
|
|||||||
chatLinksPrompt:true
|
chatLinksPrompt:true
|
||||||
chatOpacity:1.0
|
chatOpacity:1.0
|
||||||
snooperEnabled:true
|
snooperEnabled:true
|
||||||
fullscreen:false
|
fullscreen:true
|
||||||
enableVsync:false
|
enableVsync:false
|
||||||
useVbo:false
|
useVbo:true
|
||||||
hideServerAddress:false
|
hideServerAddress:false
|
||||||
advancedItemTooltips:false
|
advancedItemTooltips:false
|
||||||
pauseOnLostFocus:true
|
pauseOnLostFocus:true
|
||||||
@ -39,7 +39,7 @@ chatHeightUnfocused:0.44366196
|
|||||||
chatScale:1.0
|
chatScale:1.0
|
||||||
chatWidth:1.0
|
chatWidth:1.0
|
||||||
showInventoryAchievementHint:false
|
showInventoryAchievementHint:false
|
||||||
mipmapLevels:4
|
mipmapLevels:0
|
||||||
streamBytesPerPixel:0.5
|
streamBytesPerPixel:0.5
|
||||||
streamMicVolume:1.0
|
streamMicVolume:1.0
|
||||||
streamSystemVolume:1.0
|
streamSystemVolume:1.0
|
||||||
|
@ -1,43 +1,43 @@
|
|||||||
ofRenderDistanceChunks:12
|
ofRenderDistanceChunks:6
|
||||||
ofFogType:1
|
ofFogType:3
|
||||||
ofFogStart:0.2
|
ofFogStart:0.2
|
||||||
ofMipmapType:0
|
ofMipmapType:0
|
||||||
ofOcclusionFancy:false
|
ofOcclusionFancy:false
|
||||||
ofSmoothFps:false
|
ofSmoothFps:true
|
||||||
ofSmoothWorld:true
|
ofSmoothWorld:true
|
||||||
ofAoLevel:1.0
|
ofAoLevel:0.0
|
||||||
ofClouds:0
|
ofClouds:3
|
||||||
ofCloudsHeight:0.0
|
ofCloudsHeight:0.0
|
||||||
ofTrees:0
|
ofTrees:1
|
||||||
ofDroppedItems:0
|
ofDroppedItems:1
|
||||||
ofRain:0
|
ofRain:3
|
||||||
ofAnimatedWater:0
|
ofAnimatedWater:2
|
||||||
ofAnimatedLava:0
|
ofAnimatedLava:2
|
||||||
ofAnimatedFire:true
|
ofAnimatedFire:false
|
||||||
ofAnimatedPortal:true
|
ofAnimatedPortal:false
|
||||||
ofAnimatedRedstone:true
|
ofAnimatedRedstone:false
|
||||||
ofAnimatedExplosion:true
|
ofAnimatedExplosion:false
|
||||||
ofAnimatedFlame:true
|
ofAnimatedFlame:false
|
||||||
ofAnimatedSmoke:true
|
ofAnimatedSmoke:false
|
||||||
ofVoidParticles:true
|
ofVoidParticles:false
|
||||||
ofWaterParticles:true
|
ofWaterParticles:false
|
||||||
ofPortalParticles:true
|
ofPortalParticles:false
|
||||||
ofPotionParticles:true
|
ofPotionParticles:false
|
||||||
ofFireworkParticles:true
|
ofFireworkParticles:false
|
||||||
ofDrippingWaterLava:true
|
ofDrippingWaterLava:false
|
||||||
ofAnimatedTerrain:true
|
ofAnimatedTerrain:false
|
||||||
ofAnimatedTextures:true
|
ofAnimatedTextures:false
|
||||||
ofRainSplash:true
|
ofRainSplash:false
|
||||||
ofLagometer:false
|
ofLagometer:false
|
||||||
ofShowFps:false
|
ofShowFps:false
|
||||||
ofAutoSaveTicks:4000
|
ofAutoSaveTicks:30000
|
||||||
ofBetterGrass:3
|
ofBetterGrass:3
|
||||||
ofConnectedTextures:2
|
ofConnectedTextures:3
|
||||||
ofWeather:true
|
ofWeather:false
|
||||||
ofSky:true
|
ofSky:false
|
||||||
ofStars:true
|
ofStars:false
|
||||||
ofSunMoon:true
|
ofSunMoon:false
|
||||||
ofVignette:0
|
ofVignette:1
|
||||||
ofChunkUpdates:1
|
ofChunkUpdates:1
|
||||||
ofChunkUpdatesDynamic:false
|
ofChunkUpdatesDynamic:false
|
||||||
ofTime:0
|
ofTime:0
|
||||||
@ -46,20 +46,20 @@ ofAaLevel:0
|
|||||||
ofAfLevel:1
|
ofAfLevel:1
|
||||||
ofProfiler:false
|
ofProfiler:false
|
||||||
ofBetterSnow:false
|
ofBetterSnow:false
|
||||||
ofSwampColors:true
|
ofSwampColors:false
|
||||||
ofRandomMobs:true
|
ofRandomMobs:true
|
||||||
ofSmoothBiomes:true
|
ofSmoothBiomes:false
|
||||||
ofCustomFonts:true
|
ofCustomFonts:false
|
||||||
ofCustomColors:true
|
ofCustomColors:false
|
||||||
ofCustomItems:true
|
ofCustomItems:true
|
||||||
ofCustomSky:true
|
ofCustomSky:false
|
||||||
ofShowCapes:true
|
ofShowCapes:false
|
||||||
ofNaturalTextures:false
|
ofNaturalTextures:false
|
||||||
ofLazyChunkLoading:true
|
ofLazyChunkLoading:false
|
||||||
ofDynamicFov:false
|
ofDynamicFov:false
|
||||||
ofDynamicLights:3
|
ofDynamicLights:3
|
||||||
ofFullscreenMode:Default
|
ofFullscreenMode:Default
|
||||||
ofFastMath:false
|
ofFastMath:true
|
||||||
ofFastRender:true
|
ofFastRender:true
|
||||||
ofTranslucentBlocks:0
|
ofTranslucentBlocks:1
|
||||||
key_of.key.zoom:46
|
key_of.key.zoom:46
|
||||||
|
19
workspace/optionsshaders.txt
Normal file
19
workspace/optionsshaders.txt
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
#Fri Jun 02 09:31:23 CEST 2023
|
||||||
|
shaderPack=
|
||||||
|
antialiasingLevel=0
|
||||||
|
normalMapEnabled=true
|
||||||
|
specularMapEnabled=true
|
||||||
|
renderResMul=1.0
|
||||||
|
shadowResMul=1.0
|
||||||
|
handDepthMul=0.125
|
||||||
|
cloudShadow=true
|
||||||
|
oldHandLight=default
|
||||||
|
oldLighting=default
|
||||||
|
tweakBlockDamage=false
|
||||||
|
shadowClipFrustrum=true
|
||||||
|
TexMinFilB=0
|
||||||
|
TexMinFilN=0
|
||||||
|
TexMinFilS=0
|
||||||
|
TexMagFilB=0
|
||||||
|
TexMagFilN=0
|
||||||
|
TexMagFilS=0
|
Binary file not shown.
BIN
workspace/saves/MCP Development World/data/Monument.dat
Normal file
BIN
workspace/saves/MCP Development World/data/Monument.dat
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
workspace/saves/MCP Development World/region/r.0.1.mca
Normal file
BIN
workspace/saves/MCP Development World/region/r.0.1.mca
Normal file
Binary file not shown.
BIN
workspace/saves/MCP Development World/region/r.0.2.mca
Normal file
BIN
workspace/saves/MCP Development World/region/r.0.2.mca
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
workspace/saves/MCP Development World/region/r.1.1.mca
Normal file
BIN
workspace/saves/MCP Development World/region/r.1.1.mca
Normal file
Binary file not shown.
BIN
workspace/saves/MCP Development World/region/r.1.2.mca
Normal file
BIN
workspace/saves/MCP Development World/region/r.1.2.mca
Normal file
Binary file not shown.
BIN
workspace/saves/MCP Development World/region/r.2.-1.mca
Normal file
BIN
workspace/saves/MCP Development World/region/r.2.-1.mca
Normal file
Binary file not shown.
BIN
workspace/saves/MCP Development World/region/r.2.0.mca
Normal file
BIN
workspace/saves/MCP Development World/region/r.2.0.mca
Normal file
Binary file not shown.
BIN
workspace/saves/MCP Development World/region/r.2.1.mca
Normal file
BIN
workspace/saves/MCP Development World/region/r.2.1.mca
Normal file
Binary file not shown.
BIN
workspace/saves/MCP Development World/region/r.2.2.mca
Normal file
BIN
workspace/saves/MCP Development World/region/r.2.2.mca
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user