dop2000's Forum Posts

  • Not sure I fully understand your question.. You can add all arrays to a family, add an instance variable Type, set it for each array object. For example one array will have Type="buildings", another Type="resources" etc.

    And use it like this:

    Function ArraySetValue
    parameter t
    parameter i
    parameter v
    	ArraysFamily compare variable Type=t
    		ArraysFamily set at X=i, value=v
    
    
    // Usage: 
    	Call function ArraySetValue (t="buildings", i=23, v=2000)
    	Call function ArraySetValue (t="resources", i=0, v=1.5)
    
    
  • Like I said, if Canvas object doesn't detect the color correctly, it likely means that it's positioned wrong. Touch is obviously less accurate than mouse, so maybe you need to enlarge the image to make aiming easier.

    Also make the canvas object visible (larger in size and fill with color) to see where it has landed after the tap.

  • I need my game to work on Android 4.2, I had to build it with an older version of Construct 2, which uses Crosswalk plugin.

    If anyone has such phone/tablet, could you please test this apk and let me know if it works and if the sound is playing:

    dropbox.com/s/ovxjdgchisw613o/Audioeffectsdemo-armv7-debug.2105550.5.apk

    (it's an "Audio effects" template, not the real game)

  • Yeah, the app launches and then closes after a few seconds. I don't know if it's an emulator issue, the ARM emulator is terribly slow.

    x86 build works in x86 emulator, and ARM build works on my Android 4.4 phone, so I guess it's a good sign. I'll try to find someone with an Android 4.2 device to test.

  • It depends on how many colors you need to detect. If you only need to recognize a few basic colors, simple comparison (as in my previous comment) will do. If you need lots of colors, you can find color tables in google, here are a few examples:

    chir.ag/projects/name-that-color

    cloford.com/resources/colours/500col.htm

    Of course, you can't compare the rgb value directly, you need to find the nearest in the database.

    .

    Color detection should work the same way with mouse and touch. Maybe you are placing the Canvas object wrong on tap? Make it bigger than 1px and after reading r g b values fill the Canvas with some bright color, so that you'll see where it is.

  • Yeah, but each build is still ~28MB. The project size is only 800KB.

  • Asmodean Thanks for the info!

    I managed to build it with Phonegap, had to update targetSDKversion. The apk size is enormous! But I guess it's expected with crosswalk. Tested on x86 emulator with Android 4.2 and audio works, but it crashes on arm emulator...

  • Disable "Go to L_Workspace" action, run the project in debug mode and investigate what's going on in that black screen - layout name, is there any text in the text object, are the text and progress bar visible, their screen coordinates, layer visibility/opacity and so on.

    And of course (you probably know this) you need to preview/debug the project, not layout. Press Ctrl-F4, not Ctrl-F5

  • There is a sub-forum for job offers and team requests, you may find someone there:

    construct.net/en/forum/game-development/job-offers-and-team-requests-28

  • Do you mean color name like "blue" or "yellow"? There is no such expression. You will need to write a bunch of events, something like this:

    Compare variable R>200
    Compare variable G<50
    Compare variable B<50
    			 -> Set colorName="Red"
    
    else
    .....
    
  • Asmodean Oh, I actually haven't tested on 4.2, my phone has version 4.4.4

    Are you saying it won't work on 4.2?

    Do you know if I can build an app with crosswalk plugin? I can export my project from an older version of C2, but I'm getting this error when trying to build with Cordova:

    Phonegap build also fails with some similar error about plugins.

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Yes, you can use 2D array. Set array width to the number of users, height to the number of values you need to store. Note that indices in arrays are 0-based. For example, if you need to set first user name to "John", do:

    Array Set at X=0, Y=0, Value="John"

    To set level 10 score for player number 5:

    Array Set at X=4, Y=10, Value=score

    etc.

    .

    You can save the entire array in Local Storage if needed using Array.AsJSON, and load it back using "Array set from JSON".

  • This is really odd. If this event works in one project, it should work in another. And event 23 definitely shouldn't trigger when right mouse button is pressed.

    Can you share your project? If you don't want to post it here, you can email it me: doperst2006 (at) gmail.com

  • The issue is related to wkwebview and the way it accesses app resources. I can play any sound from internal phone storage or sdcard, but not from the apk.

    I sort of found a solution, it's not great but it works - I can encode sounds in base64 strings and play them using Base64 Audio plugin. I'll have to remove music because the files will be huge, but at least I'll have short sounds in my game.

  • By standalone you mean Desktop build? You can still open Console - just run the preview, press F12 and select Console tab.