Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

Hello, I have a little issue when I use the line

gradlew build

 

In my code I use many ArrayList, some of them contains int but when gradle compile the code he see a fail because he see the int as object (but the code works on Eclipse). So I ask you if we can dodge the check of the int by gradle and how ?

 

I give you the gradle.log

https://www.dropbox.com/s/5v39amoejcz8r6h/gradle.log?dl=0

 

Sorry for my English...

 

Thank for your help.

Vebert

  • Author

I will just show on class concerned by this Error because lot of the others class work with the same canvas.

 

public class PacketShema implements IMessage{
private String text;

    public PacketShema() { }

    public PacketShema(int x,int y,int z, int id) {
        this.text = x + ":" + y + ":" + z + ":" + id;
    }

    @Override
    public void fromBytes(ByteBuf buf) {
        text = ByteBufUtils.readUTF8String(buf); // this class is very useful in general for writing more complex objects
    }

    @Override
    public void toBytes(ByteBuf buf) {
        ByteBufUtils.writeUTF8String(buf, text);
    }

    public static class PacketHandler implements IMessageHandler<PacketShema, IMessage> {
        
        @Override
        public IMessage onMessage(PacketShema message, MessageContext ctx) {
            ArrayList coord = tocoord(message.text);
            World world = ctx.getServerHandler().playerEntity.worldObj;
            Shematic.Operate(world,(int) coord.get(0),(int) coord.get(1),(int) coord.get(2),(short) coord.get(3));
            return null; // no response in this case
        }
        
        public ArrayList tocoord(String str){
        	ArrayList ret = new ArrayList();
        	String[] list = str.split(":");
        	ret.add(Integer.parseInt(list[0]));
        	ret.add(Integer.parseInt(list[1]));
        	ret.add(Integer.parseInt(list[2]));
        	ret.add(Short.parseShort(list[3]));
        	return ret;
        }
    }
}

 

Sorry I haven't comment this class but it is very easy so I think you will understood, error in the build appear on

Shematic.Operate(world,(int) coord.get(0),(int) coord.get(1),(int) coord.get(2),(short) coord.get(3));

when I said coord.get(0) where type int.

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.