rtflic.cpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. ////////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2016 RWS Inc, All Rights Reserved
  4. //
  5. // This program is free software; you can redistribute it and/or modify
  6. // it under the terms of version 2 of the GNU General Public License as published by
  7. // the Free Software Foundation
  8. //
  9. // This program is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU General Public License along
  15. // with this program; if not, write to the Free Software Foundation, Inc.,
  16. // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. //
  18. //////////////////////////////////////////////////////////////////////////////
  19. //
  20. // RTFLIC.CPP
  21. //
  22. // History:
  23. // 10/30/95 JMI Started.
  24. //
  25. // 11/06/95 JMI Added sPixelsModified and sColorsModified flags to mark
  26. // when these changes occur. Also added actual FLX decomp-
  27. // ression using CRamFlx's new static functions.
  28. //
  29. //////////////////////////////////////////////////////////////////////////////
  30. //
  31. // This class is designed to receive FLX data in real time and decompress it
  32. // to a specific buffer or buffers on a channel basis.
  33. //
  34. //////////////////////////////////////////////////////////////////////////////
  35. //////////////////////////////////////////////////////////////////////////////
  36. // C Headers.
  37. //////////////////////////////////////////////////////////////////////////////
  38. //////////////////////////////////////////////////////////////////////////////
  39. // Blue Headers.
  40. //////////////////////////////////////////////////////////////////////////////
  41. #include "System.h"
  42. #include "bdebug.h"
  43. //////////////////////////////////////////////////////////////////////////////
  44. // Green Headers.
  45. //////////////////////////////////////////////////////////////////////////////
  46. #include "rttypes.h"
  47. #include "rtflic.h"
  48. #include "ramflx.h"
  49. //////////////////////////////////////////////////////////////////////////////
  50. // Orange Headers.
  51. //////////////////////////////////////////////////////////////////////////////
  52. //////////////////////////////////////////////////////////////////////////////
  53. // Yellow Headers.
  54. //////////////////////////////////////////////////////////////////////////////
  55. //////////////////////////////////////////////////////////////////////////////
  56. // Module specific macros.
  57. //////////////////////////////////////////////////////////////////////////////
  58. // Types of chunks.
  59. #define FLX_CHUNK_HEADER 0
  60. #define FLX_CHUNK_DATA 1
  61. //////////////////////////////////////////////////////////////////////////////
  62. // Module specific typedefs.
  63. //////////////////////////////////////////////////////////////////////////////
  64. //////////////////////////////////////////////////////////////////////////////
  65. // Module specific (static) variables.
  66. //////////////////////////////////////////////////////////////////////////////
  67. //////////////////////////////////////////////////////////////////////////////
  68. // Construction/Destruction Functions.
  69. //////////////////////////////////////////////////////////////////////////////
  70. //////////////////////////////////////////////////////////////////////////////
  71. //
  72. // Default constructor.
  73. //
  74. //////////////////////////////////////////////////////////////////////////////
  75. CRtFlic::CRtFlic()
  76. {
  77. Set();
  78. }
  79. //////////////////////////////////////////////////////////////////////////////
  80. //
  81. // Destructor.
  82. //
  83. //////////////////////////////////////////////////////////////////////////////
  84. CRtFlic::~CRtFlic()
  85. {
  86. Reset();
  87. }
  88. //////////////////////////////////////////////////////////////////////////////
  89. // Internal Functions.
  90. //////////////////////////////////////////////////////////////////////////////
  91. //////////////////////////////////////////////////////////////////////////////
  92. //
  93. // Sets variables w/o regard to current values.
  94. //
  95. //////////////////////////////////////////////////////////////////////////////
  96. void CRtFlic::Set(void)
  97. {
  98. m_pdispatch = NULL;
  99. for (short i = 0; i < MAX_VID_CHANNELS; i++)
  100. {
  101. m_aflxhdrs[i].sNumFrames = 0;
  102. m_aflxhdrs[i].pImage = NULL;
  103. m_aflxhdrs[i].callbackHeader = NULL;
  104. m_aflxhdrs[i].callbackBefore = NULL;
  105. m_aflxhdrs[i].callbackAfter = NULL;
  106. }
  107. }
  108. //////////////////////////////////////////////////////////////////////////////
  109. //
  110. // Resets variables. Performs deallocation if necessary.
  111. //
  112. //////////////////////////////////////////////////////////////////////////////
  113. void CRtFlic::Reset(void)
  114. {
  115. }
  116. //////////////////////////////////////////////////////////////////////////////
  117. //
  118. // Use handler for RtFlic buffers.
  119. // Returns RET_FREE if done with data on return, RET_DONTFREE otherwise.
  120. //
  121. //////////////////////////////////////////////////////////////////////////////
  122. short CRtFlic::Use( UCHAR* puc, long lSize, USHORT usType, UCHAR ucFlags,
  123. long lTime)
  124. {
  125. short sRes = RET_FREE; // Always free.
  126. short sError = 0;
  127. ASSERT(usType == RT_TYPE_FLIC);
  128. ASSERT(puc != NULL);
  129. CNFile file;
  130. file.Open(puc, lSize, ENDIAN_LITTLE);
  131. // Read values common to all chunks.
  132. // Read flx ID.
  133. USHORT usFlxId;
  134. file.Read (&usFlxId);
  135. // Make sure we're in range.
  136. ASSERT(usFlxId < MAX_VID_CHANNELS);
  137. // Get corresponding header.
  138. PFLX_RT_HDR pflxhdr = &m_aflxhdrs[usFlxId];
  139. // If this is a header chunk . . .
  140. if (ucFlags & RT_FLAG_INIT)
  141. {
  142. // Handle header chunk.
  143. file.Read(&pflxhdr->sNumFrames);
  144. file.Read(&pflxhdr->sWidth);
  145. file.Read(&pflxhdr->sHeight);
  146. file.Read(&pflxhdr->sDepth);
  147. file.Read(&pflxhdr->lMilliPerFrame);
  148. file.Read(&pflxhdr->sNoDelta);
  149. file.Read(&pflxhdr->sTransparent);
  150. file.Read(&pflxhdr->sX);
  151. file.Read(&pflxhdr->sY);
  152. // Verify we didn't read too much.
  153. ASSERT(file.Error() == FALSE);
  154. // Initialize frame counter.
  155. pflxhdr->sCurFrame = 0;
  156. pflxhdr->sPixelsModified = FALSE;
  157. pflxhdr->sColorsModified = FALSE;
  158. // Default to one frame's worth of lag before skipping frames.
  159. pflxhdr->lMaxLag = pflxhdr->lMilliPerFrame;
  160. // If there is a callback for the header . . .
  161. if (pflxhdr->callbackHeader != NULL)
  162. {
  163. // Pass user all info.
  164. (*pflxhdr->callbackHeader)(this, pflxhdr);
  165. }
  166. }
  167. else
  168. {
  169. // If there is a callback for before decompression . . .
  170. if (pflxhdr->callbackBefore != NULL)
  171. {
  172. // Pass user all info.
  173. (*pflxhdr->callbackBefore)(this, pflxhdr);
  174. }
  175. // The rest of this chunk is regular old FLX data!
  176. // Decompress into image if supplied.
  177. if (pflxhdr->pImage != NULL)
  178. {
  179. ASSERT(pflxhdr->pImage->pData != NULL);
  180. ASSERT(pflxhdr->pImage->pPalette != NULL);
  181. ASSERT(pflxhdr->pImage->pPalette->pData != NULL);
  182. short sDecompress = TRUE;
  183. // If we this flx contains no deltas and this is not a key frame . . .
  184. if (pflxhdr->sNoDelta == TRUE && (ucFlags & RT_FLAG_TAG == 0))
  185. {
  186. // If we've exceeded the maximum lag . . .
  187. if (m_pdispatch->GetTime() - lTime > pflxhdr->lMaxLag)
  188. {
  189. sDecompress = FALSE;
  190. }
  191. }
  192. if (sDecompress == TRUE)
  193. {
  194. if (CRamFlx::DoReadFrame(pflxhdr->pImage, &file,
  195. &pflxhdr->sPixelsModified,
  196. &pflxhdr->sColorsModified) == 0)
  197. {
  198. // Success.
  199. // If there is a callback for after decompression . . .
  200. if (pflxhdr->callbackAfter != NULL)
  201. {
  202. // Pass user all info.
  203. (*pflxhdr->callbackAfter)(this, pflxhdr);
  204. }
  205. // Increment frame count.
  206. pflxhdr->sCurFrame++;
  207. }
  208. else
  209. {
  210. TRACE("Use(): FLX decompression failed.\n");
  211. }
  212. }
  213. }
  214. else
  215. {
  216. TRACE("Use(): Data with no associated image.\n");
  217. }
  218. // Verify we didn't read too much.
  219. ASSERT(file.Error() == FALSE);
  220. }
  221. file.Close();
  222. return sRes;
  223. }
  224. //////////////////////////////////////////////////////////////////////////////
  225. //
  226. // Callback dispatcher (calls the implied this version).
  227. // (static)
  228. //
  229. //////////////////////////////////////////////////////////////////////////////
  230. short CRtFlic::UseStatic( UCHAR* puc, long lSize, USHORT usType,
  231. UCHAR ucFlags, long lTime, long l_pRtFlic)
  232. {
  233. return ((CRtFlic*)l_pRtFlic)->Use(puc, lSize, usType, ucFlags, lTime);
  234. }
  235. //////////////////////////////////////////////////////////////////////////////
  236. // Methods.
  237. //////////////////////////////////////////////////////////////////////////////
  238. //////////////////////////////////////////////////////////////////////////////
  239. //
  240. // Set dispatcher.
  241. //
  242. //////////////////////////////////////////////////////////////////////////////
  243. void CRtFlic::SetDispatcher(CDispatch* pdispatch)
  244. {
  245. if (m_pdispatch != NULL)
  246. {
  247. m_pdispatch->SetDataHandler(RT_TYPE_FLIC, NULL);
  248. }
  249. m_pdispatch = pdispatch;
  250. if (m_pdispatch != NULL)
  251. {
  252. m_pdispatch->SetDataHandler(RT_TYPE_FLIC, UseStatic);
  253. m_pdispatch->SetUserVal(RT_TYPE_FLIC, (long)this);
  254. }
  255. }
  256. //////////////////////////////////////////////////////////////////////////////
  257. //
  258. // Sets callback(s) called on channel header receipt.
  259. //
  260. //////////////////////////////////////////////////////////////////////////////
  261. void CRtFlic::SetCallbackHeader(RTFLIC_CALL callback)
  262. {
  263. for (short i = 0; i < MAX_VID_CHANNELS; i++)
  264. {
  265. SetCallbackHeader(callback, i);
  266. }
  267. }
  268. //////////////////////////////////////////////////////////////////////////////
  269. //
  270. // Sets callback(s) called on channel header receipt.
  271. //
  272. //////////////////////////////////////////////////////////////////////////////
  273. void CRtFlic::SetCallbackHeader(RTFLIC_CALL callback, short sChannel)
  274. {
  275. m_aflxhdrs[sChannel].callbackHeader = callback;
  276. }
  277. //////////////////////////////////////////////////////////////////////////////
  278. //
  279. // Sets callback(s) called before decompression.
  280. //
  281. //////////////////////////////////////////////////////////////////////////////
  282. void CRtFlic::SetCallbackBefore(RTFLIC_CALL callback)
  283. {
  284. for (short i = 0; i < MAX_VID_CHANNELS; i++)
  285. {
  286. SetCallbackBefore(callback, i);
  287. }
  288. }
  289. //////////////////////////////////////////////////////////////////////////////
  290. //
  291. // Sets callback(s) called before decompression.
  292. //
  293. //////////////////////////////////////////////////////////////////////////////
  294. void CRtFlic::SetCallbackBefore(RTFLIC_CALL callback, short sChannel)
  295. {
  296. m_aflxhdrs[sChannel].callbackBefore = callback;
  297. }
  298. //////////////////////////////////////////////////////////////////////////////
  299. //
  300. // Sets callback(s) called after decompression.
  301. //
  302. //////////////////////////////////////////////////////////////////////////////
  303. void CRtFlic::SetCallbackAfter(RTFLIC_CALL callback)
  304. {
  305. for (short i = 0; i < MAX_VID_CHANNELS; i++)
  306. {
  307. SetCallbackAfter(callback, i);
  308. }
  309. }
  310. //////////////////////////////////////////////////////////////////////////////
  311. //
  312. // Sets callback(s) called after decompression.
  313. //
  314. //////////////////////////////////////////////////////////////////////////////
  315. void CRtFlic::SetCallbackAfter(RTFLIC_CALL callback, short sChannel)
  316. {
  317. m_aflxhdrs[sChannel].callbackAfter = callback;
  318. }
  319. //////////////////////////////////////////////////////////////////////////////
  320. // EOF
  321. //////////////////////////////////////////////////////////////////////////////