|
A good understanding of program design, database and network management, threading/asynchronous code and that's about it.
If you're confident writing medium sized systems from scratch that can handle many users at once across a network connection then you're good to go really. The main hurdle is not some mystical subset of complex programming but rather your competence at designing larger scale systems to work together. How will logic flow through your program and how will players be effected by your decisions.
That being said, you didnt mention any programming languages... while you could theoretically write an entire conquer server in PHP, it would be a hideous mess to try to manage. I'd strongly recommend a good understanding of whatever language you want to use and to choose a language that fits the task. C#, C++, Java are all very common and good example languages to use. Go, D# and a few others have been used in the community with good success as well. You're mostly describing web and front end scripting languages though which could cause a bit of a learning hurdle for you but nothing crazy.
The thing that will probably trip you up is needing to understand the conquer 'protocol' at a relatively deep level. How does the client expect the server to act, how do all the client files link together, how does each game system work (from a programmers standpoint), etc.
|