Jump to content

tjheldna

Members
  • Posts

    938
  • Joined

  • Last visited

Everything posted by tjheldna

  1. You need to open up your project in visual studio (even if its a lua project) and compile under debug and release. You should be good to go after that.
  2. That's easy, thanks Daimour! I'll try it soon.
  3. Hi All, I've been a big C++ guy from the start, but I want to learn how to use lua. Most I've found pretty straight forward however I'm trying to implement classes and inheritance and have hit a wall with inheritance. What I'm trying to do is have an InventoryItem class and a GunItem which inherits. Maybe I'm a little off today, don't know, I just can't seem to understand from examples from the net and I don't know if they work in LE. Does anyone know of a simple tutorial for this? or have an example handy? Cheers!!!!
  4. Hi Josh Sorry for double posting however I can't seem to add to the previous report http://www.leadwerks...ight-map-crash/ Here is a project where the light mapping crashes with an exception using the default light map settings on my computer.... Cheers
  5. Load a project with your level level open Change projects note that the level is cleared however it is still the active level (path still showing in the title bar) If you save the level now it overwrites the level from the previous project with a blank level or whatever you created (Very nasty when you go back to the project and find your level is gone). Currently you can manually load a level, however it really looks like you are editing a level from your newly selected project when you are not. Hope I explained the issue properly. Cheers
  6. Yep, I did mine without the prototype and still did not work I'm 90% sure it's an OSX bug.
  7. Makes a big difference, It's broken. Same function I created works in Windows, but not in OSX. I forgot to do a bug report for this.
  8. It wont work with LE2 as a few function names have changed, nothing too big though if you want to give it a try. I have LE 2 code for this however it hasn't received the latest updates. I can do this, but I'll need time.
  9. I'd have no collision on the steps and have an invisible ramp model over them.
  10. Hi All, I created a C++ GUI system for LE2 and have been meaning to share it for quit a while. I've now adapted most of the main elements for LE3 and is cross platform...so here it is. The widgets only use the base drawText, drawRect etc so this works with LE with nothing additional to link etc. Installation: Create a new LE3 project an replace the source with the archive files. Open up VS and include the files into the project. Overwrite App.cpp Add the sound and image files. Please Note: This is a work in progress I am forever optimising it. I would greatly appreciate it if someone does make a nice optimisation/create a new widget to share and I'll gladly add it in. I won't be translating to LUA, however if someone want's to go ahead. If someone uses this in their game, a credit mention would be nice =); Before you say it's not working! Check the paths of the files and code and in your project and make sure they match. v0.2 - Widgets Added - Border, Button, Group, Image, Label, Quad, SingleImageButton, Widget, Window. v0.2 (5th April) - CheckBox and images. - Cleaned up the demo window a little. - With the latest build of LE3 Left mouse click should be working although not tested as of yet. v0.3 (8th April) - Added Radio Group - Added Radio Button Widget - Added Radio Button Images - Modified Check box Image - Cleaning up of classes and formatting - Added Radio button Example v0.4- current (22nd September) - Added LineTextBox with switch for new line. Features include optional centre alignment new line switch. See example for usage. - Changed function some names in base Widget class. Instead of SetWidgetAlpha(num) it's now SetAlpha(num) SetPosX etc. (NOTE most have been done but not all yet) - Fixed a bug in the ImageBox class. - Added LineTextBox to example - Removed modifierFlags from widget class. They are now merged with SetWidgetFlags(). I did this because I found it confusing by somtimes passing setWidgetFlags into setWidgetModifierFlags and visa versa. It saves on a long variable declared for each widget. - Instead of each button radio button etc loading their own click sound, a sound is declared and released in the interface manager so widgets just need to call TheInterface->clickSound->Play(); - Other optimisations that I can't remember as I did them a while ago. v0.5 - current (23nd September) - Added Progress Bar. - Added Progress Bar to example. - Fixed issues for values not applying to children - More renaming Bugs - Color is spelt colour (The Australian way). I'll change it to color. Roadmap - Image button (separate image for 3 states). These widgets have been coded already, they just need LE3 testing window zorder, window dragging. - Remove need to load textures for standard widgets. Instead use 1 main texture palette. - Add constructors for all widgets that use fonts and sounds to be able to pass a font and sound as a parameter. I won't need to include "Interface.h" in those objects and makes them more customisable. Download Project v0.5 (22nd September) Hope to cut down some of your development time so hope you enjoy!
  11. If you select a level from the previously opened levels list and have a current world open (unsaved) you should be asked to save your current level. At the moment you loose the changes. Cheers!
  12. tjheldna

    sky box

    Easy, thanks shadmar.
  13. Hi Aggror, This may help you it iterates over the entities when the level is loaded. From there I can wrap the entities in classes and/or store them in a list... void StoreWorldPointsCallBack(Entity* entity, Object* extra) { std::string text = entity->GetKeyValue("name"); if(text.compare("playerSpawn") == 0) { TheGame->AddPlayerSpawnPoint(entity); } } //Load the map somewhere in your code if(Map::Load((const char*)(path), StoreWorldPointsCallBack)) { }
  14. tjheldna

    2D on mobile

    I've been used a bit of cocos 2dx with Levelhelper and Spritehelper. If you want to go 2d I highly recommend these. Levelhelper and Spritehelper are OSX only, but they both compile for use on iOS and Android.
  15. This one is nothing big but can be a little annoying when you are getting a texture path for code. When a new texture is imported for the first time it is displayed in lower case in the asset window. If you close down the editor and reload the editor only then the correct case is displayed.
  16. Hi Aggror, I have this working if the hook is added to the entity itself... I had no need to define it in .h void UpdateMyPhysicsHook(Entity* entity) { blah blah } entity->AddHook(Entity::UpdatePhysicsHook, UpdateMyPhysicsHook);
  17. Hi Josh, Getting a crash on PhysicsSetPosition when it hits the ground in c++. I'm not sure if I am creating the object properly in code or it's a bug. - C++ - The Model is loaded dynamically in the game. - Add a shape to the model - Try to apply some velocity to it. - When PhysicsSetPosition is called I get a crash. - Variable projectileDirection can be any value. model = Model::Load("Models/Inventory/Projectile/Projectile.mdl"); Shape* shape = Shape::Box(); entity->SetShape(shape); shape->Release(); entity->SetCollisionType(Collision::Prop); entity->SetMass(2); Game loop entity->PhysicsSetPosition(projectileDirection.x, projectileDirection.y, projectileDirection.z, 2);
  18. Hi Josh, Really could use this function to remove an entities key by name. I'm using key values to read in c++ once I have done this I have no need for the entities key anymore. I don't want to use entity->ClearKeys() as I don't want to hose all of them. entity->RemoveKey("name"); Cheers!
  19. Chuck this in your main loop and hit the 1 key, same could be done for navmesh I'm guessing if(window->KeyHit(Key::D1)) { if(camera->GetDebugPhysicsMode() == true) camera->SetDebugPhysicsMode(false); else camera->SetDebugPhysicsMode(true); }
  20. Hi YouGroove, I am in the process of migrating my inventory code and yes it appears to work so far. The way I line it up is have a dummy node linked to the players hand and a dummy node on the weapon which is used to set the position and transform. That way I can visually see how things line up. itemMountNode->SetParent(mountNode); itemMountNode->SetMatrix(mountNode->GetMatrix()); The weapons are sorted in a vector and iterated upon. As I'm switching weapons they are shown/hidden as necessary and always have a pointer to the current weapon. I'm writing this quickly before work, hope this helps.
  21. Hmm I'm spawning in code so I'm not sure. I'm just setting the collision type to Collision::Character and I get a crash when the game is unloaded on the character--- delete world;
  22. Something similar happens in c++ when deleting the world object in the project. A similar error appears and the game craps out when trying to delete the newton physics object of the player. I didn't post this before as I wasn't sure if it was something in my code, but I believe it's not.
  23. -Make sure the Folder in the Applications folder is named Leadwerks -Do a project clean Think that sould do it!
×
×
  • Create New...