Exemple #1
0
        private bool StopIfScrambleKeyBlockFound(LuigiDataBlockType desiredBlockType, LuigiDataBlockType currentBlockType)
        {
            var stop = (currentBlockType == LuigiDataBlockType.SetScrambleKey) && (desiredBlockType != LuigiDataBlockType.SetScrambleKey);

            return(stop);
        }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="INTV.Core.Model.LuigiDataBlock"/> class.
 /// </summary>
 /// <param name="type">The kind of block.</param>
 protected LuigiDataBlock(LuigiDataBlockType type)
 {
     Type = type;
     _deserializeByteCount = -1;
 }