Important information: this site is currently scheduled to go offline indefinitely by end of the year.

Xbox 360 XPR2 (noesis plugin)

Get your graphics formats figures out here! Got details for others? Post here!
chrrox
Moderator
Posts: 2602
Joined: Sun May 18, 2008 3:01 pm
Has thanked: 57 times
Been thanked: 1422 times

Xbox 360 XPR2 (noesis plugin)

Post by chrrox »

Here is a plugin for noesis that supports xpr2 files.
if you find a xpr file that does not work just upload it somewhere and let me know ill add support for it.
You do not have the required permissions to view the files attached to this post.
User avatar
dj082502
mega-veteran
mega-veteran
Posts: 202
Joined: Wed Oct 13, 2010 3:47 am
Has thanked: 37 times
Been thanked: 21 times

Re: Xbox 360 XPR2 (noesis plugin)

Post by dj082502 »

The noesis plugin is perfect.
Thank you very much!
majinmartin93
ultra-n00b
Posts: 7
Joined: Sun Feb 05, 2012 3:07 pm
Has thanked: 1 time

Re: Xbox 360 XPR2 (noesis plugin)

Post by majinmartin93 »

The contents of this post was deleted because of possible forum rules violation.
chrrox
Moderator
Posts: 2602
Joined: Sun May 18, 2008 3:01 pm
Has thanked: 57 times
Been thanked: 1422 times

Re: Xbox 360 XPR2 (noesis plugin)

Post by chrrox »

what game is it from
majinmartin93
ultra-n00b
Posts: 7
Joined: Sun Feb 05, 2012 3:07 pm
Has thanked: 1 time

Re: Xbox 360 XPR2 (noesis plugin)

Post by majinmartin93 »

chrrox wrote:what game is it from
fifa 12
chrrox
Moderator
Posts: 2602
Joined: Sun May 18, 2008 3:01 pm
Has thanked: 57 times
Been thanked: 1422 times

Re: Xbox 360 XPR2 (noesis plugin)

Post by chrrox »

pc ps3 360?
majinmartin93
ultra-n00b
Posts: 7
Joined: Sun Feb 05, 2012 3:07 pm
Has thanked: 1 time

Re: Xbox 360 XPR2 (noesis plugin)

Post by majinmartin93 »

chrrox wrote:pc ps3 360?
xbox 360, or i woudn't post it here ;)
majinmartin93
ultra-n00b
Posts: 7
Joined: Sun Feb 05, 2012 3:07 pm
Has thanked: 1 time

Re: Xbox 360 XPR2 (noesis plugin)

Post by majinmartin93 »

Opened a discussion with more info here:
viewtopic.php?f=10&t=8213
michalss
Moderator
Posts: 954
Joined: Sun Mar 27, 2011 8:42 pm
Has thanked: 10 times
Been thanked: 161 times

Re: Xbox 360 XPR2 (noesis plugin)

Post by michalss »

Quick BMS Editor GUI - simple easy to use
Goto : viewtopic.php?uid=34229&f=29&t=6797&start=0

Downloads from DropBox : https://dl.dropboxusercontent.com/u/
kostasishere
ultra-n00b
Posts: 9
Joined: Tue Mar 20, 2012 3:00 am
Has thanked: 2 times

Re: Xbox 360 XPR2 (noesis plugin)

Post by kostasishere »

Thank's a lot but it doesn't work on RE:ORC for 360 like the above msg,
here is the message from Noesis
Image
and here is another file (hunkgear_s.xpr) if it's possible for a fix
http://www.mediafire.com/?gnzfdabubc8b2j3

Edit: it works with this script from here
viewtopic.php?f=10&t=8574&start=15
from inc_noesis import *

def registerNoesisTypes():
handle = noesis.register("Hackity Hack Hack", ".xpr")
noesis.setHandlerTypeCheck(handle, noeCheckGeneric)
noesis.setHandlerLoadRGBA(handle, hackLoadRGBA)
return 1

def hackLoadRGBA(data, texList):
w = 256
h = 256
fmt = noesis.NOESISTEX_DXT5
data = rapi.imageUntile360DXT(rapi.swapEndianArray(data, 2), w, h, 8 if fmt == noesis.NOESISTEX_DXT1 else 16)
texList.append(NoeTexture("hacktex", w, h, data, fmt))
return 1
but few files are buggy like this one
http://www.mediafire.com/?aou3hlj9qboy2h3
Gh0stBlade
Moderator
Posts: 719
Joined: Mon Jul 05, 2010 8:55 pm
Has thanked: 20 times
Been thanked: 496 times

Re: Xbox 360 XPR2 (noesis plugin)

Post by Gh0stBlade »

How can i fix this?

Image
Click the thanks button if I helped!
MrAdults
Moderator
Posts: 1007
Joined: Mon Mar 23, 2009 2:57 am
Has thanked: 44 times
Been thanked: 505 times

Re: Xbox 360 XPR2 (noesis plugin)

Post by MrAdults »

Like I said in the ORC thread the old ssg script could produce corrupt data. Go get the new script and reextract with that.
Kamillho
veteran
Posts: 84
Joined: Sat Jan 22, 2011 6:19 pm
Has thanked: 14 times
Been thanked: 4 times

Re: Xbox 360 XPR2 (noesis plugin)

Post by Kamillho »

MrAdults wrote:Like I said in the ORC thread the old ssg script could produce corrupt data. Go get the new script and reextract with that.
But it doesn't work with new script also
Image
MrAdults
Moderator
Posts: 1007
Joined: Mon Mar 23, 2009 2:57 am
Has thanked: 44 times
Been thanked: 505 times

Re: Xbox 360 XPR2 (noesis plugin)

Post by MrAdults »

Different issue, your size and/or format is wrong.
Kamillho
veteran
Posts: 84
Joined: Sat Jan 22, 2011 6:19 pm
Has thanked: 14 times
Been thanked: 4 times

Re: Xbox 360 XPR2 (noesis plugin)

Post by Kamillho »

I used
def hackLoadRGBA(data, texList):
w = 256/512/1024/2048
h = 256/512/1024/2048
fmt = noesis.NOESISTEX_DXT5
data = rapi.imageUntile360DXT(rapi.swapEndianArray(data, 2), w, h, 8 if fmt == noesis.NOESISTEX_DXT1 else 16)
texList.append(NoeTexture("hacktex", w, h, data, fmt))
return 1

And always diffuse are wrong or not reading at Noesis :/
Post Reply