00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 package com.realtime.crossfire.jxclient.server.crossfire.messages;
00023
00028 public interface Map2 {
00029
00033 int NUM_LAYERS = 10;
00034
00038 int COORD_OFFSET = 15;
00039
00043 int TYPE_COORDINATE = 0;
00044
00048 int TYPE_SCROLL = 1;
00049
00053 int COORD_CLEAR_SPACE = 0;
00054
00058 int COORD_DARKNESS = 1;
00059
00063 int COORD_LAYER0 = 0x10;
00064
00068 int COORD_LAYER1 = 0x11;
00069
00073 int COORD_LAYER2 = 0x12;
00074
00078 int COORD_LAYER3 = 0x13;
00079
00083 int COORD_LAYER4 = 0x14;
00084
00088 int COORD_LAYER5 = 0x15;
00089
00093 int COORD_LAYER6 = 0x16;
00094
00098 int COORD_LAYER7 = 0x17;
00099
00103 int COORD_LAYER8 = 0x18;
00104
00108 int COORD_LAYER9 = 0x19;
00109
00113 int FACE_ANIMATION = 0x8000;
00114
00118 int ANIM_NORMAL = 0;
00119
00123 int ANIM_RANDOM = 1;
00124
00129 int ANIM_SYNC = 2;
00130
00134 int ANIM_MASK = 0x1FFF;
00135
00139 int ANIM_TYPE_SHIFT = 13;
00140
00145 int ANIM_TYPE_MASK = 3;
00146
00147 }