This forum is locked and will eventually go offline. If you have feedback to share you can find us in our Discord channel "MythoLogic Interactive" https://discord.gg/nECKnbT7gk
Forum rules
Forum rules
Was/can this game be developed using windows form?
Forum rules
By using the forum you agree to the following rules.
By using the forum you agree to the following rules.
-
jamisco
- Superfighter

- Posts: 67
- Joined: Sun Nov 06, 2016 11:34 pm
- Title: Da God
- SFD Account: Jamisco
- SFD Alias: Jamisco
- Started SFD: either late 2015 or early 2016
- Location: Somewhere in the east of the United states
- Gender:
- Age: 105
Was/can this game be developed using windows form?
I'm just wondering, I know it might sound stupid but I'm just too curious if a game like Super fighters deluxe can be made using windows forms. If not, what in SFD makes it not viable for windows form.
0 x
Is it better to be feared or respected... please, is it too much to ask for both?
- JakSparro98
- Superfighter

- Posts: 530
- Joined: Fri Jul 15, 2016 7:56 pm
- Started SFD: PreAlpha 1.0.5
- Location: Rome, Italy
- Gender:
- Age: 27
Short answer: no
Long answer: (And now i feel like on Stack overflow
Windows form is a part of the .Net libraries, the one that manages GUI (Graphical User Interface) and for this, in simple terms, you cannot do anything beyond creating an interface, but without making it really to work unless you trigger events on the GUI.
As you may know Superfighters Deluxe uses a custom built engine created with Xna by means of the Box2d libreries, it's not only a "mask" like windows forms, but an actual program.
With forms you can create a bridge between the program and the end user, but in a videogame this difference is dealt together the rendering system as one.
1 x
- Gurt
- Lead Programmer

- Posts: 1887
- Joined: Sun Feb 28, 2016 3:22 pm
- Title: Lead programmer
- Started SFD: Made it!
- Location: Sweden
- Gender:
- Age: 36
Yeah. We're only using windows forms for the map editor and through some creative process we render the graphics backbuffer to a picturebox on the form. We're also using other third-party libraries Lidgren.Network, NAudio and a Box2D .NET/XNA port.JakSparro98 wrote: ↑Sat Jun 17, 2017 2:49 pmShort answer: no
Long answer: (And now i feel like on Stack overflow)
Windows form is a part of the .Net libraries, the one that manages GUI (Graphical User Interface) and for this, in simple terms, you cannot do anything beyond creating an interface, but without making it really to work unless you trigger events on the GUI.
As you may know Superfighters Deluxe uses a custom built engine created with Xna by means of the Box2d libreries, it's not only a "mask" like windows forms, but an actual program.
With forms you can create a bridge between the program and the end user, but in a videogame this difference is dealt together the rendering system as one.
1 x
Gurt