XCode and graphics

Whether you're a newbie or an experienced programmer, any questions, help, or just talk of any language will be welcomed here.

Moderator: Coders of Rage

Post Reply
emosewA
Chaos Rift Newbie
Chaos Rift Newbie
Posts: 5
Joined: Thu Sep 16, 2010 10:17 pm

XCode and graphics

Post by emosewA »

Ok guys, just got my new Mac Mini saturday and i thought i would break it in with some C++. Unfortunatly, I have no idea how to do anything graphical in XCode. What should I do?
User avatar
avansc
Respected Programmer
Respected Programmer
Posts: 1708
Joined: Sun Nov 02, 2008 6:29 pm

Re: XCode and graphics

Post by avansc »

What do you mean "graphical". Do you mean GUI, or OpenGL?
http://developer.apple.com/library/mac/ ... ample+Code // sample code
http://developer.apple.com/library/mac/navigation/ // general apple developer page for mac development.
Some person, "I have a black belt in karate"
Dad, "Yea well I have a fan belt in street fighting"
emosewA
Chaos Rift Newbie
Chaos Rift Newbie
Posts: 5
Joined: Thu Sep 16, 2010 10:17 pm

Re: XCode and graphics

Post by emosewA »

Oh sorry, I posted that while I was doing something else. I meant with OpenGL
User avatar
avansc
Respected Programmer
Respected Programmer
Posts: 1708
Joined: Sun Nov 02, 2008 6:29 pm

Re: XCode and graphics

Post by avansc »

OpenGL is by FAR the easiest to get working on OSX, since its part of the core OS. you have to include OpenGL.framwork, and glut for context creation, you can also use X for that, but i dont recommend it, SDL will work as well, and ofcourse you can go and use cocoa to get the context, but that involves objective C.

There are lots of examples on OpenGL on the apple developer site, just enter opengl in the sample code section.
Some person, "I have a black belt in karate"
Dad, "Yea well I have a fan belt in street fighting"
emosewA
Chaos Rift Newbie
Chaos Rift Newbie
Posts: 5
Joined: Thu Sep 16, 2010 10:17 pm

Re: XCode and graphics

Post by emosewA »

Well see, I was following a tutorial vid but the framework just isnt there. I cant find it in the library. Sorry if this is nooby, im not that great with Macs yet
User avatar
avansc
Respected Programmer
Respected Programmer
Posts: 1708
Joined: Sun Nov 02, 2008 6:29 pm

Re: XCode and graphics

Post by avansc »

emosewA wrote:Well see, I was following a tutorial vid but the framework just isnt there. I cant find it in the library. Sorry if this is nooby, im not that great with Macs yet
what framework?
Some person, "I have a black belt in karate"
Dad, "Yea well I have a fan belt in street fighting"
emosewA
Chaos Rift Newbie
Chaos Rift Newbie
Posts: 5
Joined: Thu Sep 16, 2010 10:17 pm

Re: XCode and graphics

Post by emosewA »

OpenGL. in the library, i only have the Adobe AIR framework
User avatar
Trask
ES Beta Backer
ES Beta Backer
Posts: 738
Joined: Wed Oct 29, 2008 8:17 pm
Current Project: Building a 2D Engine
Favorite Gaming Platforms: Sega Genesis and Xbox 360
Programming Language of Choice: C/C++
Location: Pittsburgh, PA
Contact:

Re: XCode and graphics

Post by Trask »

MarauderIIC wrote:You know those people that are like "CHECK IT OUT I just made Linux run on this piece of celery [or other random object]!!"? Yeah, that's Falco, but with ES.
Dear god, they actually ported ES to a piece of celery!
Martin Golding wrote: "Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live."
User avatar
avansc
Respected Programmer
Respected Programmer
Posts: 1708
Joined: Sun Nov 02, 2008 6:29 pm

Re: XCode and graphics

Post by avansc »

You need to understand where frameworks are stored.
The apple developer site has a guide on frameworks.

These should be the default frameworks that come with a stock install of osx(SL in my case)
and the directory where all this is located is /System/Library/Frameworks

Code: Select all

AGL.framework				InstallerPlugins.framework
Accelerate.framework			InstantMessage.framework
AddressBook.framework			JavaEmbedding.framework
AppKit.framework			JavaFrameEmbedding.framework
AppKitScripting.framework		JavaScriptCore.framework
AppleScriptKit.framework		JavaVM.framework
AppleScriptObjC.framework		Kerberos.framework
AppleShareClientCore.framework		Kernel.framework
AppleTalk.framework			LDAP.framework
ApplicationServices.framework		LatentSemanticMapping.framework
AudioToolbox.framework			Message.framework
AudioUnit.framework			NetFS.framework
Automator.framework			OSAKit.framework
CalendarStore.framework			OpenAL.framework
Carbon.framework			OpenCL.framework
Cocoa.framework				OpenDirectory.framework
Collaboration.framework			OpenGL.framework
CoreAudio.framework			PCSC.framework
CoreAudioKit.framework			PreferencePanes.framework
CoreData.framework			PubSub.framework
CoreFoundation.framework		Python.framework
CoreLocation.framework			QTKit.framework
CoreMIDI.framework			Quartz.framework
CoreMIDIServer.framework		QuartzCore.framework
CoreServices.framework			QuickLook.framework
CoreVideo.framework			QuickTime.framework
CoreWLAN.framework			Ruby.framework
DVComponentGlue.framework		RubyCocoa.framework
DVDPlayback.framework			ScreenSaver.framework
DirectoryService.framework		Scripting.framework
DiscRecording.framework			ScriptingBridge.framework
DiscRecordingUI.framework		Security.framework
DiskArbitration.framework		SecurityFoundation.framework
DrawSprocket.framework			SecurityInterface.framework
ExceptionHandling.framework		ServerNotification.framework
FWAUserLib.framework			ServiceManagement.framework
ForceFeedback.framework			SyncServices.framework
Foundation.framework			System.framework
GLUT.framework				SystemConfiguration.framework
ICADevices.framework			TWAIN.framework
IMCore.framework			Tcl.framework
IOBluetooth.framework			Tk.framework
IOBluetoothUI.framework			VideoDecodeAcceleration.framework
IOKit.framework				WebKit.framework
IOSurface.framework			XgridFoundation.framework
ImageCaptureCore.framework		vecLib.framework
InputMethodKit.framework
If you right click your project, or a group in your project, you can add a framework, a list will automatically be populated with this info, alternativly you can choose other, and explicitly choose any framework/lib located anywhere.
Some person, "I have a black belt in karate"
Dad, "Yea well I have a fan belt in street fighting"
emosewA
Chaos Rift Newbie
Chaos Rift Newbie
Posts: 5
Joined: Thu Sep 16, 2010 10:17 pm

Re: XCode and graphics

Post by emosewA »

yes, that works great, thanks!
Post Reply