palette.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /* -*- mode: c; tab-width: 4; c-basic-offset: 4; c-file-style: "linux" -*- */
  2. //
  3. // Copyright (c) 2009-2011, Wei Mingzhi <whistler_wmz@users.sf.net>.
  4. // Copyright (c) 2011-2017, SDLPAL development team.
  5. // All rights reserved.
  6. //
  7. // This file is part of SDLPAL.
  8. //
  9. // SDLPAL is free software: you can redistribute it and/or modify
  10. // it under the terms of the GNU General Public License as published by
  11. // the Free Software Foundation, either version 3 of the License, or
  12. // (at your option) any later version.
  13. //
  14. // This program is distributed in the hope that it will be useful,
  15. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. // GNU General Public License for more details.
  18. //
  19. // You should have received a copy of the GNU General Public License
  20. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. //
  22. #ifndef PALETTE_H
  23. #define PALETTE_H
  24. #include "common.h"
  25. PAL_C_LINKAGE_BEGIN
  26. SDL_Color *
  27. PAL_GetPalette(
  28. INT iPaletteNum,
  29. BOOL fNight
  30. );
  31. VOID
  32. PAL_SetPalette(
  33. INT iPaletteNum,
  34. BOOL fNight
  35. );
  36. VOID
  37. PAL_FadeOut(
  38. INT iDelay
  39. );
  40. VOID
  41. PAL_FadeIn(
  42. INT iPaletteNum,
  43. BOOL fNight,
  44. INT iDelay
  45. );
  46. VOID
  47. PAL_SceneFade(
  48. INT iPaletteNum,
  49. BOOL fNight,
  50. INT iStep
  51. );
  52. VOID
  53. PAL_PaletteFade(
  54. INT iPaletteNum,
  55. BOOL fNight,
  56. BOOL fUpdateScene
  57. );
  58. VOID
  59. PAL_ColorFade(
  60. INT iDelay,
  61. BYTE bColor,
  62. BOOL fFrom
  63. );
  64. VOID
  65. PAL_FadeToRed(
  66. VOID
  67. );
  68. PAL_C_LINKAGE_END
  69. #endif