Jump to content

Recommended Posts

Posted

So I noticed that in 1.9.4 what was Items.apple in 1.9 now needs to be changed to Items.APPLE in 1.9.4

 

My question is, do we really need to go file by file on our mod fixing all the Items or Blocks we used and changing the capitalization on the names, or is there another way of doing this?

 

PS: I'm using Eclipse

Posted

You can use search and replace.

Well, yes I thought of that, the problem is that I use almost all vanilla items/blocks somewhere in my code, so I would have to literally search and replace for all the items/blocks in game.

 

I'm up to 1200 errors found on my project. It was 1500 earlier, so I guess I will slowly go file by file fixing it.

 

Thanks :D

Posted

I used a regex find/replace to go through my entire mod and replace all the occurences. I'm not sure if it's possible in Eclipse, but it is in IDEA.

 

This is about what I used for blocks/items.

 

Find:

(Blocks|Items)\.(\p{L})

Replace:

$1.\U$2\E

Don't make mods if you don't know Java.

Check out my website: http://shadowfacts.net

Developer of many mods

Posted

I used a regex find/replace to go through my entire mod and replace all the occurences. I'm not sure if it's possible in Eclipse, but it is in IDEA.

 

This is about what I used for blocks/items.

 

Find:

(Blocks|Items)\.(\p{L})

Replace:

$1.\U$2\E

 

Thanks, gonna try it  :)

Posted

You can also use Notepad++ for "Find and Replace in Files"

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.

Posted

I used a regex find/replace to go through my entire mod and replace all the occurences. I'm not sure if it's possible in Eclipse, but it is in IDEA.

 

This is about what I used for blocks/items.

 

Find:

(Blocks|Items)\.(\p{L})

Replace:

$1.\U$2\E

 

Working on Notepad++ but it's only replacing the first letter and making it Capital. Gonna check how the expression is built and see if I can figure out how to modify it, to Capitalize the whole word. Thanks a lot.

Posted

Whoops, there should be a + after the letter matcher in the find expression.

 

This is the new find expression:

(Blocks|Items)\.([\p{L}|_]+)

 

It now matches more than the first character and should capture the entire name if the name contains an underscore.

 

The replace expression should be fine.

Don't make mods if you don't know Java.

Check out my website: http://shadowfacts.net

Developer of many mods

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



×
×
  • Create New...

Important Information

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