Jump to content

A Question About IHasModel


Siqhter

Recommended Posts

Recently, after reading one of my posts, someone said that I should not use IHasModel. I have also heard this in numerous other Forge discussions, and I was wondering how about exactly do I replace it? I register my blocks like this:

Spoiler

@SubscribeEvent
public static void onBlockRegister(RegistryEvent.Register<Block> event) {

    event.getRegistry().registerAll(BlockInit.BLOCKS.toArray(new Block[0]));
}

ย 


@SubscribeEvent
public static void onModelRegister(ModelRegistryEvent event) {

    for (Block block : BlockInit.BLOCKS) {
        if (block instanceof IHasModel) {
            ((IHasModel)block).registerModels();
        }
    }

}

My BlockBase class implements IHasModel. So how would I remove IHasModel? Thanks.

Link to comment
Share on other sites

58 minutes ago, Siqhter said:

So ๏ปฟhow would I remove IHasModel?

First copy the code within the method registerModels from one of your classes. Second paste it in place of the call to the method. Thirdly correct any errors, IE instead of Item.getItemFromBlock(this) do Item.getItemFromBlock(block). Finally delete the IHasModel file and remove all references to it.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

3 hours ago, Siqhter said:

Why did people do that in the first place?

Most likely: 1 youtube tutorial did it that way, and everybody blindly copies it without thinking about it.

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

ย 

1.12 -> 1.13 primer by williewillus.

ย 

1.7.10 and older versions of Minecraft are no longer supported due to it's age!ย Update to the latest version for support.

ย 

http://www.howoldisminecraft1710.today/

Link to comment
Share on other sites

10 minutes ago, larsgerrits said:

Most likely: 1 youtube tutorial did it that way, and everybody blindly copies it without thinking about it.

This. Its called cargo cult programming. "It worked for them, so it must be right."

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.ย  If you think this is the case, JUST REPORT ME.ย  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

ย 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

ย 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

1 hour ago, Draco18s said:

Its called cargo cult programming๏ปฟ.

Ok, that makes sense.ย I've also found that the majority of YouTube tutorials do this as well:

Spoiler

public static final Item MyItem = new ItemBase("my_item");

But many people have said not to.

Link to comment
Share on other sites

6 hours ago, Siqhter said:

But many people have said not to.

It's a forge thing. In a lot of other games or programming contexts it would be fine, but when you set your registry name if you do not use the overload that accepts a modid as well as the actual name, forge will have trouble knowing for what mod it is registering it for. This is due to how static initialization is done.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

51 minutes ago, Siqhter said:

Ah, thanks. Is there an example of how it should be done? Everyone seems to do it in the format of the above line I posted.

There are two ways. I'll show you the "better one" first.

@ModeventSub
class RegistryHandler {
  
  @SubscribeEvent
  static void registerBlock(Register<Block> reg) {
    Block[] BLOCKS = new Block[]{new Block(...).setRegistryName("block1").set..., new Block(...).setRegistryName("BLOCK2").set...};
    reg.register(BLOCKS);
  }
}
@ObjectHolder(MODID)
class Blocks { 
  public static final BLOCK1 = null;
  public static final BLOCK2 = null;
}

ย 

Then there is this method.

@EventBusSub
class RegistryHandler {
  @SubscribeEvent
  static void registerBlocks(Register<Block> reg) {
    BLOCKS.init();
    // Register blocks.
  }
}

class Blocks {
  
  public static Block BLOCK1;
  public static Block BLOCK2;
  
  static void init() {
    BLOCK1 = new Block(...).set...
    BLOCK2 = new Block(...).set...
  }
}

You can added them to an array or a collection and then use that to register them if you want.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

You mentioned registering them once I added them to an array, and I just wanted to see if this is acceptable.

Spoiler

public class BlockInit() {

public static final List<Block> BLOCKS = new ArrayList<Block>();

static Block BLOCK_1;
static Block BLOCK_2;

static {
    BLOCK_1 = new BLOCK_1("block_1", Material.ROCK);
    BLOCK_2 = new BLOCK_2("block_2", Material.ROCK);
}

}

Spoiler

@Mod.EventBusSubscriber
public class RegistryHandler() {

@SubscribeEvent
public static void onBlockRegister(RegistryEvent.Register<Block> event) {

    event.getRegistry().registerAll(BlockInit.BLOCKS.toArray(new Block[0]));
}

}

ย 

Link to comment
Share on other sites

56 minutes ago, Siqhter said:

