14. Construction page ()
Now we start to parse the real building pages. There are many functions used in them, but they are not difficult. Let’s take a look together.
At the beginning, check the used space of the planet and update it, and use the function CheckPlanetUsedFields. This function has been mentioned earlier and is not difficult to implement.
Next is the structure we focused on before, which is to judge whether to input; so we will first jump to the back of this code, but there are several functions here that deal with some building queues.
1. SetNextQueueElementOnTop: We have talked about processing the next building in the queue
2. ShowBuildingQueue: Construct the current queue. Although there is a lot of code, it is simple. If you are interested, you can track it yourself.
3. BuildingSavePlanetRecord: Save the building queue constructed by the previous code to the database
4. BuildingSaveUserRecord: Save resource points (transaction officer) to the database
Then to construct the building page, I will make a text description, and most of the UI constructions are not written:
1.
2. Calculate the maximum space of the current planet
3. Determine whether the current building can be built
4. If possible, you need to obtain construction time and resources
5. If the construction is a research institute, it is necessary to determine whether it is being researched.
Finally, you should construct the html page with all the contents prepared above. You should understand this by looking at it. Next, we will explain some of the codes we skipped, and the structure is very clear:
1. Get the parameters entered by the user (actually clicked)
2.
3. There is also a judgment on the legality of the link. If it is illegal, the user will be punished (hehe)
4. Then, according to the user's operations, enter different queue functions
5. CancelBuildingFromQueue: Cancel the building under construction
6. RemoveBuildingFromQueue: Remove a building from the queue
7. AddBuildingToQueue(true): Insert a building in the queue
8. AddBuildingToQueue(false): Insert a cancel building in the queue
9. ResetThisFuckingCheater: Punish the user function, please see it yourself
You can see the specific functions of the above functions yourself, they are all operations on queues, which are similar.