You can’t put two draw() function in your sketch, only one exist.
Maybe start with a simpler project to get the basic of processing and java programming langage. I can advise you to visit that page https://processing.org/tutorials/ to get started.
When you get more familiar about the structure of a processing sketch and the different mechanism use in coding (loops, condition, data structure…) then you will be able to put everything together to get what you want to achieve.
To come back to your project, I think you should draw a graph to show how all your conditions behave together to give a result because right now you try to run two sets of condition in parallel and there is no real logic in it. What happen if anger = 20 AND sadness = 53? You need to have a logic structure that handle all the possible combinations.