static๏ปฟ ๏ปฟ{

Does not equal

ย 

2 hours ago, Animefan8888 said:

static๏ปฟ void init() {๏ปฟ

Mine is a method yours is a static initializer.

A way to test this would be to make your variables final. If you use your code it won't have a syntax error. Whereas if you use mine it will.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

1 hour ago, diesieben07 said:

but plain old preInit would also work

So I could register ItemInit.init() and BlockInit.init() in preInit, but it would be prefered to do it in:

@SubscribeEvent
public static void onBlockRegister(RegistryEvent.Register<Block> event) {

    BlockInit.init();
}
Link to comment
Share on other sites

1 hour ago, Siqhter said:

So๏ปฟ I could register๏ปฟ ItemInit.init() and BlockInit.init() in preInit, but it would be ๏ปฟprefered to do it in๏ปฟ:๏ปฟ๏ปฟ๏ปฟ

Yes.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

You should use the following method as it allows other mods to override your objects:

1) have an event subscriber class (a static event subscriber has the @EventSubscriber annotation and is automagically registered for you, and all its @SubscribeEvent methods need to be static. A non-static event subscriber needs to be registered in preInit and itโ€™s @SubscribeEvent methods need to be non-static)

2) subscribe the the appropriate registry event & instantiate your objects in that event

3) have a class with the @ObjectHolder annotation and have public static final null fields with the same names as your objects

ย 

You can see an exampleย of 1 & 2 atย https://github.com/Cadiboo/Example-Mod/blob/master/src/main/java/cadiboo/examplemod/EventSubscriber.java

and an example of 3 atย https://github.com/Cadiboo/Example-Mod/blob/master/src/main/java/cadiboo/examplemod/init/ModBlocks.java

ย 

Leading back to your original question, I register my models in a client event subscriber hereย https://github.com/Cadiboo/Example-Mod/blob/master/src/main/java/cadiboo/examplemod/client/ClientEventSubscriber.java

Instead or manually writing out all your items to register models for, you can use a loop or streams checking if the item is yours

About Me

Spoiler

My Discordย -ย Cadiboo#8887

My Website -ย Cadiboo.github.io

My Mods -ย Cadiboo.github.io/projects

My Tutorials -ย Cadiboo.github.io/tutorials

Versions below 1.14.4ย are no longer supported on this forum.ย Use the latest version toย receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com).ย A list of bad sites can be foundย here, with more information available atย stopmodreposts.org

Edit your own signature atย www.minecraftforge.net/forum/settings/signature/ย (Make sure to check its compatibility with the Dark Theme)

Link to comment
Share on other sites

There is already a BlockBase class, itโ€™s called Block. You shouldnโ€™t abuse inheritance like that - what if you want to extend a different block (stairs?).

TL;DR

yes

About Me

Spoiler

My Discordย -ย Cadiboo#8887

My Website -ย Cadiboo.github.io

My Mods -ย Cadiboo.github.io/projects

My Tutorials -ย Cadiboo.github.io/tutorials

Versions below 1.14.4ย are no longer supported on this forum.ย Use the latest version toย receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com).ย A list of bad sites can be foundย here, with more information available atย stopmodreposts.org

Edit your own signature atย www.minecraftforge.net/forum/settings/signature/ย (Make sure to check its compatibility with the Dark Theme)

Link to comment
Share on other sites

16 minutes ago, Siqhter said:

Ok, that's what I thought. I'm looking at other examples, but I'm having trouble finding where I should add the block to the๏ปฟ๏ปฟ๏ปฟ arraylist, because it's normally done in blockbase.

If you are doing the second method I posted then you could do.

