Glad to see you joining us in the forums!
I'm trying to get my turret to track me, like it is watching me until I'm close enough for it to fire.
...
I see atan seems to be the way to figure out the right angle/radian. Is there a built in function or do I have to write one?
You may be able use existing rules like this on the turret sprite:
1) Re-configure the sprite states so that the first state is Right (not Up), and the subsequent states step counter-clockwise.
2) Use the PushTowardCategory rule to push the turret toward the player (if you don't include a rule for actually moving the sprite, it will stay put)
3) Use GetPolarStateByVector to switch the sprite into the state appropriate to the direction it was pushed. StateCount should be 8, and "Output to" should be set to "state", which will set the sprite's current state to the calculated state number.
(I think you'll also have to change some of the other rules that determine which way the shot is fired because they expect clockwise states.
If I have to write a rule/function, should I do export as something like CustomTurret.cs with my current rule, then replace it function using atan. My math isn't great so go easy on me!
You don't have to export/convert anything, but if you have some rules that you want to convert to code, you can use the "Convert to Function" command in the "Sprite Definition" menu. That will help you set up a file within the project whose functions the rule editor will see as rules. But really all you need is to create any .cs file in the project that implements functions on class SpriteBase or class GeneralRules (or your specific sprite), and provides a description like the existing functions in SpriteBase.cs do. (Using the "partial" keywoard, you can add functions to any class in a separate file.) Then you'll see your functions show up in the list of available rule functions while designing your sprite. SGDK2 won't even know the difference.
You should be aware of a couple things related to converting rules to code:
1. You can't reverse the process (you can't convert the code back into rules automatically. You'd have to re-create the rules.)
2. The generated rule functions will be applied to the specific sprite from which they were created. You may be able to use the same rules on other sprites by changing the generated code to refer to partial class "SpriteBase" instead of "Turret", for example. But by default the generated code is specific to the sprite type on which it was based.
Also is c# Express the way to go as far as editing .cs files? I see you can open projects in Express, can you compile them as well? Any special setup required?
You can usually edit .cs code within the SGDK2 IDE, but it's not quite as nice as the full-blown C# Express IDE. If you use the C# Express IDE, be aware that editing code in the C# Express IDE does not update the project. You'll have to copy/paste the updated code into the SGDK2 IDE because all project data is embedded in the SGDK2 file. The external files used by the C# Express project are generated from the SGDK2 file for your own use in debugging or whatever else you want to do, but are no longer integrated with the project.