ソラマメブログ

  

Posted by at

2007年12月13日

libsecondlifeサンプル - 画像の取得

テクスチャのUUIDを指定して、テクスチャ画像をJPEG 2000形式でAsset serverから
取得しファイル等に保存することができます。

処理の流れは以下のとおりです。
1.あらかじめテクスチャデータ処理用のハンドラを登録しておく
2.client.Assets.RequestImage関数を使ってリクエストを出す
3.ハンドラの関数でファイルや変数に保存する

以下はサンプルコードです。

#libsecondlifeのロード
import clr
clr.AddReferenceToFile("libsecondlife.dll")
import libsecondlife
import time
import os

#ログイン情報の設定
firstName = 'abcd' #苗字
lastName = 'efgh' #名前
passWord = 'ijkl' #パスワード

#イベント待ち合わせ用クラスの定義
class EventTracker:
def __init__(self):
self.data=False
def Clear(self):
self.data=False
def Set(self):
self.data=True
def Wait(self):
while not self.data:
time.sleep(0.1)
def WaitTimeout(self, s):
t = time.time()
while not self.data:
time.sleep(0.1)
if(t < time.time() - s):
print 'event timeout',
break
else:
#print 'wait,..', t, s, time.time(),
pass

#テクスチャデータ処理用のハンドラの定義
def ImageReceivedHandler(image, asset):
print 'image.ID=', image.ID, 'image.Success=', image.Success
if(image.Success):
#jp2ファイルとして出力
fp_out = open((image.ID).ToString() + '.jp2', 'wb')
for i in range(len(image.AssetData)):
fp_out.write( chr(image.AssetData[i]) )
fp_out.close()
print 'wrote ', len(image.AssetData), 'bytes'
event.Set()

#初期設定
event = EventTracker()
client = libsecondlife.SecondLife()
client.Assets.OnImageReceived += client.Assets.ImageReceivedCallback(ImageReceivedHandler)

#接続
client.Network.Login(firstName, lastName, passWord, '', '')
time.sleep(10)

#実際の処理(1つずつテクスチャを取得)
imageUuidList = [
'13c20952-8cce-27a8-8e18-05c19bc59147', #clownfish(244 Free Textures -04/04-(YadNi s Junkyard))
'dc22d88c-6e8d-0203-e637-fc1b9f4ebe0b', #BirthdayCard-PACKAGE
'f05dd50c-92f1-3575-f00c-527bcb9b46c4' #unicode-0x30-sazanami-gothic-transparent
]
for i in range(len(imageUuidList)):
event.Clear()
imageType = libsecondlife.ImageType.Baked
resultUuid = libsecondlife.LLUUID(imageUuidList[i])
requestImageRet = client.Assets.RequestImage(resultUuid, imageType, 100000.0, 0)
event.WaitTimeout(30)
time.sleep(1)

#切断
client.Network.Logout()

こんな画像が取得できます(私が配布しているメッセージカードの販売箱のテクスチャです)


・他にも、RequestImages関数としてリストで渡して複数テクスチャを一度に受け取る関数もあります。
 AssetManager.csを参照してください。



注意!
画像に関する権利は画像の作者や画像の管理者にあります。
簡単にコピーが取れるからといって、他人の画像を勝手に自分の商品として売ったりしないよう注意しましょう。

  


Posted by march at 15:31Comments(0)libsecondlife

2007年12月13日

karuzawaシムパフォーマンス収集・ダウン(復旧)

http://march.slmame.com/e72199.html でお知らせしたkaruizawaシムのパフォーマンス収集は、2:30-8:30の間停止していましたが復旧しました。
  


Posted by march at 08:37Comments(0)

2007年12月13日