/SDK/Solutions/VB/Exercise1/MyAnimal.vb

# · Visual Basic · 140 lines · 110 code · 18 blank · 12 comment · 2 complexity · 479db0f1de239e4a912fb973afb607b9 MD5 · raw file

  1. <Assembly: OrganismClass("Exercise1.MyAnimal")>
  2. <Assembly: AuthorInformation("Your Name", "someone@microsoft.com")>
  3. < _
  4. Carnivore(False), _
  5. MatureSize(36), _
  6. AnimalSkin(AnimalSkinFamily.Beetle), _
  7. MarkingColor(KnownColor.Red), _
  8. MaximumEnergyPoints(20), _
  9. EatingSpeedPointsAttribute(0), _
  10. AttackDamagePointsAttribute(12), _
  11. DefendDamagePointsAttribute(12), _
  12. MaximumSpeedPointsAttribute(16), _
  13. CamouflagePointsAttribute(10), _
  14. EyesightPointsAttribute(20) _
  15. > _
  16. Public Class MyAnimal : Inherits Animal
  17. Dim targetPlant As PlantState = Nothing ' The current plant we're going after
  18. Protected Overloads Overrides Sub Initialize()
  19. ' TODO: Add Initialization logic here
  20. AddHandler Idle, AddressOf MyAnimal_Idle
  21. AddHandler Load, AddressOf MyAnimal_Load
  22. End Sub
  23. ' First event fired on an organism each turn
  24. Sub MyAnimal_Load(ByVal sender As Object, ByVal e As LoadEventArgs)
  25. Try
  26. If Not (targetPlant Is Nothing) Then
  27. ' See if our target plant still exists (it may have died)
  28. ' LookFor returns null if it isn't found
  29. targetPlant = CType(LookFor(targetPlant), PlantState)
  30. If (targetPlant Is Nothing) Then
  31. ' WriteTrace is the best way to debug your creatures.
  32. WriteTrace("Target plant disappeared.")
  33. End If
  34. End If
  35. Catch exc As Exception
  36. WriteTrace(exc.ToString())
  37. End Try
  38. End Sub
  39. ' Fired after all other events are fired during a turn
  40. Sub MyAnimal_Idle(ByVal sender As Object, ByVal e As IdleEventArgs)
  41. Try
  42. ' Reproduce as often as possible
  43. If (CanReproduce) Then
  44. BeginReproduction(Nothing)
  45. End If
  46. ' If we can eat and we have a target plant, eat
  47. If (CanEat) Then
  48. WriteTrace("Hungry.")
  49. If Not (IsEating) Then
  50. WriteTrace("Not eating: Have target plant?")
  51. If Not (targetPlant Is Nothing) Then
  52. WriteTrace("Yes, Have target plant already.")
  53. If (WithinEatingRange(targetPlant)) Then
  54. WriteTrace("Within Range, Start eating.")
  55. BeginEating(targetPlant)
  56. If (IsMoving) Then
  57. WriteTrace("Stop while eating.")
  58. StopMoving()
  59. End If
  60. Else
  61. If Not (IsMoving) Then
  62. WriteTrace("Move to Target Plant")
  63. BeginMoving(New MovementVector(targetPlant.Position, 2))
  64. End If
  65. End If
  66. Else
  67. WriteTrace("Don't have target plant.")
  68. If Not (ScanForTargetPlant()) Then
  69. If Not (IsMoving) Then
  70. WriteTrace("No plant found, so pick a random point and move there")
  71. Dim RandomX As Integer = OrganismRandom.Next(0, WorldWidth - 1)
  72. Dim RandomY As Integer = OrganismRandom.Next(0, WorldHeight - 1)
  73. BeginMoving(New MovementVector(New Point(RandomX, RandomY), 2))
  74. Else
  75. WriteTrace("Moving and Looking...")
  76. End If
  77. End If
  78. End If
  79. Else
  80. WriteTrace("Eating.")
  81. If (IsMoving) Then
  82. WriteTrace("Stop moving while eating.")
  83. StopMoving()
  84. End If
  85. End If
  86. Else
  87. WriteTrace("Full: do nothing.")
  88. If (IsMoving) Then
  89. StopMoving()
  90. End If
  91. End If
  92. Catch exc As Exception
  93. WriteTrace(exc.ToString())
  94. End Try
  95. End Sub
  96. ' Looks for target plants, and starts moving towards the first one it finds
  97. Function ScanForTargetPlant() As Boolean
  98. Try
  99. Dim foundCreatures As System.Collections.ArrayList = Scan()
  100. If (foundCreatures.Count > 0) Then
  101. Dim orgState As OrganismState
  102. ' Always move after closest plant or defend closest creature if there is one
  103. For Each orgState In foundCreatures
  104. If (TypeOf orgState Is PlantState) Then
  105. targetPlant = CType(orgState, PlantState)
  106. BeginMoving(New MovementVector(orgState.Position, 2))
  107. Return True
  108. End If
  109. Next
  110. End If
  111. Catch exc As Exception
  112. WriteTrace(exc.ToString())
  113. End Try
  114. Return False
  115. End Function
  116. Public Overloads Overrides Sub SerializeAnimal(ByVal m As MemoryStream)
  117. ' TODO: Add Serialization logic here
  118. End Sub
  119. Public Overloads Overrides Sub DeserializeAnimal(ByVal m As MemoryStream)
  120. ' TODO: Add Deserialization logic here
  121. End Sub
  122. End Class