Source

ThaiSolarCal.js

  1. /*
  2. * ThaiSolarCal.js - Represent a Thai solar calendar object.
  3. *
  4. * Copyright © 2013-2015, 2018, JEDLSoft
  5. *
  6. * Licensed under the Apache License, Version 2.0 (the "License");
  7. * you may not use this file except in compliance with the License.
  8. * You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. *
  16. * See the License for the specific language governing permissions and
  17. * limitations under the License.
  18. */
  19. var MathUtils = require("./MathUtils.js");
  20. var Calendar = require("./Calendar.js");
  21. var GregorianCal = require("./GregorianCal.js");
  22. /**
  23. * @class
  24. * Construct a new Thai solar calendar object. This class encodes information about
  25. * a Thai solar calendar.<p>
  26. *
  27. * @param {Object=} options Options governing the construction of this instance
  28. * @constructor
  29. * @extends Calendar
  30. */
  31. var ThaiSolarCal = function(options) {
  32. this.type = "thaisolar";
  33. if (options && typeof(options.onLoad) === "function") {
  34. options.onLoad(this);
  35. }
  36. };
  37. ThaiSolarCal.prototype = new GregorianCal({noinstance: true});
  38. ThaiSolarCal.prototype.parent = GregorianCal;
  39. ThaiSolarCal.prototype.constructor = ThaiSolarCal;
  40. /**
  41. * Return true if the given year is a leap year in the Thai solar calendar.
  42. * The year parameter may be given as a number, or as a ThaiSolarDate object.
  43. * @param {number|ThaiSolarDate} year the year for which the leap year information is being sought
  44. * @return {boolean} true if the given year is a leap year
  45. */
  46. ThaiSolarCal.prototype.isLeapYear = function(year) {
  47. var y = (typeof(year) === 'number' ? year : year.getYears());
  48. y -= 543;
  49. var centuries = MathUtils.mod(y, 400);
  50. return (MathUtils.mod(y, 4) === 0 && centuries !== 100 && centuries !== 200 && centuries !== 300);
  51. };
  52. /* register this calendar for the factory method */
  53. Calendar._constructors["thaisolar"] = ThaiSolarCal;
  54. module.exports = ThaiSolarCal;