示例#1
0
 public void Start(int nチャンネル, CDTX.CBMP bmp, CDTX.CBMPTEX bmptex, int n開始サイズW, int n開始サイズH, int n終了サイズW, int n終了サイズH, int n画像側開始位置X, int n画像側開始位置Y, int n画像側終了位置X, int n画像側終了位置Y, int n表示側開始位置X, int n表示側開始位置Y, int n表示側終了位置X, int n表示側終了位置Y, int n総移動時間ms, int n移動開始時刻ms)
 {
     for (int i = 0; i < 8; i++)
     {
         if (nチャンネル == this.nChannel[i])
         {
             this.stLayer[i].rBMP           = bmp;
             this.stLayer[i].rBMPTEX        = bmptex;
             this.stLayer[i].sz開始サイズ.Width  = n開始サイズW;
             this.stLayer[i].sz開始サイズ.Height = n開始サイズH;
             this.stLayer[i].sz終了サイズ.Width  = n終了サイズW;
             this.stLayer[i].sz終了サイズ.Height = n終了サイズH;
             this.stLayer[i].pt画像側開始位置.X    = n画像側開始位置X;
             this.stLayer[i].pt画像側開始位置.Y    = n画像側開始位置Y;
             this.stLayer[i].pt画像側終了位置.X    = n画像側終了位置X;
             this.stLayer[i].pt画像側終了位置.Y    = n画像側終了位置Y;
             this.stLayer[i].pt表示側開始位置.X    = n表示側開始位置X;
             this.stLayer[i].pt表示側開始位置.Y    = n表示側開始位置Y;
             this.stLayer[i].pt表示側終了位置.X    = n表示側終了位置X;
             this.stLayer[i].pt表示側終了位置.Y    = n表示側終了位置Y;
             this.stLayer[i].n総移動時間ms       = n総移動時間ms;
             this.stLayer[i].n移動開始時刻ms      = (n移動開始時刻ms != -1) ? n移動開始時刻ms : CDTXMania.Timer.nCurrentTime;
         }
     }
 }
示例#2
0
        // メソッド

        public void ChangeScope(int nチャンネル, CDTX.CBMP bmp, CDTX.CBMPTEX bmptex)
        {
            for (int i = 0; i < 8; i++)
            {
                if (nチャンネル == this.nChannel[i])
                {
                    this.stLayer[i].rBMP    = bmp;
                    this.stLayer[i].rBMPTEX = bmptex;
                    return;
                }
            }
        }
示例#3
0
 public void Start(int nチャンネル, CDTX.CBMP bmp, CDTX.CBMPTEX bmptex, int n開始サイズW, int n開始サイズH, int n終了サイズW, int n終了サイズH, int n画像側開始位置X, int n画像側開始位置Y, int n画像側終了位置X, int n画像側終了位置Y, int n表示側開始位置X, int n表示側開始位置Y, int n表示側終了位置X, int n表示側終了位置Y, int n総移動時間ms)
 {
     this.Start(nチャンネル, bmp, bmptex, n開始サイズW, n開始サイズH, n終了サイズW, n終了サイズH, n画像側開始位置X, n画像側開始位置Y, n画像側終了位置X, n画像側終了位置Y, n表示側開始位置X, n表示側開始位置Y, n表示側終了位置X, n表示側終了位置Y, n総移動時間ms, -1);
 }