Changes between Initial Version and Version 1 of Biome_Reference


Ignore:
Timestamp:
Feb 23, 2008, 4:18:58 AM (16 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Biome_Reference

    v1 v1  
     1== Biome() ==
     2The Biome object is a parent that gets extended by predefined or user-defined biomes. It's basically an interface that Biome objects should follow. Biomes are a higher abstraction of other objects such as Surface and Objects.
     3[[BR]][[BR]]
     4==== !AlpineBiome(), !TemperateBiome(), !SteppeBiome(), !MediterraneanBiome(), !SavannaBiome(), !DesertBiome(), !SemiAridBiome(), !PolarBiome(), !TropicBiome() ====
     5This is the constructor. It currently does nothing except initialize the object.
     6==== getLand() ====
     7This method returns the predefined land object for the biome.
     8==== getWater() ====
     9This method returns the predefined water object for the biome.
     10==== getGeology() ====
     11This method returns the predefined geology object for the biome.
     12==== getTrees() ====
     13This method returns the predefined tree object for the biome.
     14==== getPlants() ====
     15This method returns the predefined plant object for the biome.
     16==== getFauna() ====
     17This method returns the predefined fauna object for the biome.
     18[[BR]][[BR]]
     19
     20== !LandBiome() ==
     21The !LandBiome object is a container of terrain which is used when getLand is called within a Biome object.
     22[[BR]][[BR]]
     23 * !AlpineLandBiome(), !TemperateLandBiome(), !SteppeLandBiome(), !MediterraneanLandBiome(), !SavannaLandBiome(), !DesertLandBiome(), !SemiAridLandBiome(), !PolarLandBiome(), !TropicLandBiome()
     24 * hasDirt()
     25 * hasGrass()
     26 * hasSand()
     27 * hasSnow()
     28 * hasForest()
     29 * hasForestFloor()
     30 * hasRoad()
     31 * hasFarmland()
     32 * hasBeach()
     33 * getDirt()
     34 * getGrass()
     35 * getSand()
     36 * getSnow()
     37 * getForest()
     38 * getForestFloor()
     39 * getRoad()
     40 * getFarmland()
     41 * getBeach()
     42 * getAny()
     43 * addDirt()
     44 * addGrass()
     45 * addSand()
     46 * addSnow()
     47 * addForest()
     48 * addForestFloor()
     49 * addRoad()
     50 * addFarmland()
     51 * addBeach()
     52[[BR]]
     53
     54== !WaterBiome() ==
     55The !WaterBiome object is a container of Water surfaces which are used when getWater is called within a Biome object.
     56[[BR]][[BR]]
     57 * !AlpineWaterBiome(), !TemperateWaterBiome(), !SteppeWaterBiome(), !MediterraneanWaterBiome(), !SavannaWaterBiome(), !DesertWaterBiome(), !SemiAridWaterBiome(), !PolarWaterBiome(), !TropicWaterBiome()
     58 * hasCoral()
     59 * hasRock()
     60 * hasPebble()
     61 * hasSand()
     62 * hasIce()
     63 * hasRiver()
     64 * hasShallow()
     65 * hasNormal()
     66 * hasDeep()
     67 * hasFordShallow()
     68 * hasFordRocky()
     69 * hasMarsh()
     70 * hasSwamp()
     71 * getCoral()
     72 * getRock()
     73 * getPebble()
     74 * getSand()
     75 * getIce()
     76 * getRiver()
     77 * getShallow()
     78 * getNormal()
     79 * getDeep()
     80 * getFordShallow()
     81 * getFordRocky()
     82 * getMarsh()
     83 * getSwamp()
     84 * getAny()
     85 * addCoral()
     86 * addRock()
     87 * addPebble()
     88 * addSand()
     89 * addIce()
     90 * addRiver()
     91 * addShallow()
     92 * addNormal()
     93 * addDeep()
     94 * addFordShallow()
     95 * addFordRocky()
     96 * addMarsh()
     97 * addSwamp()
     98[[BR]]
     99
     100== !FaunaBiome() ==
     101The !FaunaBiome object is a container of animals which are used when getFauna is called within a Biome object.
     102[[BR]][[BR]]
     103 * !AlpineFaunaBiome(), !TemperateFaunaBiome(), !SteppeFaunaBiome(), !MediterraneanFaunaBiome(), !SavannaFaunaBiome(), !DesertFaunaBiome(), !SemiAridFaunaBiome(), !PolarFaunaBiome(), !TropicFaunaBiome()
     104 * getCosmetic()
     105 * getBreeding()
     106 * getDomestic()
     107 * getRisky()
     108 * getRiskyConsumable()
     109 * getPassiveConsumable()
     110 * getCosmetic()
     111 * getBreeding()
     112 * getDomestic()
     113 * getRisky()
     114 * getRiskyConsumable()
     115 * getPassiveConsumable()
     116 * getAny()
     117 * addCosmetic()
     118 * addBreeding()
     119 * addDomestic()
     120 * addRisky()
     121 * addRiskyConsumable()
     122 * addPassiveConsumable()
     123[[BR]]
     124
     125== !PlantBiome() ==
     126The !PlantBiome object is a container of Plants which are used when getPlants is called within a Biome object.
     127[[BR]][[BR]]
     128 * !AlpinePlantBiome(), !TemperatePlantBiome(), !SteppePlantBiome(), !MediterraneanPlantBiome(), !SavannaPlantBiome(), !DesertPlantBiome(), !SemiAridPlantBiome(), !PolarPlantBiome(), !TropicPlantBiome()
     129 * hasAquatic()
     130 * hasBush()
     131 * hasCacti()
     132 * hasFern()
     133 * hasFlower()
     134 * hasGrass()
     135 * getAquatic()
     136 * getBush()
     137 * getCacti()
     138 * getFern()
     139 * getFlower()
     140 * getGrass()
     141 * getAny()
     142 * addAquatic()
     143 * addBush()
     144 * addCacti()
     145 * addFern()
     146 * addFlower()
     147 * addGrass()
     148[[BR]]
     149
     150== !TreeBiome() ==
     151The !TreeBiome object is a container of Trees which are used when getTrees is called within a Biome object.
     152[[BR]][[BR]]
     153 * !AlpineTreeBiome(), !TemperateTreeBiome(), !SteppeTreeBiome(), !MediterraneanTreeBiome(), !SavannaTreeBiome(), !DesertTreeBiome(), !SemiAridTreeBiome(), !PolarTreeBiome(), !TropicTreeBiome()
     154 * hasPalm()
     155 * hasConiferEvergreen()
     156 * hasConiferDeciduous()
     157 * hasLeafedEvergreen()
     158 * hasLeafedDeciduous()
     159 * hasDead()
     160 * getPalm()
     161 * getConiferEvergreen()
     162 * getConiferDeciduous()
     163 * getLeafedEvergreen()
     164 * getLeafedDeciduous()
     165 * getDead()
     166 * getAny()
     167 * addPalm()
     168 * addConiferEvergreen()
     169 * addConiferDeciduous()
     170 * addLeafedEvergreen()
     171 * addLeafedDeciduous()
     172 * addDead()
     173[[BR]]
     174
     175== !GeoBiome() ==
     176The !GeoBiome object is a container of geological entities which are used when getGeology is called within a Biome object.
     177[[BR]][[BR]]
     178 * !AlpineGeoBiome(), !TemperateGeoBiome(), !SteppeGeoBiome(), !MediterraneanGeoBiome(), !SavannaGeoBiome(), !DesertGeoBiome(), !SemiAridGeoBiome(), !PolarGeoBiome(), !TropicGeoBiome()
     179 * hasSettlement()
     180 * hasFloatingIce()
     181 * hasMountainPeak()
     182 * hasWaterFeature()
     183 * hasLowCliff()
     184 * hasHighCliff()
     185 * hasRockOther()
     186 * hasRockConsumable()
     187 * hasOreConsumable()
     188 * getSettlement()
     189 * getFloatingIce()
     190 * getMountainPeak()
     191 * getWaterFeature()
     192 * getLowCliff()
     193 * getHighCliff()
     194 * getRockOther()
     195 * getRockConsumable()
     196 * getOreConsumable()
     197 * getAny()
     198 * addSettlement()
     199 * addFloatingIce()
     200 * addMountainPeak()
     201 * addWaterFeature()
     202 * addLowCliff()
     203 * addHighCliff()
     204 * addRockOther()
     205 * addRockConsumable()
     206 * addOreConsumable()