2018-09-12 06:39:55 +00:00
|
|
|
package com.seodisparate.TurnBasedMinecraft.client;
|
|
|
|
|
2018-09-14 05:14:10 +00:00
|
|
|
import org.apache.logging.log4j.Logger;
|
|
|
|
|
2018-09-28 03:13:07 +00:00
|
|
|
import com.seodisparate.TurnBasedMinecraft.common.Battle;
|
2018-09-12 06:39:55 +00:00
|
|
|
import com.seodisparate.TurnBasedMinecraft.common.CommonProxy;
|
2018-09-14 05:14:10 +00:00
|
|
|
import com.seodisparate.TurnBasedMinecraft.common.Config;
|
2018-09-14 03:44:45 +00:00
|
|
|
import com.seodisparate.TurnBasedMinecraft.common.TurnBasedMinecraftMod;
|
2018-09-12 06:39:55 +00:00
|
|
|
|
|
|
|
import net.minecraft.client.Minecraft;
|
2018-09-17 04:27:13 +00:00
|
|
|
import net.minecraft.entity.Entity;
|
2018-09-21 07:10:00 +00:00
|
|
|
import net.minecraft.util.SoundCategory;
|
2018-09-17 04:27:13 +00:00
|
|
|
import net.minecraft.util.text.TextComponentString;
|
2018-09-12 06:39:55 +00:00
|
|
|
|
|
|
|
public class ClientProxy extends CommonProxy
|
|
|
|
{
|
|
|
|
private BattleGui battleGui;
|
2018-09-14 05:14:10 +00:00
|
|
|
private BattleMusic battleMusic;
|
|
|
|
private Logger logger;
|
|
|
|
private Config config;
|
2018-09-27 09:09:40 +00:00
|
|
|
private int battleMusicCount;
|
|
|
|
private int sillyMusicCount;
|
2018-09-28 03:13:07 +00:00
|
|
|
private Battle localBattle;
|
2018-09-12 06:39:55 +00:00
|
|
|
|
2018-09-20 06:15:34 +00:00
|
|
|
@Override
|
|
|
|
public void initialize()
|
2018-09-12 06:39:55 +00:00
|
|
|
{
|
|
|
|
battleGui = new BattleGui();
|
2018-09-14 05:14:10 +00:00
|
|
|
battleMusic = null; // will be initialized in postInit()
|
2018-09-27 09:09:40 +00:00
|
|
|
battleMusicCount = 0;
|
|
|
|
sillyMusicCount = 0;
|
2018-09-28 03:13:07 +00:00
|
|
|
localBattle = null;
|
2018-09-12 06:39:55 +00:00
|
|
|
}
|
2018-09-20 06:15:34 +00:00
|
|
|
|
2018-09-12 06:39:55 +00:00
|
|
|
@Override
|
|
|
|
public void setBattleGuiTime(int timeRemaining)
|
|
|
|
{
|
|
|
|
battleGui.timeRemaining.set(timeRemaining);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setBattleGuiBattleChanged()
|
|
|
|
{
|
|
|
|
battleGui.battleChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setBattleGuiAsGui()
|
|
|
|
{
|
|
|
|
Minecraft.getMinecraft().addScheduledTask(() -> {
|
|
|
|
if(Minecraft.getMinecraft().currentScreen != battleGui)
|
|
|
|
{
|
|
|
|
battleGui.turnEnd();
|
|
|
|
Minecraft.getMinecraft().displayGuiScreen(battleGui);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void battleGuiTurnBegin()
|
|
|
|
{
|
|
|
|
battleGui.turnBegin();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void battleGuiTurnEnd()
|
|
|
|
{
|
|
|
|
battleGui.turnEnd();
|
|
|
|
}
|
2018-09-14 03:44:45 +00:00
|
|
|
|
2018-09-18 07:58:01 +00:00
|
|
|
@Override
|
|
|
|
public void battleStarted()
|
|
|
|
{
|
|
|
|
setBattleGuiAsGui();
|
|
|
|
}
|
|
|
|
|
2018-09-14 03:44:45 +00:00
|
|
|
@Override
|
|
|
|
public void battleEnded()
|
|
|
|
{
|
2018-09-28 03:13:07 +00:00
|
|
|
localBattle = null;
|
2018-09-14 03:44:45 +00:00
|
|
|
Minecraft.getMinecraft().addScheduledTask(() -> {
|
|
|
|
Minecraft.getMinecraft().displayGuiScreen(null);
|
|
|
|
Minecraft.getMinecraft().setIngameFocus();
|
|
|
|
});
|
2018-09-27 07:44:28 +00:00
|
|
|
stopMusic(true);
|
2018-09-27 09:09:40 +00:00
|
|
|
battleMusicCount = 0;
|
|
|
|
sillyMusicCount = 0;
|
2018-09-14 03:44:45 +00:00
|
|
|
}
|
2018-09-14 05:14:10 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void postInit()
|
|
|
|
{
|
|
|
|
battleMusic = new BattleMusic(logger);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setLogger(Logger logger)
|
|
|
|
{
|
|
|
|
this.logger = logger;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void playBattleMusic()
|
|
|
|
{
|
2018-09-21 07:10:00 +00:00
|
|
|
battleMusic.playBattle(Minecraft.getMinecraft().gameSettings.getSoundLevel(SoundCategory.MUSIC));
|
2018-09-14 05:14:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void playSillyMusic()
|
|
|
|
{
|
2018-09-21 07:10:00 +00:00
|
|
|
battleMusic.playSilly(Minecraft.getMinecraft().gameSettings.getSoundLevel(SoundCategory.MUSIC));
|
2018-09-14 05:14:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2018-09-27 07:44:28 +00:00
|
|
|
public void stopMusic(boolean resumeMCSounds)
|
2018-09-14 05:14:10 +00:00
|
|
|
{
|
2018-09-27 07:44:28 +00:00
|
|
|
battleMusic.stopMusic(resumeMCSounds);
|
2018-09-14 05:14:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets what music to play based on type and loaded Config
|
|
|
|
*/
|
|
|
|
@Override
|
|
|
|
public void typeEnteredBattle(String type)
|
|
|
|
{
|
2018-09-28 03:13:07 +00:00
|
|
|
if(localBattle == null)
|
2018-09-27 09:09:40 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2018-09-14 05:14:10 +00:00
|
|
|
if(type == null || type.isEmpty() || config.isBattleMusicType(type))
|
|
|
|
{
|
2018-09-27 09:09:40 +00:00
|
|
|
++battleMusicCount;
|
2018-09-14 05:14:10 +00:00
|
|
|
}
|
|
|
|
else if(config.isSillyMusicType(type))
|
|
|
|
{
|
2018-09-27 09:09:40 +00:00
|
|
|
++sillyMusicCount;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
++battleMusicCount;
|
2018-09-14 05:14:10 +00:00
|
|
|
}
|
2018-09-27 09:09:40 +00:00
|
|
|
checkBattleTypes();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void typeLeftBattle(String type)
|
|
|
|
{
|
2018-09-28 03:13:07 +00:00
|
|
|
if(localBattle == null)
|
2018-09-27 09:09:40 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(type == null || type.isEmpty() || config.isBattleMusicType(type))
|
|
|
|
{
|
|
|
|
--battleMusicCount;
|
|
|
|
}
|
|
|
|
else if(config.isSillyMusicType(type))
|
|
|
|
{
|
|
|
|
--sillyMusicCount;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
--battleMusicCount;
|
|
|
|
}
|
|
|
|
checkBattleTypes();
|
2018-09-14 05:14:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setConfig(Config config)
|
|
|
|
{
|
|
|
|
this.config = config;
|
|
|
|
}
|
2018-09-17 04:27:13 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void displayString(String message)
|
|
|
|
{
|
|
|
|
Minecraft.getMinecraft().ingameGUI.getChatGUI().printChatMessage(new TextComponentString(message));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Entity getEntityByID(int id)
|
|
|
|
{
|
|
|
|
return Minecraft.getMinecraft().world.getEntityByID(id);
|
|
|
|
}
|
2018-09-27 09:09:40 +00:00
|
|
|
|
|
|
|
private void checkBattleTypes()
|
|
|
|
{
|
2018-09-28 03:02:39 +00:00
|
|
|
float percentage = 0.0f;
|
|
|
|
if(sillyMusicCount == 0 && battleMusicCount == 0)
|
|
|
|
{
|
|
|
|
percentage = 0.0f;
|
|
|
|
}
|
|
|
|
else if(battleMusicCount == 0)
|
|
|
|
{
|
|
|
|
percentage = 100.0f;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
percentage = 100.0f * (float)sillyMusicCount / (float)(sillyMusicCount + battleMusicCount);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(percentage >= (float)TurnBasedMinecraftMod.getConfig().getSillyMusicThreshold())
|
2018-09-27 09:09:40 +00:00
|
|
|
{
|
|
|
|
if(battleMusic.isPlaying())
|
|
|
|
{
|
|
|
|
if(!battleMusic.isPlayingSilly() && battleMusic.hasSillyMusic())
|
|
|
|
{
|
|
|
|
stopMusic(false);
|
|
|
|
playSillyMusic();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(battleMusic.hasSillyMusic())
|
|
|
|
{
|
|
|
|
playSillyMusic();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(battleMusic.isPlaying())
|
|
|
|
{
|
|
|
|
if(battleMusic.isPlayingSilly() && battleMusic.hasBattleMusic())
|
|
|
|
{
|
|
|
|
stopMusic(false);
|
|
|
|
playBattleMusic();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(battleMusic.hasBattleMusic())
|
|
|
|
{
|
|
|
|
playBattleMusic();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-09-28 03:13:07 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public Battle getLocalBattle()
|
|
|
|
{
|
|
|
|
return localBattle;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void createLocalBattle(int id)
|
|
|
|
{
|
|
|
|
localBattle = new Battle(id, null, null, false);
|
|
|
|
}
|
2018-09-12 06:39:55 +00:00
|
|
|
}
|