summaryrefslogblamecommitdiffstats
path: root/src/Mobs/Behaviors/BehaviorAggressive.h
blob: 944eee36c86d69f58bf1e68f4b8839c0855927dc (plain) (tree)
1
2
3
4
5
6
7
8
            




                          
                        
 


                                                                        


       
                                                  
 


                                                                             
 
                                                    
                                                                                

        
                                
 

                            
                                           
 

                                    
  
#pragma once


class cBehaviorAggressive;

#include "Behavior.h"
class cBehaviorAttacker;

/** The mob is agressive toward specific mobtypes, or toward the player.
This Behavior has a dependency on BehaviorChaser. */
class cBehaviorAggressive : public cBehavior
{

public:
	void AttachToMonster(cMonster & a_Parent);

	// cBehaviorAggressive(cMonster * a_Parent, bool a_HatesPlayer);
	// TODO agression toward specific players, and specific mobtypes, etc
	// Agression under specific conditions (nighttime, etc)

	// Functions our host Monster should invoke:
	void PreTick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;

private:
	cPawn * FindNewTarget();

	// Our parent
	cMonster * m_Parent;
	cBehaviorAttacker * m_ParentChaser;

	// The mob we want to attack
	cPawn * m_Target;
};