C# 클래스 Tibialyzer.OutfiterOutfit

파일 보기 프로젝트 열기: Mytherin/Tibialyzer 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
addon1 bool
addon2 bool
colors int[]
facing Facing
gender Gender
mount int
outfit int

공개 메소드들

메소드 설명
FromString ( string str ) : void

Modify the current outfit based on the specified string; this is either a tibia.wikia outfiter URL or just the GET parameters of one.

GetImage ( ) : Image

Get the image of the current outfit

Rotate ( int offset ) : void
SwitchMount ( int offset ) : void
SwitchOutfit ( int offset ) : void
ToString ( ) : string

Convert the Outfit to a string, this is the same format as the GET used by the tibia.wikia outfiter

Validate ( ) : void

비공개 메소드들

메소드 설명
BlendPixels ( Bitmap main, Bitmap blend, int colors ) : Bitmap

Blends the specified colors onto "main", according to the blend pattern specified by "blend" Blend contains either (255,255,0) for colors[0]; (255,0,0) for colors [1]; (0,255,0) for colors[2]; (0,0,255) for colors[3]; or Transparent for nothing

GetAddon ( int i ) : bool
GetRegion ( Bitmap source, int x, int y ) : Bitmap

Get a 64x64 rectangle from the input image at the specified (x,y) indexes (i.e. actual coordinates used are x * 64, y * 64)

MergePixels ( Bitmap bottom, Bitmap top ) : Bitmap

Overlay the top image over the bottom image, always returns a new bitmap

메소드 상세

FromString() 공개 메소드

Modify the current outfit based on the specified string; this is either a tibia.wikia outfiter URL or just the GET parameters of one.
public FromString ( string str ) : void
str string
리턴 void

GetImage() 공개 메소드

Get the image of the current outfit
public GetImage ( ) : Image
리턴 Image

Rotate() 공개 메소드

public Rotate ( int offset ) : void
offset int
리턴 void

SwitchMount() 공개 메소드

public SwitchMount ( int offset ) : void
offset int
리턴 void

SwitchOutfit() 공개 메소드

public SwitchOutfit ( int offset ) : void
offset int
리턴 void

ToString() 공개 메소드

Convert the Outfit to a string, this is the same format as the GET used by the tibia.wikia outfiter
public ToString ( ) : string
리턴 string

Validate() 공개 메소드

public Validate ( ) : void
리턴 void

프로퍼티 상세

addon1 공개적으로 프로퍼티

public bool addon1
리턴 bool

addon2 공개적으로 프로퍼티

public bool addon2
리턴 bool

colors 공개적으로 프로퍼티

public int[] colors
리턴 int[]

facing 공개적으로 프로퍼티

public Facing facing
리턴 Facing

gender 공개적으로 프로퍼티

public Gender gender
리턴 Gender

mount 공개적으로 프로퍼티

public int mount
리턴 int

outfit 공개적으로 프로퍼티

public int outfit
리턴 int