From 72441407f3d77a27591ae7c54a38a0311486d7ef Mon Sep 17 00:00:00 2001 From: JackCarterSmith Date: Sat, 17 Jun 2017 12:39:23 +0200 Subject: [PATCH] Rewrite/review of items management --- .../fr/jackcartersmith/orbsat/OSItems.java | 9 ++++--- .../orbsat/OrbitalSatellite.java | 2 +- .../orbsat/item/DesignatorCircuitItem.java | 14 ++++++++++ .../orbsat/item/LaserDesignatorItem.java | 1 + .../orbsat/item/SatelliteItem.java | 16 ++++++++++++ .../resources/assets/orbsat/lang/en_US.lang | 24 +++--------------- .../resources/assets/orbsat/lang/fr_FR.lang | 24 +++--------------- .../orbsat/models/item/designatorCircuit.json | 6 +++++ .../assets/orbsat/models/item/flat.json | 6 +++++ ...signator_mki.json => laserDesignator.json} | 2 +- src/main/resources/assets/orbsat/sounds.json | 20 +++++++-------- .../textures/items/designatorCircuit.png | Bin 0 -> 1304 bytes .../items/designatorCircuit.png.mcmeta | 15 +++++++++++ .../textures/items/item_ob_designatorHigh.png | Bin 612 -> 0 bytes .../textures/items/item_ob_designatorLow.png | Bin 863 -> 0 bytes .../textures/items/item_ob_designatorMed.png | Bin 842 -> 0 bytes .../textures/items/item_ob_laserGunHigh.png | Bin 342 -> 0 bytes .../textures/items/item_ob_laserGunMed.png | Bin 321 -> 0 bytes .../orbsat/textures/items/laserDesignator.png | Bin 0 -> 642 bytes .../textures/items/laserDesignator_mki.png | Bin 343 -> 0 bytes 20 files changed, 82 insertions(+), 57 deletions(-) create mode 100644 src/main/java/fr/jackcartersmith/orbsat/item/DesignatorCircuitItem.java create mode 100644 src/main/java/fr/jackcartersmith/orbsat/item/SatelliteItem.java create mode 100644 src/main/resources/assets/orbsat/models/item/designatorCircuit.json create mode 100644 src/main/resources/assets/orbsat/models/item/flat.json rename src/main/resources/assets/orbsat/models/item/{laserDesignator_mki.json => laserDesignator.json} (50%) create mode 100644 src/main/resources/assets/orbsat/textures/items/designatorCircuit.png create mode 100644 src/main/resources/assets/orbsat/textures/items/designatorCircuit.png.mcmeta delete mode 100644 src/main/resources/assets/orbsat/textures/items/item_ob_designatorHigh.png delete mode 100644 src/main/resources/assets/orbsat/textures/items/item_ob_designatorLow.png delete mode 100644 src/main/resources/assets/orbsat/textures/items/item_ob_designatorMed.png delete mode 100644 src/main/resources/assets/orbsat/textures/items/item_ob_laserGunHigh.png delete mode 100644 src/main/resources/assets/orbsat/textures/items/item_ob_laserGunMed.png create mode 100644 src/main/resources/assets/orbsat/textures/items/laserDesignator.png delete mode 100644 src/main/resources/assets/orbsat/textures/items/laserDesignator_mki.png diff --git a/src/main/java/fr/jackcartersmith/orbsat/OSItems.java b/src/main/java/fr/jackcartersmith/orbsat/OSItems.java index 4c675a3..af99dc8 100644 --- a/src/main/java/fr/jackcartersmith/orbsat/OSItems.java +++ b/src/main/java/fr/jackcartersmith/orbsat/OSItems.java @@ -1,13 +1,16 @@ package fr.jackcartersmith.orbsat; +import fr.jackcartersmith.orbsat.item.DesignatorCircuitItem; import fr.jackcartersmith.orbsat.item.LaserDesignatorItem; import net.minecraft.item.Item; public class OSItems { - public static Item laserDesignator_mkI; - + public static Item laserDesignator; + public static Item designatorCircuit; + public static void init(){ - laserDesignator_mkI = new LaserDesignatorItem("laserDesignator_mki"); + laserDesignator = new LaserDesignatorItem("laserDesignator"); + designatorCircuit = new DesignatorCircuitItem("designatorCircuit"); } } diff --git a/src/main/java/fr/jackcartersmith/orbsat/OrbitalSatellite.java b/src/main/java/fr/jackcartersmith/orbsat/OrbitalSatellite.java index 53bfd79..e6df3ea 100644 --- a/src/main/java/fr/jackcartersmith/orbsat/OrbitalSatellite.java +++ b/src/main/java/fr/jackcartersmith/orbsat/OrbitalSatellite.java @@ -112,7 +112,7 @@ public class OrbitalSatellite { @Override public ItemStack getIconItemStack() { - return new ItemStack(OSItems.laserDesignator_mkI,1,0); + return new ItemStack(OSItems.designatorCircuit,1,0); } }; } diff --git a/src/main/java/fr/jackcartersmith/orbsat/item/DesignatorCircuitItem.java b/src/main/java/fr/jackcartersmith/orbsat/item/DesignatorCircuitItem.java new file mode 100644 index 0000000..d12c682 --- /dev/null +++ b/src/main/java/fr/jackcartersmith/orbsat/item/DesignatorCircuitItem.java @@ -0,0 +1,14 @@ +package fr.jackcartersmith.orbsat.item; + +import fr.jackcartersmith.orbsat.OSRefs; +import fr.jackcartersmith.orbsat.OrbitalSatellite; +import net.minecraft.item.Item; + +public class DesignatorCircuitItem extends Item{ + public DesignatorCircuitItem(String unlocalizedName){ + this.setUnlocalizedName(unlocalizedName); + this.setCreativeTab(OrbitalSatellite.creativeTab); + OrbitalSatellite.register(this, unlocalizedName); + OSRefs.registeredOSItems.add(this); + } +} diff --git a/src/main/java/fr/jackcartersmith/orbsat/item/LaserDesignatorItem.java b/src/main/java/fr/jackcartersmith/orbsat/item/LaserDesignatorItem.java index c4d193c..60a9ed6 100644 --- a/src/main/java/fr/jackcartersmith/orbsat/item/LaserDesignatorItem.java +++ b/src/main/java/fr/jackcartersmith/orbsat/item/LaserDesignatorItem.java @@ -8,6 +8,7 @@ public class LaserDesignatorItem extends Item { public LaserDesignatorItem(String unlocalizedName){ this.setUnlocalizedName(unlocalizedName); + this.setMaxStackSize(1); this.setCreativeTab(OrbitalSatellite.creativeTab); OrbitalSatellite.register(this, unlocalizedName); OSRefs.registeredOSItems.add(this); diff --git a/src/main/java/fr/jackcartersmith/orbsat/item/SatelliteItem.java b/src/main/java/fr/jackcartersmith/orbsat/item/SatelliteItem.java new file mode 100644 index 0000000..7c0f80b --- /dev/null +++ b/src/main/java/fr/jackcartersmith/orbsat/item/SatelliteItem.java @@ -0,0 +1,16 @@ +package fr.jackcartersmith.orbsat.item; + +import fr.jackcartersmith.orbsat.OSRefs; +import fr.jackcartersmith.orbsat.OrbitalSatellite; +import net.minecraft.item.Item; + +public class SatelliteItem extends Item{ + public SatelliteItem(String unlocalizedName){ + this.setUnlocalizedName(unlocalizedName); + this.setCreativeTab(OrbitalSatellite.creativeTab); + this.setHasSubtypes(true); + this.setMaxStackSize(1); + OrbitalSatellite.register(this, unlocalizedName); + OSRefs.registeredOSItems.add(this); + } +} diff --git a/src/main/resources/assets/orbsat/lang/en_US.lang b/src/main/resources/assets/orbsat/lang/en_US.lang index 2aea7f1..2e44c4a 100644 --- a/src/main/resources/assets/orbsat/lang/en_US.lang +++ b/src/main/resources/assets/orbsat/lang/en_US.lang @@ -1,23 +1,5 @@ -#item.item_ob_lense.name=Laser Lens -#item.item_ob_condenser.name=Photon Condenser -#item.item_ob_capacitor.name=Photon Capacitor -#item.item_ob_designatorLow.name=Low Power Designator -#item.item_ob_designatorMed.name=Medium Power Designator -#item.item_ob_designatorHigh.name=High Power Designator -#item.item_ob_laserGunLow.name=Low Power Laser Gun -#item.item_ob_laserGunMed.name=Medium Power Laser Gun -#item.item_ob_laserGunHigh.name=High Power Laser Gun -#tile.obOverrider.name=Laser Satelite Overrider -#tile.obExtender.name=Extender -#tile.obSatelite.name=Laser Satelite Prototype LX-I -#tile.obDefender.name=Laser Strike Defender -#tile.obAccelerator.name=Photon Accelerator -#tile.obDecelerator.name=Photon Deccelerator -#tile.obInverterAdv.name=Advanced Photonic Converter -#tile.obInverter.name=Photonic Converter - #CreativeTabs -itemGroup.orbsat.name=Orbital Satellite - +itemGroup.orbsat=Orbital Satellite #Items -item.laserDesignator_mki.name=Laser Designator MK-I \ No newline at end of file +item.laserDesignator.name=Targeting Satellite Computer +item.designatorCircuit.name=Targeting Computer Circuit \ No newline at end of file diff --git a/src/main/resources/assets/orbsat/lang/fr_FR.lang b/src/main/resources/assets/orbsat/lang/fr_FR.lang index 558a8db..6d4b894 100644 --- a/src/main/resources/assets/orbsat/lang/fr_FR.lang +++ b/src/main/resources/assets/orbsat/lang/fr_FR.lang @@ -1,23 +1,5 @@ -#item.item_ob_lense.name=Lentille -#item.item_ob_condenser.name=Condensateur Photonique -#item.item_ob_capacitor.name=Capaciteur Photonique -#item.item_ob_designatorLow.name=Designateur Faible Puissance -#item.item_ob_designatorMed.name=Designateur Moyenne Puissance -#item.item_ob_designatorHigh.name=Designateur Haute Puissance -#item.item_ob_laserGunLow.name=Pointeur Laser Faible Puissance -#item.item_ob_laserGunMed.name=Pointeur Laser Moyenne Puissance -#item.item_ob_laserGunHigh.name=Pointeur Laser Haute Puissance -#tile.obOverrider.name=Chargeur de Satellite Laser -#tile.obExtender.name=Extendeur -#tile.obSatelite.name=Prototype de Satellite Laser LX-I -#tile.obDefender.name=Defenseur Laser -#tile.obAccelerator.name=Accelerateur de photon -#tile.obDecelerator.name=Decelerateur de photon -#tile.obInverterAdv.name=Convertisseur photonique avancé -#tile.obInverter.name=Convertisseur photonique - #CreativeTabs -itemGroup.orbsat.name=Satellite Orbital - +itemGroup.orbsat=Satellite Orbital #Items -item.laserDesignator_mki.name=Pointeur Laser MK-I \ No newline at end of file +item.laserDesignator.name=Ordinateur de visée du satellite +item.designatorCircuit.name=Circuit pour ordinateur de visée \ No newline at end of file diff --git a/src/main/resources/assets/orbsat/models/item/designatorCircuit.json b/src/main/resources/assets/orbsat/models/item/designatorCircuit.json new file mode 100644 index 0000000..0a5619a --- /dev/null +++ b/src/main/resources/assets/orbsat/models/item/designatorCircuit.json @@ -0,0 +1,6 @@ +{ + "parent": "orbsat:item/flat", + "textures": { + "layer0": "orbsat:items/designatorCircuit" + } +} diff --git a/src/main/resources/assets/orbsat/models/item/flat.json b/src/main/resources/assets/orbsat/models/item/flat.json new file mode 100644 index 0000000..77fd847 --- /dev/null +++ b/src/main/resources/assets/orbsat/models/item/flat.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "missingno" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/orbsat/models/item/laserDesignator_mki.json b/src/main/resources/assets/orbsat/models/item/laserDesignator.json similarity index 50% rename from src/main/resources/assets/orbsat/models/item/laserDesignator_mki.json rename to src/main/resources/assets/orbsat/models/item/laserDesignator.json index ca2d1a8..b60184d 100644 --- a/src/main/resources/assets/orbsat/models/item/laserDesignator_mki.json +++ b/src/main/resources/assets/orbsat/models/item/laserDesignator.json @@ -1,6 +1,6 @@ { "parent": "item/generated", "textures": { - "layer0": "orbsat:items/laserDesignator_mki" + "layer0": "orbsat:items/laserDesignator" } } \ No newline at end of file diff --git a/src/main/resources/assets/orbsat/sounds.json b/src/main/resources/assets/orbsat/sounds.json index bed7778..e0baee0 100644 --- a/src/main/resources/assets/orbsat/sounds.json +++ b/src/main/resources/assets/orbsat/sounds.json @@ -2,61 +2,61 @@ "defenderLock": { "category": "block", "sounds": [ - "defenderLock" + "orbsat:defenderLock" ] }, "start": { "category": "block", "sounds": [ - "start" + "orbsat:start" ] }, "middle": { "category": "block", "sounds": [ - "middle" + "orbsat:middle" ] }, "satelliteLaunch": { "category": "block", "sounds": [ - "satelliteLaunch" + "orbsat:satelliteLaunch" ] }, "explode": { "category": "block", "sounds": [ - "explode" + "orbsat:explode" ] }, "reentry": { "category": "block", "sounds": [ - "reentry" + "orbsat:reentry" ] }, "booming": { "category": "block", "sounds": [ - "booming" + "orbsat:booming" ] }, "digging": { "category": "block", "sounds": [ - "digging" + "orbsat:digging" ] }, "startCharging": { "category": "block", "sounds": [ - "startCharging" + "orbsat:startCharging" ] }, "helios": { "category": "block", "sounds": [ - "helios" + "orbsat:helios" ] } } \ No newline at end of file diff --git a/src/main/resources/assets/orbsat/textures/items/designatorCircuit.png b/src/main/resources/assets/orbsat/textures/items/designatorCircuit.png new file mode 100644 index 0000000000000000000000000000000000000000..87b6a233433cbf57a2e5d5ebb332b9a90794e5c5 GIT binary patch literal 1304 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 diff --git a/src/main/resources/assets/orbsat/textures/items/item_ob_designatorMed.png b/src/main/resources/assets/orbsat/textures/items/item_ob_designatorMed.png deleted file mode 100644 index f5c32eb25a6a915cdbb8a6efa7b09392773058ae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 842 zcmV-Q1GW5#P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!~g&e!~vBn4jTXf0^dnQK~y+Tjgw1g zR96_sfA=--*EKWam`rLOX4ELL#z(-7R2qtkAZVdjC2^r3whM6~7^o1s=%P?4BDioN z4YXAxD;J^_1uJdoU??=fgozew8k5Xq;!Nh=%){%M>oq=B{lnp$^PTViKi~Pj??~3U zwH6KrZqM;y!p+QLjg#9Vj`dxPO&17xG?uD0+M<4N1pfEvO=4}2V}0C&Rp-jWXyb5K zh*X0MIq1T_V-?ZP2>aIs=#070k^$Qm{3ywK5m@)uE^a-2#ak8_`s+F4*)m5qsf=t= zh&B7T_qfRDY#HC?7{%TYyK4*LTJV~AhxL}gH#>uTmePonE8LxYj`plbfAZkXbKIO<6kZaIei_rH)|U+5 ze&Eo>QP87OsKEET6$V<0!me1$SG> zI=^S772emnZ1eXdtOF^x)e@Gh4+2;%L9DpYx2te{LWC%=WtE4GaW|d~4a+@HJlnyY z{$|!@=lN%$N}&u*L4`9rbY=|O1+_7#+KZ8C6WtB1O9r>b7C4wQIR3LiUXY?|biQg* z8OjtevL+{P%-ftgM#a6`14pZk!pn>rcAEK89c(+D;NNr)@}*OJ znfnRl*DGvw%`yFGlJ)95(v!crD*RqU`lByyeP?bVI-g-G)Um~biYO{P)|O*1h4iM U?7K(l^Z)<=07*qoM6N<$f?5xbeE&)9kX zt&^98I&eHRn;~yzuO!d9HaD8#z{fwn(K7{$-ZFWp_R1r?W56y9}PLelF{r5}E*!2!`(f diff --git a/src/main/resources/assets/orbsat/textures/items/item_ob_laserGunMed.png b/src/main/resources/assets/orbsat/textures/items/item_ob_laserGunMed.png deleted file mode 100644 index 048b48667241a7dcb9f759ebd9c562ddc8931280..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 321 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b z3=DinK$vl=HlH+5kiEpy*OmP)7c-Z<#if0UCxAldJY5_^EKbjze46)=fq+Z;^@So+ zR{L*p5G@hXp143L%E4rkHt&TNQ<;v5kNt%mdKI;Vst0GnNRP5=M^ diff --git a/src/main/resources/assets/orbsat/textures/items/laserDesignator.png b/src/main/resources/assets/orbsat/textures/items/laserDesignator.png new file mode 100644 index 0000000000000000000000000000000000000000..4112f7cbc41ed84b7a8e1ae7bf7667527ad17a11 GIT binary patch literal 642 zcmV-|0)737P)pHG)Y83RCwA|Q^}6gKoBj*9@~-f8Jwc*`>KTO`vwWyr*J_08zYT4 z%?XXrTo93vKyU!ECocMxWs5|rxVrmw)vH(4WLXx$nAx|}=|tP@*7x`OJ;md3zFaOo z25WrDwrwgry(L}O1qjgje5TE2Lx;mbz@<`&;qP`k+C+&R$C3SLH0nkR27^>Cm$_1@ za4MA&04^X9&a>Gpo2Dr~FvsIj{9>`_2B=o6e5agp>yGZ#w@@euJp@4TeEoxfL!ppR zM|sI)(k%gtbUH1IzmCJz&PM@}`r$H4d=h>~&Cxx*egDbF!cej}ppVS(Z&eV0zzSJ$ zhFW8>7$a*W5|Q;41Ay!GI_GjZM!f)m1;j%+^!Ui(utGmP@Mo1%U$41VtBF>GKU|(n zCOn_dc`z7or_V!?rBfc0NGQ=ga? z%6=#tDf{NGwdb0wkpyfF!yxG`qP1ErHeMJ^YXu%Co4IDaw%B}SGJPku|JY1liF>`C zl!yV8ekT$M?smIuzfpi8ap0$7veMl^Q{tPKH%xPv0SqNVC(!^(=JRxhq5nUV zk?SKc$^jMwC0+1Fwb5uWeQ_y63xFl_Gqv~Ia&}s_VfuINK#2z|; z3+;AWy43IYr4#-f;13Ikf&s$dKvZ-F?M1&)ueT4jFr1+QSI-!tU_8Co<~?7GH1=WM cL-Nl40WO^R;+n3m9smFU07*qoM6N<$f}6uAV*mgE literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/orbsat/textures/items/laserDesignator_mki.png b/src/main/resources/assets/orbsat/textures/items/laserDesignator_mki.png deleted file mode 100644 index 04d19352b26ffc92a3adda1f7871359402a905cb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 343 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b z3=DinK$vl=HlH+5kiEpy*OmP)7c-ZB=K+PDc)B=-Se%|a*^ujygNV!X|GnZL zIKt)~@M}`=w$h*Cux3xY`G%G#h(-?KuC@qnfJ zj1M9V*S@hO^DJj@5L$K0WcA8bDxL2bUffk(Ta(Nat-4QEFmcw^8+p$T@*Q9oXs)qc z_2{R?!d-7R*xzyX2%nUHJnHl&ot3L%bhwvA%0{@Jxo$r}BY}sh;cX&2W30!#=Q%~r zGV%Kve@)q9%(3B`o8mvgQk@LfKn8|&&qGV*|Ctr>d`<_)>Q%GYGK_>p{AR6TUmv}0 j-!?VpNqg