mirror of
				https://github.com/GeyserMC/Geyser.git
				synced 2024-08-14 23:57:35 +00:00 
			
		
		
		
	Organize entity packages a bit more
This commit is contained in:
		
							parent
							
								
									814da2453c
								
							
						
					
					
						commit
						b1d93fb633
					
				
					 18 changed files with 83 additions and 50 deletions
				
			
		| 
						 | 
				
			
			@ -4,9 +4,7 @@ import com.github.steveice10.mc.protocol.data.game.entity.metadata.EntityMetadat
 | 
			
		|||
import com.github.steveice10.mc.protocol.data.game.entity.metadata.MetadataType;
 | 
			
		||||
import com.nukkitx.math.vector.Vector3f;
 | 
			
		||||
import com.nukkitx.protocol.bedrock.data.EntityData;
 | 
			
		||||
import com.nukkitx.protocol.bedrock.data.EntityFlag;
 | 
			
		||||
import org.geysermc.connector.entity.LivingEntity;
 | 
			
		||||
import org.geysermc.connector.entity.living.MonsterEntity;
 | 
			
		||||
import org.geysermc.connector.entity.type.EntityType;
 | 
			
		||||
import org.geysermc.connector.network.session.GeyserSession;
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,27 +0,0 @@
 | 
			
		|||
package org.geysermc.connector.entity.living;
 | 
			
		||||
 | 
			
		||||
import com.github.steveice10.mc.protocol.data.game.entity.metadata.EntityMetadata;
 | 
			
		||||
import com.nukkitx.math.vector.Vector3f;
 | 
			
		||||
import com.nukkitx.protocol.bedrock.data.EntityData;
 | 
			
		||||
import com.nukkitx.protocol.bedrock.data.EntityFlag;
 | 
			
		||||
import org.geysermc.connector.entity.type.EntityType;
 | 
			
		||||
import org.geysermc.connector.network.session.GeyserSession;
 | 
			
		||||
 | 
			
		||||
public class RabbitEntity extends AnimalEntity {
 | 
			