list.add(BLOCK1 = new Block(...).set...);

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • BRI4D adalah pilihan tepat bagi Anda yang menginginkan pengalaman bermain slot dengan RTP tinggi dan transaksi yang akurat melalui Bank BRI. Berikut adalah beberapa alasan mengapa Anda harus memilih BRI4D: Tingkat Pengembalian (RTP) Tertinggi Kami bangga menjadi salah satu agen situs slot dengan RTP tertinggi, mencapai 99%! Ini berarti Anda memiliki peluang lebih besar untuk meraih kemenangan dalam setiap putaran permainan. Transaksi Melalui Bank BRI yang Akurat Proses deposit dan penarikan dana di BRI4D cepat, mudah, dan akurat. Kami menyediakan layanan transaksi melalui Bank BRI untuk kenyamanan Anda. Dengan begitu, Anda dapat melakukan transaksi dengan lancar dan tanpa khawatir. Beragam Pilihan Permainan BRI4D menyajikan koleksi permainan slot yang beragam dan menarik dari berbagai provider terkemuka. Mulai dari tema klasik hingga yang paling modern, Anda akan menemukan banyak pilihan permainan yang sesuai dengan selera dan preferensi Anda. ย 
    • SPARTA88 adalah pilihan tepat bagi Anda yang menginginkan agen situs slot terbaik dengan RTP tinggi dan transaksi yang mudah melalui Bank BNI. Berikut adalah beberapa alasan mengapa Anda harus memilih SPARTA88: Tingkat Pengembalian (RTP) Tinggi Kami bangga menjadi salah satu agen situs slot dengan RTP tertinggi, mencapai 98%! Ini berarti Anda memiliki peluang lebih besar untuk meraih kemenangan dalam setiap putaran permainan. Beragam Pilihan Permainan SPARTA88 menyajikan koleksi permainan slot yang beragam dan menarik dari berbagai provider terkemuka. Mulai dari tema klasik hingga yang paling modern, Anda akan menemukan banyak pilihan permainan yang sesuai dengan selera dan preferensi Anda. Kemudahan Bertransaksi Melalui Bank BNI Proses deposit dan penarikan dana di SPARTA88 cepat, mudah, dan aman. Kami menyediakan layanan transaksi melalui Bank BNI untuk kenyamanan Anda. Dengan begitu, Anda dapat melakukan transaksi dengan lancar tanpa perlu khawatir.
    • Slot Bank ALADIN atau Daftar slot Bank ALADIN bisa anda lakukan pada situs WINNING303 kapanpun dan dimanapun, Bermodalkan Hp saja anda bisa mengakses chat ke agen kami selama 24 jam full. keuntungan bergabung bersama kami di WINNING303 adalah anda akan mendapatkan bonus 100% khusus member baru yang bergabung dan deposit. Tidak perlu banyak, 5 ribu rupiah saja anda sudah bisa bermain bersama kami di WINNING303 . Tunggu apa lagi ? Segera Klik DAFTAR dan anda akan jadi Jutawan dalam semalam.
    • Slot Bank PAPUA atau Daftar slot Bank PAPUA bisa anda lakukan pada situs WINNING303 kapanpun dan dimanapun, Bermodalkan Hp saja anda bisa mengakses chat ke agen kami selama 24 jam full. keuntungan bergabung bersama kami di WINNING303 adalah anda akan mendapatkan bonus 100% khusus member baru yang bergabung dan deposit. Tidak perlu banyak, 5 ribu rupiah saja anda sudah bisa bermain bersama kami di WINNING303 . Tunggu apa lagi ? Segera Klik DAFTAR dan anda akan jadi Jutawan dalam semalam. ย 
    • SLOT MAHJONG WAYS 3 SCATTER HITAM : POLA SLOT MAHJONG 3 SCATTER HITAM HARI INI - TRIK POLA SLOT GACOR x500 SCATTER HITAM KLIK DISINI DAFTAR DISINI SLOT VVIP << KLIK DISINI DAFTAR DISINI SLOT VVIP << KLIK DISINI DAFTAR DISINI SLOT VVIP << KLIK DISINI DAFTAR DISINI SLOT VVIP << SITUS SLOT GACOR 88 MAXWIN X500 HARI INI TERBAIK DAN TERPERCAYA GAMPANG MENANG Dunia Game gacor terus bertambah besar seiring berjalannya waktu, dan sudah tentu dunia itu terus berkembang serta merta bersamaan dengan berkembangnya SLOT GACOR sebagai website number #1 yang pernah ada dan tidak pernah mengecewakan sekalipun. Dengan banyaknya member yang sudah mempercayakan untuk terus menghasilkan uang bersama dengan SLOT GACOR pastinya mereka sudah percaya untuk bermain Game online bersama dengan kami dengan banyaknya testimoni yang sudah membuktikan betapa seringnya member mendapatkan jackpot besar yang bisa mencapai ratusan juta rupiah. Best online Game website that give you more money everyday, itu lah slogan yang tepat untuk bermain bersama SLOT GACOR yang sudah pasti menang setiap harinya dan bisa menjadikan bandar ini sebagai patokan untuk mendapatkan penghasilan tambahan yang efisien dan juga sesuatu hal yang fix setiap hari nya. Kami juga mendapatkan julukan sebagai Number #1 website bocor yang berarti terus memberikan member uang asli dan jackpot setiap hari nya, tidak lupa bocor itu juga bisa diartikan dalam bentuk berbagi promosi untuk para official member yang terus setia bermain bersama dengan kami. Berbagai provider Game terus bertambah banyak setiap harinya dan terus melakukan support untuk membuat para official member terus bisa menang dan terus maxwin dalam bentuk apapun maka itu langsung untuk feel free to try yourself, play with SLOT GACOR now or never !
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.