		||||
    public RabbitEntity(long entityId, long geyserId, EntityType entityType, Vector3f position, Vector3f motion, Vector3f rotation) {
 | 
			
		||||
        super(entityId, geyserId, entityType, position, motion, rotation);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    @Override
 | 
			
		||||
    public void updateBedrockMetadata(EntityMetadata entityMetadata, GeyserSession session) {
 | 
			
		||||
        super.updateBedrockMetadata(entityMetadata, session);
 | 
			
		||||
        if (entityMetadata.getId() == 15) {
 | 
			
		||||
            metadata.put(EntityData.SCALE, .55f);
 | 
			
		||||
            boolean isBaby = (boolean) entityMetadata.getValue();
 | 
			
		||||
            if(isBaby) {
 | 
			
		||||
                metadata.put(EntityData.SCALE, .35f);
 | 
			
		||||
                metadata.getFlags().setFlag(EntityFlag.BABY, true);
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -23,9 +23,10 @@
 | 
			
		|||
 * @link https://github.com/GeyserMC/Geyser
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
package org.geysermc.connector.entity.living;
 | 
			
		||||
package org.geysermc.connector.entity.living.animal;
 | 
			
		||||
 | 
			
		||||
import com.nukkitx.math.vector.Vector3f;
 | 
			
		||||
import org.geysermc.connector.entity.living.AgeableEntity;
 | 
			
		||||
import org.geysermc.connector.entity.type.EntityType;
 | 
			
		||||
 | 
			
		||||
public class AnimalEntity extends AgeableEntity {
 | 
			
		||||
| 
						 | 
				
			
			@ -0,0 +1,53 @@
 | 
			
		|||
/*
 | 
			
		||||
 * Copyright (c) 2019 GeyserMC. http://geysermc.org
 | 
			
		||||
 *
 | 
			
		||||
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 | 
			
		||||
 * of this software and associated documentation files (the "Software"), to deal
 | 
			
		||||
 * in the Software without restriction, including without limitation the rights
 | 
			
		||||
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 | 
			
		||||
 * copies of the Software, and to permit persons to whom the Software is
 | 
			
		||||
 * furnished to do so, subject to the following conditions:
 | 
			
		||||
 *
 | 
			
		||||
 * The above copyright notice and this permission notice shall be included in
 | 
			
		||||
 * all copies or substantial portions of the Software.
 | 
			
		||||
 *
 | 
			
		||||
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 | 
			
		||||
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 | 
			
		||||
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 | 
			
		||||
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 | 
			
		||||
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 | 
			
		||||
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 | 
			
		||||
 * THE SOFTWARE.
 | 
			
		||||
 *
 | 
			
		||||
 * @author GeyserMC
 | 
			
		||||
 * @link https://github.com/GeyserMC/Geyser
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
package org.geysermc.connector.entity.living.animal;
 | 
			
		||||
 | 
			
		||||
import com.github.steveice10.mc.protocol.data.game.entity.metadata.EntityMetadata;
 | 
			
		||||
import com.nukkitx.math.vector.Vector3f;
 | 
			
		||||
import com.nukkitx.protocol.bedrock.data.EntityData;
 | 
			
		||||
import com.nukkitx.protocol.bedrock.data.EntityFlag;
 | 
			
		||||
import org.geysermc.connector.entity.type.EntityType;
 | 
			
		||||
import org.geysermc.connector.network.session.GeyserSession;
 | 
			
		||||
 | 
			
		||||
public class RabbitEntity extends AnimalEntity {
 | 
			
		||||
 | 
			
		||||
    public RabbitEntity(long entityId, long geyserId, EntityType entityType, Vector3f position, Vector3f motion, Vector3f rotation) {
 | 
			
		||||
        super(entityId, geyserId, entityType, position, motion, rotation);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    @Override
 | 
			
		||||
    public void updateBedrockMetadata(EntityMetadata entityMetadata, GeyserSession session) {
 | 
			
		||||
        super.updateBedrockMetadata(entityMetadata, session);
 | 
			
		||||
        if (entityMetadata.getId() == 15) {
 | 
			
		||||
            metadata.put(EntityData.SCALE, .55f);
 | 
			
		||||
            boolean isBaby = (boolean) entityMetadata.getValue();
 | 
			
		||||
            if(isBaby) {
 | 
			
		||||
                metadata.put(EntityData.SCALE, .35f);
 | 
			
		||||
                metadata.getFlags().setFlag(EntityFlag.BABY, true);
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -29,7 +29,6 @@ import com.github.steveice10.mc.protocol.data.game.entity.metadata.EntityMetadat
 | 
			
		|||
import com.nukkitx.math.vector.Vector3f;
 | 
			
		||||
import com.nukkitx.protocol.bedrock.data.EntityData;
 | 
			
		||||
import com.nukkitx.protocol.bedrock.data.EntityFlag;
 | 
			
		||||
import org.geysermc.connector.entity.living.AnimalEntity;
 | 
			
		||||
import org.geysermc.connector.entity.type.EntityType;
 | 
			
		||||
import org.geysermc.connector.network.session.GeyserSession;
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -41,11 +40,12 @@ public class SheepEntity extends AnimalEntity {
 | 
			
		|||
 | 
			
		||||
    @Override
 | 
			
		||||
    public void updateBedrockMetadata(EntityMetadata entityMetadata, GeyserSession session) {
 | 
			
		||||
        super.updateBedrockMetadata(entityMetadata, session);
 | 
			
		||||
        if (entityMetadata.getId() == 16) {
 | 
			
		||||
            byte xd = (byte) entityMetadata.getValue();
 | 
			
		||||
            metadata.getFlags().setFlag(EntityFlag.SHEARED, (xd & 0x10) == 0x10);
 | 
			
		||||
            metadata.put(EntityData.COLOR, xd);
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        super.updateBedrockMetadata(entityMetadata, session);
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -23,9 +23,10 @@
 | 
			
		|||
 * @link https://github.com/GeyserMC/Geyser
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
package org.geysermc.connector.entity.living;
 | 
			
		||||
package org.geysermc.connector.entity.living.animal;
 | 
			
		||||
 | 
			
		||||
import com.nukkitx.math.vector.Vector3f;
 | 
			
		||||
import org.geysermc.connector.entity.living.animal.AnimalEntity;
 | 
			
		||||
import org.geysermc.connector.entity.type.EntityType;
 | 
			
		||||
 | 
			
		||||
public class TameableEntity extends AnimalEntity {
 | 
			
		||||
| 
						 | 
				
			
			@ -23,10 +23,11 @@
 | 
			
		|||
 * @link https://github.com/GeyserMC/Geyser
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
package org.geysermc.connector.entity.living;
 | 
			
		||||
package org.geysermc.connector.entity.living.animal.horse;
 | 
			
		||||
 | 
			
		||||
import com.github.steveice10.mc.protocol.data.game.entity.metadata.EntityMetadata;
 | 
			
		||||
import com.nukkitx.math.vector.Vector3f;
 | 
			
		||||
import org.geysermc.connector.entity.living.animal.AnimalEntity;
 | 
			
		||||
import org.geysermc.connector.entity.type.EntityType;
 | 
			
		||||
import org.geysermc.connector.network.session.GeyserSession;
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -23,7 +23,7 @@
 | 
			
		|||
 * @link https://github.com/GeyserMC/Geyser
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
package org.geysermc.connector.entity.living;
 | 
			
		||||
package org.geysermc.connector.entity.living.animal.horse;
 | 
			
		||||
 | 
			
		||||
import com.github.steveice10.mc.protocol.data.game.entity.metadata.EntityMetadata;
 | 
			
		||||
import com.nukkitx.math.vector.Vector3f;
 | 
			
		||||
| 
						 | 
				
			
			@ -23,12 +23,11 @@
 | 
			
		|||
 * @link https://github.com/GeyserMC/Geyser
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
package org.geysermc.connector.entity.living.horse;
 | 
			
		||||
package org.geysermc.connector.entity.living.animal.horse;
 | 
			
		||||
 | 
			
		||||
import com.github.steveice10.mc.protocol.data.game.entity.metadata.EntityMetadata;
 | 
			
		||||
import com.nukkitx.math.vector.Vector3f;
 | 
			
		||||
import com.nukkitx.protocol.bedrock.data.EntityData;
 | 
			
		||||
import org.geysermc.connector.entity.living.AbstractHorseEntity;
 | 
			
		||||
import org.geysermc.connector.entity.type.EntityType;
 | 
			
		||||
import org.geysermc.connector.network.session.GeyserSession;
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -23,10 +23,9 @@
 | 
			
		|||
 * @link https://github.com/GeyserMC/Geyser
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
package org.geysermc.connector.entity.living.horse;
 | 
			
		||||
package org.geysermc.connector.entity.living.animal.horse;
 | 
			
		||||
 | 
			
		||||
import com.nukkitx.math.vector.Vector3f;
 | 
			
		||||
import org.geysermc.connector.entity.living.ChestedHorseEntity;
 | 
			
		||||
import org.geysermc.connector.entity.type.EntityType;
 | 
			
		||||
 | 
			
		||||
public class LlamaEntity extends ChestedHorseEntity {
 | 
			
		||||
| 
						 | 
				
			
			@ -23,7 +23,7 @@
 | 
			
		|||
 * @link https://github.com/GeyserMC/Geyser
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
package org.geysermc.connector.entity.living;
 | 
			
		||||
package org.geysermc.connector.entity.living.monster;
 | 
			
		||||
 | 
			
		||||
import com.nukkitx.math.vector.Vector3f;
 | 
			
		||||
import org.geysermc.connector.entity.type.EntityType;
 | 
			
		||||
| 
						 | 
				
			
			@ -29,7 +29,6 @@ import com.github.steveice10.mc.protocol.data.game.entity.metadata.EntityMetadat
 | 
			
		|||
import com.nukkitx.math.vector.Vector3f;
 | 
			
		||||
import com.nukkitx.protocol.bedrock.data.EntityData;
 | 
			
		||||
import org.geysermc.connector.entity.Entity;
 | 
			
		||||
import org.geysermc.connector.entity.living.MonsterEntity;
 | 
			
		||||
import org.geysermc.connector.entity.type.EntityType;
 | 
			
		||||
import org.geysermc.connector.network.session.GeyserSession;
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -23,9 +23,10 @@
 | 
			
		|||
 * @link https://github.com/GeyserMC/Geyser
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
package org.geysermc.connector.entity.living;
 | 
			
		||||
package org.geysermc.connector.entity.living.monster;
 | 
			
		||||
 | 
			
		||||
import com.nukkitx.math.vector.Vector3f;
 | 
			
		||||
import org.geysermc.connector.entity.living.CreatureEntity;
 | 
			
		||||
import org.geysermc.connector.entity.type.EntityType;
 | 
			
		||||
 | 
			
		||||
public class MonsterEntity extends CreatureEntity {
 | 
			
		||||
| 
						 | 
				
			
			@ -29,7 +29,6 @@ import com.github.steveice10.mc.protocol.data.game.entity.metadata.EntityMetadat
 | 
			
		|||
import com.nukkitx.math.vector.Vector3f;
 | 
			
		||||
import com.nukkitx.protocol.bedrock.data.EntityData;
 | 
			
		||||
import com.nukkitx.protocol.bedrock.data.EntityFlag;
 | 
			
		||||
import org.geysermc.connector.entity.living.MonsterEntity;
 | 
			
		||||
import org.geysermc.connector.entity.type.EntityType;
 | 
			
		||||
import org.geysermc.connector.network.session.GeyserSession;
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -23,7 +23,7 @@
 | 
			
		|||
 * @link https://github.com/GeyserMC/Geyser
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
package org.geysermc.connector.entity.living;
 | 
			
		||||
package org.geysermc.connector.entity.living.monster.raid;
 | 
			
		||||
 | 
			
		||||
import com.nukkitx.math.vector.Vector3f;
 | 
			
		||||
import org.geysermc.connector.entity.type.EntityType;
 | 
			
		||||
| 
						 | 
				
			
			@ -23,9 +23,10 @@
 | 
			
		|||
 * @link https://github.com/GeyserMC/Geyser
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
package org.geysermc.connector.entity.living;
 | 
			
		||||
package org.geysermc.connector.entity.living.monster.raid;
 | 
			
		||||
 | 
			
		||||
import com.nukkitx.math.vector.Vector3f;
 | 
			
		||||
import org.geysermc.connector.entity.living.monster.MonsterEntity;
 | 
			
		||||
import org.geysermc.connector.entity.type.EntityType;
 | 
			
		||||
 | 
			
		||||
public class RaidParticipantEntity extends MonsterEntity {
 | 
			
		||||
| 
						 | 
				
			
			@ -23,9 +23,10 @@
 | 
			
		|||
 * @link https://github.com/GeyserMC/Geyser
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
package org.geysermc.connector.entity.living;
 | 
			
		||||
package org.geysermc.connector.entity.living.monster.raid;
 | 
			
		||||
 | 
			
		||||
import com.nukkitx.math.vector.Vector3f;
 | 
			
		||||
import org.geysermc.connector.entity.living.monster.raid.AbstractIllagerEntity;
 | 
			
		||||
import org.geysermc.connector.entity.type.EntityType;
 | 
			
		||||
 | 
			
		||||
public class SpellcasterIllagerEntity extends AbstractIllagerEntity {
 | 
			
		||||
| 
						 | 
				
			
			@ -28,11 +28,18 @@ package org.geysermc.connector.entity.type;
 | 
			
		|||
import lombok.Getter;
 | 
			
		||||
import org.geysermc.connector.entity.*;
 | 
			
		||||
import org.geysermc.connector.entity.living.*;
 | 
			
		||||
import org.geysermc.connector.entity.living.animal.AnimalEntity;
 | 
			
		||||
import org.geysermc.connector.entity.living.animal.TameableEntity;
 | 
			
		||||
import org.geysermc.connector.entity.living.animal.horse.AbstractHorseEntity;
 | 
			
		||||
import org.geysermc.connector.entity.living.animal.RabbitEntity;
 | 
			
		||||
import org.geysermc.connector.entity.living.animal.SheepEntity;
 | 
			
		||||
import org.geysermc.connector.entity.living.horse.HorseEntity;
 | 
			
		||||
import org.geysermc.connector.entity.living.horse.LlamaEntity;
 | 
			
		||||
import org.geysermc.connector.entity.living.monster.GuardianEntity;
 | 
			
		||||
import org.geysermc.connector.entity.living.monster.ZombieEntity;
 | 
			
		||||
import org.geysermc.connector.entity.living.animal.horse.ChestedHorseEntity;
 | 
			
		||||
import org.geysermc.connector.entity.living.animal.horse.HorseEntity;
 | 
			
		||||
import org.geysermc.connector.entity.living.animal.horse.LlamaEntity;
 | 
			
		||||
import org.geysermc.connector.entity.living.monster.*;
 | 
			
		||||
import org.geysermc.connector.entity.living.monster.raid.AbstractIllagerEntity;
 | 
			
		||||
import org.geysermc.connector.entity.living.monster.raid.RaidParticipantEntity;
 | 
			
		||||
import org.geysermc.connector.entity.living.monster.raid.SpellcasterIllagerEntity;
 | 
			
		||||
 | 
			
		||||
@Getter
 | 
			
		||||
public enum EntityType {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue